]> xenbits.xensource.com Git - people/julieng/freebsd.git/commitdiff
Mark sub-make targets as .MAKE and .PHONY to handle -n and always-build properly.
authorbdrewery <bdrewery@FreeBSD.org>
Thu, 15 Oct 2015 19:13:53 +0000 (19:13 +0000)
committerbdrewery <bdrewery@FreeBSD.org>
Thu, 15 Oct 2015 19:13:53 +0000 (19:13 +0000)
MFC after: 1 week
Sponsored by: EMC / Isilon Storage Division

secure/Makefile

index 4e2cc4f72523a126d6cc184a6470dbb956afb9ad..12778538cf2cbf80416f67c458bc5f45c9bd5c96 100644 (file)
@@ -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; \