diff options
author | bdrewery <bdrewery@FreeBSD.org> | 2015-09-26 14:13:51 +0000 |
---|---|---|
committer | bdrewery <bdrewery@FreeBSD.org> | 2015-09-26 14:13:51 +0000 |
commit | 8f7e12f5afa0aac672f24d48ee96fe567948717e (patch) | |
tree | 370c0109b68d3c6c51323457b1ffb5e8a469d11e | |
parent | 3312e694dda06d184ce2a951a7cb7f41cfeb2c49 (diff) | |
download | FreeBSD-src-8f7e12f5afa0aac672f24d48ee96fe567948717e.zip FreeBSD-src-8f7e12f5afa0aac672f24d48ee96fe567948717e.tar.gz |
Add more SUBDIR_PARALLEL.
MFC after: 3 weeks
Sponsored by: EMC / Isilon Storage Division
-rw-r--r-- | kerberos5/Makefile | 4 | ||||
-rw-r--r-- | kerberos5/lib/Makefile | 2 | ||||
-rw-r--r-- | kerberos5/libexec/Makefile | 1 | ||||
-rw-r--r-- | kerberos5/tools/Makefile | 1 | ||||
-rw-r--r-- | kerberos5/usr.bin/Makefile | 1 | ||||
-rw-r--r-- | kerberos5/usr.sbin/Makefile | 1 | ||||
-rw-r--r-- | usr.bin/svn/Makefile | 5 | ||||
-rw-r--r-- | usr.sbin/amd/Makefile | 4 | ||||
-rw-r--r-- | usr.sbin/bsdinstall/Makefile | 1 | ||||
-rw-r--r-- | usr.sbin/fifolog/Makefile | 4 | ||||
-rw-r--r-- | usr.sbin/lpr/Makefile | 4 | ||||
-rw-r--r-- | usr.sbin/pc-sysinstall/Makefile | 1 | ||||
-rw-r--r-- | usr.sbin/unbound/Makefile | 1 | ||||
-rw-r--r-- | usr.sbin/wpa/Makefile | 1 |
14 files changed, 26 insertions, 5 deletions
diff --git a/kerberos5/Makefile b/kerberos5/Makefile index c66ad4d..c93126d 100644 --- a/kerberos5/Makefile +++ b/kerberos5/Makefile @@ -1,6 +1,8 @@ # $FreeBSD$ -SUBDIR= lib libexec tools usr.bin usr.sbin +SUBDIR= lib .WAIT \ + libexec tools usr.bin usr.sbin +SUBDIR_PARALLEL= # These are the programs which depend on Kerberos. KPROGS= lib/libpam \ diff --git a/kerberos5/lib/Makefile b/kerberos5/lib/Makefile index dddb4d2..3c03204 100644 --- a/kerberos5/lib/Makefile +++ b/kerberos5/lib/Makefile @@ -6,5 +6,7 @@ SUBDIR= libasn1 libgssapi_krb5 libgssapi_ntlm libgssapi_spnego libhdb \ libroken libsl libvers libkdc libwind libheimbase libheimipcc libheimipcs SUBDIR+= libkafs5 # requires krb_err.h from libkrb5 +SUBDIR_DEPEND_libkafs5= libkrb5 +SUBDIR_PARALLEL= .include <bsd.subdir.mk> diff --git a/kerberos5/libexec/Makefile b/kerberos5/libexec/Makefile index e6735ca..26a830d 100644 --- a/kerberos5/libexec/Makefile +++ b/kerberos5/libexec/Makefile @@ -2,5 +2,6 @@ SUBDIR= digest-service ipropd-master ipropd-slave hprop hpropd kadmind kdc \ kdigest kfd kimpersonate kpasswdd kcm +SUBDIR_PARALLEL= .include <bsd.subdir.mk> diff --git a/kerberos5/tools/Makefile b/kerberos5/tools/Makefile index 0bbf2d4..b623a25 100644 --- a/kerberos5/tools/Makefile +++ b/kerberos5/tools/Makefile @@ -1,5 +1,6 @@ # $FreeBSD$ SUBDIR= make-roken asn1_compile slc +SUBDIR_PARALLEL= .include <bsd.subdir.mk> diff --git a/kerberos5/usr.bin/Makefile b/kerberos5/usr.bin/Makefile index da141e5..e9c5030 100644 --- a/kerberos5/usr.bin/Makefile +++ b/kerberos5/usr.bin/Makefile @@ -2,5 +2,6 @@ SUBDIR= hxtool kadmin kcc kdestroy kgetcred kf kinit kpasswd krb5-config ksu \ string2key verify_krb5_conf +SUBDIR_PARALLEL= .include <bsd.subdir.mk> diff --git a/kerberos5/usr.sbin/Makefile b/kerberos5/usr.sbin/Makefile index 5e8d58e..a7a69ce 100644 --- a/kerberos5/usr.sbin/Makefile +++ b/kerberos5/usr.sbin/Makefile @@ -1,5 +1,6 @@ # $FreeBSD$ SUBDIR= iprop-log kstash ktutil +SUBDIR_PARALLEL= .include <bsd.subdir.mk> diff --git a/usr.bin/svn/Makefile b/usr.bin/svn/Makefile index 4442117..1d2ae21 100644 --- a/usr.bin/svn/Makefile +++ b/usr.bin/svn/Makefile @@ -1,5 +1,8 @@ # $FreeBSD$ -SUBDIR = lib svn svnadmin svndumpfilter svnlook svnserve svnsync svnversion svnmucc svnrdump +SUBDIR = lib .WAIT \ + svn svnadmin svndumpfilter svnlook svnserve svnsync svnversion \ + svnmucc svnrdump +SUBDIR_PARALLEL= .include <bsd.subdir.mk> diff --git a/usr.sbin/amd/Makefile b/usr.sbin/amd/Makefile index 2255f14..77c5a4c 100644 --- a/usr.sbin/amd/Makefile +++ b/usr.sbin/amd/Makefile @@ -5,7 +5,9 @@ # # $FreeBSD$ -SUBDIR= include libamu amd amq fixmount fsinfo hlfsd mk-amd-map pawd \ +SUBDIR= include libamu .WAIT \ + amd amq fixmount fsinfo hlfsd mk-amd-map pawd \ scripts wire-test +SUBDIR_PARALLEL= .include <bsd.subdir.mk> diff --git a/usr.sbin/bsdinstall/Makefile b/usr.sbin/bsdinstall/Makefile index e72b5d3..4e3b7ef 100644 --- a/usr.sbin/bsdinstall/Makefile +++ b/usr.sbin/bsdinstall/Makefile @@ -1,6 +1,7 @@ # $FreeBSD$ SUBDIR= distextract distfetch partedit scripts +SUBDIR_PARALLEL= SCRIPTS= bsdinstall MAN= bsdinstall.8 diff --git a/usr.sbin/fifolog/Makefile b/usr.sbin/fifolog/Makefile index 59ac9fe..fbaaa89 100644 --- a/usr.sbin/fifolog/Makefile +++ b/usr.sbin/fifolog/Makefile @@ -1,5 +1,7 @@ # $FreeBSD$ -SUBDIR= lib fifolog_create fifolog_writer fifolog_reader +SUBDIR= lib .WAIT \ + fifolog_create fifolog_writer fifolog_reader +SUBDIR_PARALLEL= .include <bsd.subdir.mk> diff --git a/usr.sbin/lpr/Makefile b/usr.sbin/lpr/Makefile index 043ed8b..5873c07 100644 --- a/usr.sbin/lpr/Makefile +++ b/usr.sbin/lpr/Makefile @@ -1,7 +1,9 @@ # $FreeBSD$ -SUBDIR= common_source chkprintcap lp lpc lpd lpq lpr lprm lptest pac \ +SUBDIR= common_source .WAIT \ + chkprintcap lp lpc lpd lpq lpr lprm lptest pac \ filters filters.ru +SUBDIR_PARALLEL= # Questions/ideas for lpr & friends could also be sent to: # freebsd-print@bostonradio.org diff --git a/usr.sbin/pc-sysinstall/Makefile b/usr.sbin/pc-sysinstall/Makefile index aba8db7..d079e16 100644 --- a/usr.sbin/pc-sysinstall/Makefile +++ b/usr.sbin/pc-sysinstall/Makefile @@ -1,5 +1,6 @@ # $FreeBSD$ SUBDIR=backend backend-partmanager backend-query conf doc examples SUBDIR+=pc-sysinstall +SUBDIR_PARALLEL= .include <bsd.subdir.mk> diff --git a/usr.sbin/unbound/Makefile b/usr.sbin/unbound/Makefile index 3eb12fe..94cfdc3 100644 --- a/usr.sbin/unbound/Makefile +++ b/usr.sbin/unbound/Makefile @@ -2,5 +2,6 @@ SUBDIR= daemon anchor checkconf control SUBDIR+= local-setup +SUBDIR_PARALLEL= .include <bsd.subdir.mk> diff --git a/usr.sbin/wpa/Makefile b/usr.sbin/wpa/Makefile index 5d746e9..ae07ec0 100644 --- a/usr.sbin/wpa/Makefile +++ b/usr.sbin/wpa/Makefile @@ -3,5 +3,6 @@ SUBDIR= wpa_supplicant wpa_cli wpa_passphrase SUBDIR+= hostapd hostapd_cli SUBDIR+= ndis_events +SUBDIR_PARALLEL= .include <bsd.subdir.mk> |