f134f3dc38
Replace defined(UNPRIVED) tests with ${MKUNPRIVED} != "no" Add MKUPDATE; if not no has the same semantics as if UPDATE was defined. Replace defined(UPDATE) tests with ${MKUPDATE} != "no" Improve documentation for these and other make flags.
52 lines
1.2 KiB
Makefile
52 lines
1.2 KiB
Makefile
# $NetBSD: bsd.files.mk,v 1.21 2003/07/18 08:26:06 lukem Exp $
|
|
|
|
.include <bsd.init.mk>
|
|
|
|
.if !target(__fileinstall)
|
|
##### Basic targets
|
|
.PHONY: filesinstall
|
|
realinstall: filesinstall
|
|
|
|
##### Default values
|
|
FILESDIR?= ${BINDIR}
|
|
FILESOWN?= ${BINOWN}
|
|
FILESGRP?= ${BINGRP}
|
|
FILESMODE?= ${NONBINMODE}
|
|
|
|
##### Install rules
|
|
filesinstall:: # ensure existence
|
|
|
|
__fileinstall: .USE
|
|
${INSTALL_FILE} \
|
|
-o ${FILESOWN_${.ALLSRC:T}:U${FILESOWN}} \
|
|
-g ${FILESGRP_${.ALLSRC:T}:U${FILESGRP}} \
|
|
-m ${FILESMODE_${.ALLSRC:T}:U${FILESMODE}} \
|
|
${SYSPKGTAG} ${.ALLSRC} ${.TARGET}
|
|
|
|
.endif # !target(__fileinstall)
|
|
|
|
.for F in ${FILES:O:u}
|
|
_FDIR:= ${FILESDIR_${F}:U${FILESDIR}} # dir override
|
|
_FNAME:= ${FILESNAME_${F}:U${FILESNAME:U${F:T}}} # name override
|
|
_F:= ${DESTDIR}${_FDIR}/${_FNAME} # installed path
|
|
|
|
.if ${MKUPDATE} == "no"
|
|
${_F}! ${F} __fileinstall # install rule
|
|
.if !defined(BUILD) && !make(all) && !make(${F})
|
|
${_F}! .MADE # no build at install
|
|
.endif
|
|
.else
|
|
${_F}: ${F} __fileinstall # install rule
|
|
.if !defined(BUILD) && !make(all) && !make(${F})
|
|
${_F}: .MADE # no build at install
|
|
.endif
|
|
.endif
|
|
|
|
filesinstall:: ${_F}
|
|
.PRECIOUS: ${_F} # keep if install fails
|
|
.endfor
|
|
|
|
.undef _FDIR
|
|
.undef _FNAME
|
|
.undef _F
|