summaryrefslogtreecommitdiff
path: root/secure/Makefile
diff options
context:
space:
mode:
authorBryan Drewery <bdrewery@FreeBSD.org>2015-10-15 19:13:53 +0000
committerBryan Drewery <bdrewery@FreeBSD.org>2015-10-15 19:13:53 +0000
commit60e03c60c00fca22c2e86d90c041d6835b86f76f (patch)
tree717ed14cdc7bc4d7b5c512fc4d2540e281cbd1d8 /secure/Makefile
parent8748f58cdeea8fa71bb11de47eadc217383f0091 (diff)
downloadsrc-test2-60e03c60c00fca22c2e86d90c041d6835b86f76f.tar.gz
src-test2-60e03c60c00fca22c2e86d90c041d6835b86f76f.zip
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
Notes
Notes: svn path=/head/; revision=289378
Diffstat (limited to 'secure/Makefile')
-rw-r--r--secure/Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/secure/Makefile b/secure/Makefile
index 4e2cc4f72523..12778538cf2c 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; \