NetBSD/share/mk/bsd.nls.mk

73 lines
1.5 KiB
Makefile
Raw Normal View History

# $NetBSD: bsd.nls.mk,v 1.31 2001/11/02 05:21:51 tv Exp $
.include <bsd.init.mk>
##### Basic targets
1997-05-07 00:54:31 +04:00
.PHONY: cleannls nlsinstall
cleandir: cleannls
realinstall: nlsinstall
##### Default values
GENCAT?= gencat
NLSNAME?= ${PROG:Ulib${LIB}}
NLS?=
##### Build rules
.if ${MKNLS} != "no"
NLSALL= ${NLS:.msg=.cat}
realall: ${NLSALL}
.NOPATH: ${NLSALL}
.SUFFIXES: .cat .msg
.msg.cat:
@rm -f ${.TARGET}
${GENCAT} ${.TARGET} ${.IMPSRC}
.endif # ${MKNLS} != "no"
##### Install rules
nlsinstall:: # ensure existence
.if ${MKNLS} != "no"
nlsinstall:: ${DESTDIR}${NLSDIR}
.PRECIOUS: ${DESTDIR}${NLSDIR}
.PHONY: ${DESTDIR}${NLSDIR}
2000-06-06 13:53:29 +04:00
${DESTDIR}${NLSDIR}:
@if [ ! -d ${.TARGET} ] || [ -h ${.TARGET} ] ; then \
echo creating ${.TARGET}; \
/bin/rm -rf ${.TARGET}; \
${INSTALL} ${INSTPRIV} -d -o ${NLSOWN} -g ${NLSGRP} -m 755 \
${.TARGET}; \
fi
__nlsinstall: .USE
${INSTALL} ${INSTPRIV} -d -o ${NLSOWN} -g ${NLSGRP} ${.TARGET:H}
2000-06-06 13:53:29 +04:00
${INSTALL} ${RENAME} ${PRESERVE} ${COPY} ${INSTPRIV} -o ${NLSOWN} \
-g ${NLSGRP} -m ${NLSMODE} ${.ALLSRC} ${.TARGET}
.for F in ${NLSALL:O:u}
_F:= ${DESTDIR}${NLSDIR}/${F:T:R}/${NLSNAME}.cat # installed path
${_F}: ${F} __nlsinstall # install rule
nlsinstall:: ${_F}
.PRECIOUS: ${_F} # keep if install fails
.PHONY: ${UPDATE:U${_F}} # noclobber install
.if !defined(BUILD) && !make(all) && !make(${F})
${_F}: .MADE # no build at install
1997-04-20 02:24:30 +04:00
.endif
.endfor
.undef _F
.endif # ${MKNLS} != "no"
##### Clean rules
1997-05-07 20:45:40 +04:00
cleannls:
.if !empty(NLS)
rm -f ${NLSALL}
1997-04-20 02:24:30 +04:00
.endif