summaryrefslogtreecommitdiffstats
path: root/share/mk/bsd.incs.mk
diff options
context:
space:
mode:
authorru <ru@FreeBSD.org>2002-05-15 16:19:54 +0000
committerru <ru@FreeBSD.org>2002-05-15 16:19:54 +0000
commitf5faaf6181d75212545b164cf70a61760c9edb2b (patch)
tree8c9c5bf6688094025cac7301793b5c86d4489a73 /share/mk/bsd.incs.mk
parent569719713eadbdada0fa74d6fd8992042c7a317b (diff)
downloadFreeBSD-src-f5faaf6181d75212545b164cf70a61760c9edb2b.zip
FreeBSD-src-f5faaf6181d75212545b164cf70a61760c9edb2b.tar.gz
Rename `includes' to `buildincludes'.
Rename `incsinstall' to `installincludes'. Make `includes' a -j safe shortcut for `buildincludes' + `installincludes'. `buildincludes' and `installincludes' are SUBDIR friendly, if run directly.
Diffstat (limited to 'share/mk/bsd.incs.mk')
-rw-r--r--share/mk/bsd.incs.mk22
1 files changed, 10 insertions, 12 deletions
diff --git a/share/mk/bsd.incs.mk b/share/mk/bsd.incs.mk
index c619590..57a2886 100644
--- a/share/mk/bsd.incs.mk
+++ b/share/mk/bsd.incs.mk
@@ -6,23 +6,18 @@
INCSGROUPS?= INCS
-.if !target(includes)
+.if !target(buildincludes)
.for group in ${INCSGROUPS}
-includes: ${${group}}
+buildincludes: ${${group}}
.endfor
.endif
-_incsinstall: .USE
-
-.if !target(incsinstall)
-incsinstall: _incsinstall
-.endif
+all: buildincludes
+.if !target(installincludes)
.for group in ${INCSGROUPS}
.if defined(${group}) && !empty(${group})
-all: ${${group}}
-
${group}OWN?= ${BINOWN}
${group}GRP?= ${BINGRP}
${group}MODE?= ${NOBINMODE}
@@ -42,7 +37,7 @@ ${group}NAME_${header:T}?= ${${group}NAME}
.else
${group}NAME_${header:T}?= ${header:T}
.endif
-_incsinstall: _${group}INS_${header:T}
+installincludes: _${group}INS_${header:T}
_${group}INS_${header:T}: ${header}
${INSTALL} -C -o ${${group}OWN_${.ALLSRC:T}} \
-g ${${group}GRP_${.ALLSRC:T}} -m ${${group}MODE_${.ALLSRC:T}} \
@@ -53,7 +48,7 @@ _${group}INCS+= ${header}
.endif
.endfor
.if !empty(_${group}INCS)
-_incsinstall: _${group}INS
+installincludes: _${group}INS
_${group}INS: ${_${group}INCS}
.if defined(${group}NAME)
${INSTALL} -C -o ${${group}OWN} -g ${${group}GRP} -m ${${group}MODE} \
@@ -68,7 +63,7 @@ _${group}INS: ${_${group}INCS}
.endfor
.if defined(INCSLINKS) && !empty(INCSLINKS)
-_incsinstall:
+installincludes:
@set ${INCSLINKS}; \
while test $$# -ge 2; do \
l=$$1; \
@@ -79,3 +74,6 @@ _incsinstall:
ln -fs $$l $$t; \
done; true
.endif
+.endif !target(installincludes)
+
+realinstall: installincludes
OpenPOWER on IntegriCloud