From 60e03c60c00fca22c2e86d90c041d6835b86f76f Mon Sep 17 00:00:00 2001 From: Bryan Drewery Date: Thu, 15 Oct 2015 19:13:53 +0000 Subject: [PATCH] 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 --- secure/Makefile | 4 ++-- 1 file 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; \