diff options
author | bdrewery <bdrewery@FreeBSD.org> | 2015-10-15 19:13:53 +0000 |
---|---|---|
committer | bdrewery <bdrewery@FreeBSD.org> | 2015-10-15 19:13:53 +0000 |
commit | 215c57e962d3627a34d57aeba530aacf17613c9a (patch) | |
tree | 717ed14cdc7bc4d7b5c512fc4d2540e281cbd1d8 /secure | |
parent | 3b70fdfb1d5aad9b451d851ad230e613004570f9 (diff) | |
download | FreeBSD-src-215c57e962d3627a34d57aeba530aacf17613c9a.zip FreeBSD-src-215c57e962d3627a34d57aeba530aacf17613c9a.tar.gz |
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
Diffstat (limited to 'secure')
-rw-r--r-- | secure/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/secure/Makefile b/secure/Makefile index 4e2cc4f..1277853 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; \ |