summaryrefslogtreecommitdiffstats
path: root/secure
diff options
context:
space:
mode:
authorbdrewery <bdrewery@FreeBSD.org>2015-10-15 19:13:53 +0000
committerbdrewery <bdrewery@FreeBSD.org>2015-10-15 19:13:53 +0000
commit215c57e962d3627a34d57aeba530aacf17613c9a (patch)
tree717ed14cdc7bc4d7b5c512fc4d2540e281cbd1d8 /secure
parent3b70fdfb1d5aad9b451d851ad230e613004570f9 (diff)
downloadFreeBSD-src-215c57e962d3627a34d57aeba530aacf17613c9a.zip
FreeBSD-src-215c57e962d3627a34d57aeba530aacf17613c9a.tar.gz
Mark sub-make targets as .MAKE and .PHONY to handle -n and always-build properly.
MFC after: 1 week Sponsored by: EMC / Isilon Storage Division
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 4e2cc4f..1277853 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} MK_CRYPT=no cleandir; \
OpenPOWER on IntegriCloud