summaryrefslogtreecommitdiffstats
path: root/secure
diff options
context:
space:
mode:
authorbdrewery <bdrewery@FreeBSD.org>2015-12-04 17:56:10 +0000
committerbdrewery <bdrewery@FreeBSD.org>2015-12-04 17:56:10 +0000
commit28f8b6600d63dc821d34ef675574f82e50e4162a (patch)
treeccf2891f94a39a48af12a95a7021af32145ddfcd /secure
parent1c5b4d7b40c59626e2cc40bf9ef5f7c88a5aae8d (diff)
downloadFreeBSD-src-28f8b6600d63dc821d34ef675574f82e50e4162a.zip
FreeBSD-src-28f8b6600d63dc821d34ef675574f82e50e4162a.tar.gz
MFC r289360,r289361,r289378,r289430,r289605,r289676:
r289360: Add temporary workaround for .MAKE being applied to _worldtmp, since r251750. r289361: Consider top-level targets to be .PHONY as bmake won't build them otherwise if a file with the same name is found in the directory. r289378: Mark sub-make targets as .MAKE and .PHONY to handle -n and always-build properly. r289430: Remove .MAKE from targets that do more than just run sub-makes, such as calling rm or mtree. r289605: Add missing .PHONY for parallel subdir target. r289676: Add some missing '+', .MAKE, and .PHONY modifiers.
Diffstat (limited to 'secure')
-rw-r--r--secure/Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/secure/Makefile b/secure/Makefile
index 21b05f2..db5a32e 100644
--- a/secure/Makefile
+++ b/secure/Makefile
@@ -17,7 +17,7 @@ SPROGS+=usr.sbin/sendmail
.endif
# This target is used to rebuild these programs with crypto.
-secure:
+secure: .MAKE .PHONY
.for entry in ${SPROGS}
cd ${.CURDIR}/../${entry}; \
${MAKE} cleandir; \
@@ -28,7 +28,7 @@ secure:
.endfor
# This target is used to rebuild these programs without crypto.
-insecure:
+insecure: .MAKE .PHONY
.for entry in ${SPROGS}
cd ${.CURDIR}/../${entry}; \
${MAKE} -DWITHOUT_CRYPT cleandir; \
OpenPOWER on IntegriCloud