Skip site navigation (1)Skip section navigation (2)
Date:      Thu, 15 Oct 2015 19:13:53 +0000 (UTC)
From:      Bryan Drewery <bdrewery@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org
Subject:   svn commit: r289378 - head/secure
Message-ID:  <201510151913.t9FJDrPE005043@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
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; \



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201510151913.t9FJDrPE005043>