[Midnightbsd-cvs] src [10690] trunk/secure/Makefile: add a wait

laffer1 at midnightbsd.org laffer1 at midnightbsd.org
Sat Jun 9 16:06:22 EDT 2018


Revision: 10690
          http://svnweb.midnightbsd.org/src/?rev=10690
Author:   laffer1
Date:     2018-06-09 16:06:21 -0400 (Sat, 09 Jun 2018)
Log Message:
-----------
 add a wait

Modified Paths:
--------------
    trunk/secure/Makefile

Modified: trunk/secure/Makefile
===================================================================
--- trunk/secure/Makefile	2018-06-09 20:05:53 UTC (rev 10689)
+++ trunk/secure/Makefile	2018-06-09 20:06:21 UTC (rev 10690)
@@ -1,10 +1,16 @@
-# $MidnightBSD: src/secure/Makefile,v 1.3 2012/08/30 00:09:23 laffer1 Exp $
-# $FreeBSD: src/secure/Makefile,v 1.27 2006/03/17 18:54:31 ru Exp $
+# $MidnightBSD$
+# $FreeBSD: stable/10/secure/Makefile 291792 2015-12-04 18:14:31Z bdrewery $
 
 .include <bsd.own.mk>
 
-SUBDIR= lib libexec usr.bin usr.sbin
+SUBDIR= lib .WAIT \
+	libexec ${_tests} usr.bin usr.sbin
+SUBDIR_PARALLEL=
 
+.if ${MK_TESTS} != "no"
+_tests=	tests
+.endif
+
 # These are the programs which depend on crypto, but not Kerberos.
 SPROGS=	lib/libfetch lib/libpam lib/libradius lib/libtelnet	\
 	bin/ed libexec/telnetd usr.bin/fetch usr.bin/telnet	\
@@ -14,7 +20,7 @@
 .endif
 
 # This target is used to rebuild these programs with crypto.
-secure:
+secure: .MAKE .PHONY
 .for entry in ${SPROGS}
 	cd ${.CURDIR}/../${entry}; \
 	${MAKE} cleandir; \
@@ -25,7 +31,7 @@
 .endfor
 
 # This target is used to rebuild these programs without crypto.
-insecure:
+insecure: .MAKE .PHONY
 .for entry in ${SPROGS}
 	cd ${.CURDIR}/../${entry}; \
 	${MAKE} -DWITHOUT_CRYPT cleandir; \



More information about the Midnightbsd-cvs mailing list