svn commit: r289378 - head/secure

Bryan Drewery bdrewery at FreeBSD.org
Thu Oct 15 19:13:54 UTC 2015


Author: bdrewery
Date: Thu Oct 15 19:13:53 2015
New Revision: 289378
URL: https://svnweb.freebsd.org/changeset/base/289378

Log:
  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

Modified:
  head/secure/Makefile

Modified: head/secure/Makefile
==============================================================================
--- head/secure/Makefile	Thu Oct 15 19:07:38 2015	(r289377)
+++ head/secure/Makefile	Thu Oct 15 19:13:53 2015	(r289378)
@@ -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; \


More information about the svn-src-all mailing list