Author: bdrewery
Date: Thu Oct 15 22:55:08 2015
New Revision: 289393
URL: https://svnweb.freebsd.org/changeset/base/289393

Log:
  Add more SUBDIR_PARALLEL.
  
  MFC after:    3 weeks
  Sponsored by: EMC / Isilon Storage Division

Modified:
  head/bin/sh/tests/Makefile
  head/cddl/Makefile
  head/etc/periodic/Makefile
  head/gnu/Makefile
  head/gnu/lib/Makefile
  head/gnu/usr.bin/cc/Makefile
  head/gnu/usr.bin/groff/Makefile
  head/gnu/usr.bin/rcs/Makefile
  head/include/Makefile
  head/lib/libiconv_modules/Makefile
  head/secure/Makefile
  head/secure/libexec/Makefile
  head/secure/usr.bin/Makefile
  head/secure/usr.sbin/Makefile
  head/share/Makefile
  head/share/doc/Makefile
  head/share/doc/legal/Makefile
  head/share/doc/papers/Makefile
  head/share/doc/psd/Makefile
  head/share/doc/smm/Makefile
  head/share/doc/usd/Makefile
  head/share/examples/Makefile
  head/share/i18n/Makefile
  head/share/i18n/csmapper/Makefile
  head/share/i18n/esdb/Makefile
  head/share/man/Makefile
  head/share/syscons/Makefile
  head/tests/Makefile
  head/tests/sys/Makefile
  head/tests/sys/pjdfstest/Makefile
  head/tests/sys/pjdfstest/tests/Makefile

Modified: head/bin/sh/tests/Makefile
==============================================================================
--- head/bin/sh/tests/Makefile  Thu Oct 15 22:50:36 2015        (r289392)
+++ head/bin/sh/tests/Makefile  Thu Oct 15 22:55:08 2015        (r289393)
@@ -10,4 +10,6 @@ TESTS_SUBDIRS+=       parameters
 TESTS_SUBDIRS+=        parser
 TESTS_SUBDIRS+=        set-e
 
+SUBDIR_PARALLEL=
+
 .include <bsd.test.mk>

Modified: head/cddl/Makefile
==============================================================================
--- head/cddl/Makefile  Thu Oct 15 22:50:36 2015        (r289392)
+++ head/cddl/Makefile  Thu Oct 15 22:55:08 2015        (r289393)
@@ -2,10 +2,13 @@
 
 .include <src.opts.mk>
 
-SUBDIR=        lib sbin usr.bin usr.sbin
+SUBDIR=        lib .WAIT \
+       sbin usr.bin usr.sbin
 
 .if ${MK_TESTS} != "no"
 SUBDIR+=tests
 .endif
 
+SUBDIR_PARALLEL=
+
 .include <bsd.subdir.mk>

Modified: head/etc/periodic/Makefile
==============================================================================
--- head/etc/periodic/Makefile  Thu Oct 15 22:50:36 2015        (r289392)
+++ head/etc/periodic/Makefile  Thu Oct 15 22:55:08 2015        (r289393)
@@ -1,5 +1,6 @@
 # $FreeBSD$
 
 SUBDIR=        daily security weekly monthly
+SUBDIR_PARALLEL=
 
 .include <bsd.subdir.mk>

Modified: head/gnu/Makefile
==============================================================================
--- head/gnu/Makefile   Thu Oct 15 22:50:36 2015        (r289392)
+++ head/gnu/Makefile   Thu Oct 15 22:55:08 2015        (r289393)
@@ -3,10 +3,13 @@
 
 .include <src.opts.mk>
 
-SUBDIR= lib ${_tests} usr.bin
+SUBDIR= lib .WAIT \
+       ${_tests} usr.bin
 
 .if ${MK_TESTS} != "no"
 _tests=        tests
 .endif
 
+SUBDIR_PARALLEL=
+
 .include <bsd.subdir.mk>

Modified: head/gnu/lib/Makefile
==============================================================================
--- head/gnu/lib/Makefile       Thu Oct 15 22:50:36 2015        (r289392)
+++ head/gnu/lib/Makefile       Thu Oct 15 22:55:08 2015        (r289393)
@@ -24,6 +24,9 @@ SUBDIR+=      libreadline
 # have taken care of that already.
 .if ${MK_GNUCXX} != "no"
 SUBDIR+= libstdc++ libsupc++
+SUBDIR_DEPENDS_libsupc++:= libstdc++
 .endif
 
+SUBDIR_PARALLEL=
+
 .include <bsd.subdir.mk>

Modified: head/gnu/usr.bin/cc/Makefile
==============================================================================
--- head/gnu/usr.bin/cc/Makefile        Thu Oct 15 22:50:36 2015        
(r289392)
+++ head/gnu/usr.bin/cc/Makefile        Thu Oct 15 22:55:08 2015        
(r289393)
@@ -5,7 +5,8 @@
 # The order of some of these are rather important.  Some depend on previous
 # subdirs.
 
-SUBDIR= cc_tools libiberty libcpp libdecnumber cc_int cc cc1 include
+SUBDIR= cc_tools .WAIT \
+       libiberty libcpp libdecnumber cc_int cc cc1 include
 
 .if ${MK_CPP} != "no"
 SUBDIR+= cpp
@@ -19,4 +20,13 @@ SUBDIR+= cc1plus c++
 SUBDIR+= gcov
 .endif
 
+SUBDIR_DEPEND_c++:=    libcpp libiberty
+SUBDIR_DEPEND_cc=      libcpp libiberty
+SUBDIR_DEPEND_cpp=     libcpp libiberty
+SUBDIR_DEPEND_cc1plus= cc_int libcpp libdecnumber libiberty
+SUBDIR_DEPEND_cc1=     cc_int libcpp libdecnumber libiberty
+SUBDIR_DEPEND_gcov=    libiberty
+
+SUBDIR_PARALLEL=
+
 .include <bsd.subdir.mk>

Modified: head/gnu/usr.bin/groff/Makefile
==============================================================================
--- head/gnu/usr.bin/groff/Makefile     Thu Oct 15 22:50:36 2015        
(r289392)
+++ head/gnu/usr.bin/groff/Makefile     Thu Oct 15 22:55:08 2015        
(r289393)
@@ -6,4 +6,6 @@ SUBDIR=         contrib font man src tmac
 SUBDIR_DEPEND_${subdir}=       src
 .endfor
 
+SUBDIR_PARALLEL=
+
 .include <bsd.subdir.mk>

Modified: head/gnu/usr.bin/rcs/Makefile
==============================================================================
--- head/gnu/usr.bin/rcs/Makefile       Thu Oct 15 22:50:36 2015        
(r289392)
+++ head/gnu/usr.bin/rcs/Makefile       Thu Oct 15 22:55:08 2015        
(r289393)
@@ -1,5 +1,7 @@
 # $FreeBSD$
 
-SUBDIR= lib ci co merge rcs rcsclean rcsdiff rcsmerge rlog rcsfreeze
+SUBDIR= lib .WAIT \
+       ci co merge rcs rcsclean rcsdiff rcsmerge rlog rcsfreeze
+SUBDIR_PARALLEL=
 
 .include <bsd.subdir.mk>

Modified: head/include/Makefile
==============================================================================
--- head/include/Makefile       Thu Oct 15 22:50:36 2015        (r289392)
+++ head/include/Makefile       Thu Oct 15 22:55:08 2015        (r289393)
@@ -7,6 +7,7 @@
 
 CLEANFILES= osreldate.h version vers.c
 SUBDIR= arpa protocols rpcsvc rpc xlocale
+SUBDIR_PARALLEL=
 INCS=  a.out.h ar.h assert.h bitstring.h complex.h cpio.h _ctype.h ctype.h \
        db.h \
        dirent.h dlfcn.h elf.h elf-hints.h err.h fmtmsg.h fnmatch.h fstab.h \

Modified: head/lib/libiconv_modules/Makefile
==============================================================================
--- head/lib/libiconv_modules/Makefile  Thu Oct 15 22:50:36 2015        
(r289392)
+++ head/lib/libiconv_modules/Makefile  Thu Oct 15 22:55:08 2015        
(r289393)
@@ -5,5 +5,6 @@
 SUBDIR=        BIG5 DECHanyu EUC EUCTW GBK2K HZ ISO2022 JOHAB MSKanji UES 
UTF1632 \
        UTF7 UTF8 VIQR ZW iconv_none iconv_std mapper_646 mapper_none \
        mapper_parallel mapper_serial mapper_std mapper_zone
+SUBDIR_PARALLEL=
 
 .include <bsd.subdir.mk>

Modified: head/secure/Makefile
==============================================================================
--- head/secure/Makefile        Thu Oct 15 22:50:36 2015        (r289392)
+++ head/secure/Makefile        Thu Oct 15 22:55:08 2015        (r289393)
@@ -2,7 +2,9 @@
 
 .include <src.opts.mk>
 
-SUBDIR= lib libexec ${_tests} usr.bin usr.sbin
+SUBDIR= lib .WAIT \
+       libexec ${_tests} usr.bin usr.sbin
+SUBDIR_PARALLEL=
 
 .if ${MK_TESTS} != "no"
 _tests=        tests

Modified: head/secure/libexec/Makefile
==============================================================================
--- head/secure/libexec/Makefile        Thu Oct 15 22:50:36 2015        
(r289392)
+++ head/secure/libexec/Makefile        Thu Oct 15 22:55:08 2015        
(r289393)
@@ -11,4 +11,6 @@ SUBDIR+=sftp-server ssh-keysign ssh-pkcs
 SUBDIR+=tests
 .endif
 
+SUBDIR_PARALLEL=
+
 .include <bsd.subdir.mk>

Modified: head/secure/usr.bin/Makefile
==============================================================================
--- head/secure/usr.bin/Makefile        Thu Oct 15 22:50:36 2015        
(r289392)
+++ head/secure/usr.bin/Makefile        Thu Oct 15 22:55:08 2015        
(r289393)
@@ -14,4 +14,6 @@ SUBDIR+=scp sftp ssh ssh-add ssh-agent s
 SUBDIR+=tests
 .endif
 
+SUBDIR_PARALLEL=
+
 .include <bsd.subdir.mk>

Modified: head/secure/usr.sbin/Makefile
==============================================================================
--- head/secure/usr.sbin/Makefile       Thu Oct 15 22:50:36 2015        
(r289392)
+++ head/secure/usr.sbin/Makefile       Thu Oct 15 22:55:08 2015        
(r289393)
@@ -11,4 +11,6 @@ SUBDIR+=sshd
 SUBDIR+=tests
 .endif
 
+SUBDIR_PARALLEL=
+
 .include <bsd.subdir.mk>

Modified: head/share/Makefile
==============================================================================
--- head/share/Makefile Thu Oct 15 22:50:36 2015        (r289392)
+++ head/share/Makefile Thu Oct 15 22:55:08 2015        (r289393)
@@ -98,4 +98,6 @@ _vt=          vt
 _zoneinfo=     zoneinfo
 .endif
 
+SUBDIR_PARALLEL=
+
 .include <bsd.subdir.mk>

Modified: head/share/doc/Makefile
==============================================================================
--- head/share/doc/Makefile     Thu Oct 15 22:50:36 2015        (r289392)
+++ head/share/doc/Makefile     Thu Oct 15 22:55:08 2015        (r289393)
@@ -28,6 +28,8 @@ _IPv6=        IPv6
 _roffdocs=     papers psd smm usd
 .endif
 
+SUBDIR_PARALLEL=
+
 # Default output format for troff documents is ascii.
 # To generate postscript versions of troff documents, use:
 #  make PRINTERDEVICE=ps

Modified: head/share/doc/legal/Makefile
==============================================================================
--- head/share/doc/legal/Makefile       Thu Oct 15 22:50:36 2015        
(r289392)
+++ head/share/doc/legal/Makefile       Thu Oct 15 22:55:08 2015        
(r289393)
@@ -6,4 +6,6 @@ SUBDIR= intel_ipw \
        intel_wpi \
        realtek
 
+SUBDIR_PARALLEL=
+
 .include <bsd.subdir.mk>

Modified: head/share/doc/papers/Makefile
==============================================================================
--- head/share/doc/papers/Makefile      Thu Oct 15 22:50:36 2015        
(r289392)
+++ head/share/doc/papers/Makefile      Thu Oct 15 22:55:08 2015        
(r289393)
@@ -15,4 +15,6 @@ SUBDIR=       beyond4.3 \
        sysperf \
        timecounter
 
+SUBDIR_PARALLEL=
+
 .include <bsd.subdir.mk>

Modified: head/share/doc/psd/Makefile
==============================================================================
--- head/share/doc/psd/Makefile Thu Oct 15 22:50:36 2015        (r289392)
+++ head/share/doc/psd/Makefile Thu Oct 15 22:55:08 2015        (r289393)
@@ -37,4 +37,6 @@ SUBDIR+=22.rpcgen \
        26.rpcrfc \
        27.nfsrpc
 
+SUBDIR_PARALLEL=
+
 .include <bsd.subdir.mk>

Modified: head/share/doc/smm/Makefile
==============================================================================
--- head/share/doc/smm/Makefile Thu Oct 15 22:50:36 2015        (r289392)
+++ head/share/doc/smm/Makefile Thu Oct 15 22:55:08 2015        (r289393)
@@ -32,4 +32,6 @@ _08.sendmailop=       08.sendmailop 
 _07.lpd=       07.lpd
 .endif
 
+SUBDIR_PARALLEL=
+
 .include <bsd.subdir.mk>

Modified: head/share/doc/usd/Makefile
==============================================================================
--- head/share/doc/usd/Makefile Thu Oct 15 22:50:36 2015        (r289392)
+++ head/share/doc/usd/Makefile Thu Oct 15 22:55:08 2015        (r289393)
@@ -19,5 +19,6 @@ SUBDIR=       title \
        20.meref \
        21.troff \
        22.trofftut
+SUBDIR_PARALLEL=
 
 .include <bsd.subdir.mk>

Modified: head/share/examples/Makefile
==============================================================================
--- head/share/examples/Makefile        Thu Oct 15 22:50:36 2015        
(r289392)
+++ head/share/examples/Makefile        Thu Oct 15 22:55:08 2015        
(r289393)
@@ -261,4 +261,6 @@ SUBDIR+=pf
 SUBDIR+=tests
 .endif
 
+SUBDIR_PARALLEL=
+
 .include <bsd.subdir.mk>

Modified: head/share/i18n/Makefile
==============================================================================
--- head/share/i18n/Makefile    Thu Oct 15 22:50:36 2015        (r289392)
+++ head/share/i18n/Makefile    Thu Oct 15 22:55:08 2015        (r289393)
@@ -4,5 +4,6 @@
 .include <bsd.own.mk>
 
 SUBDIR=        csmapper esdb
+SUBDIR_PARALLEL=
 
 .include <bsd.subdir.mk>

Modified: head/share/i18n/csmapper/Makefile
==============================================================================
--- head/share/i18n/csmapper/Makefile   Thu Oct 15 22:50:36 2015        
(r289392)
+++ head/share/i18n/csmapper/Makefile   Thu Oct 15 22:55:08 2015        
(r289393)
@@ -5,6 +5,7 @@ FILESDIR= ${CSMAPPERDIR}
 
 SUBDIR=        APPLE AST BIG5 CNS CP EBCDIC GB GEORGIAN ISO646 ISO-8859 JIS \
        KAZAKH KOI KS MISC TCVN
+SUBDIR_PARALLEL=
 
 mapper.dir: ${SUBDIR}
        newfile=$$(for i in ${SUBDIR}; do \

Modified: head/share/i18n/esdb/Makefile
==============================================================================
--- head/share/i18n/esdb/Makefile       Thu Oct 15 22:50:36 2015        
(r289392)
+++ head/share/i18n/esdb/Makefile       Thu Oct 15 22:55:08 2015        
(r289393)
@@ -5,6 +5,7 @@ FILESDIR= ${ESDBDIR}
 
 SUBDIR=        APPLE AST BIG5 CP DEC EUC EBCDIC GB GEORGIAN ISO-2022 ISO-8859 \
        ISO646 KAZAKH KOI MISC TCVN UTF
+SUBDIR_PARALLEL=
 
 FILES+=        esdb.dir esdb.dir.db esdb.alias esdb.alias.db
 CLEANFILES= ${FILES}

Modified: head/share/man/Makefile
==============================================================================
--- head/share/man/Makefile     Thu Oct 15 22:50:36 2015        (r289392)
+++ head/share/man/Makefile     Thu Oct 15 22:55:08 2015        (r289393)
@@ -5,6 +5,7 @@
 
 # XXX MISSING: man3f
 SUBDIR=        man1 man3 man4 man5 man6 man7 man8 man9
+SUBDIR_PARALLEL=
 
 MAKEWHATIS?=   makewhatis
 

Modified: head/share/syscons/Makefile
==============================================================================
--- head/share/syscons/Makefile Thu Oct 15 22:50:36 2015        (r289392)
+++ head/share/syscons/Makefile Thu Oct 15 22:55:08 2015        (r289393)
@@ -1,5 +1,6 @@
 # $FreeBSD$
 
 SUBDIR= fonts keymaps scrnmaps
+SUBDIR_PARALLEL=
 
 .include <bsd.subdir.mk>

Modified: head/tests/Makefile
==============================================================================
--- head/tests/Makefile Thu Oct 15 22:50:36 2015        (r289392)
+++ head/tests/Makefile Thu Oct 15 22:55:08 2015        (r289393)
@@ -4,6 +4,7 @@
 
 SUBDIR+= etc
 SUBDIR+= sys
+SUBDIR_PARALLEL=
 
 TESTSDIR= ${TESTSBASE}
 KYUAFILE= yes

Modified: head/tests/sys/Makefile
==============================================================================
--- head/tests/sys/Makefile     Thu Oct 15 22:50:36 2015        (r289392)
+++ head/tests/sys/Makefile     Thu Oct 15 22:55:08 2015        (r289393)
@@ -18,4 +18,6 @@ TESTS_SUBDIRS+=               vm
 # Items not integrated into kyua runs by default
 SUBDIR+=               pjdfstest
 
+SUBDIR_PARALLEL=
+
 .include <bsd.test.mk>

Modified: head/tests/sys/pjdfstest/Makefile
==============================================================================
--- head/tests/sys/pjdfstest/Makefile   Thu Oct 15 22:50:36 2015        
(r289392)
+++ head/tests/sys/pjdfstest/Makefile   Thu Oct 15 22:55:08 2015        
(r289393)
@@ -2,5 +2,6 @@
 
 SUBDIR+=       pjdfstest
 SUBDIR+=       tests
+SUBDIR_PARALLEL=
 
 .include <bsd.subdir.mk>

Modified: head/tests/sys/pjdfstest/tests/Makefile
==============================================================================
--- head/tests/sys/pjdfstest/tests/Makefile     Thu Oct 15 22:50:36 2015        
(r289392)
+++ head/tests/sys/pjdfstest/tests/Makefile     Thu Oct 15 22:55:08 2015        
(r289393)
@@ -36,4 +36,6 @@ TESTS_SUBDIRS+=       symlink
 TESTS_SUBDIRS+=        truncate
 TESTS_SUBDIRS+=        unlink
 
+SUBDIR_PARALLEL=
+
 .include <bsd.test.mk>
_______________________________________________
[email protected] mailing list
https://lists.freebsd.org/mailman/listinfo/svn-src-head
To unsubscribe, send any mail to "[email protected]"

Reply via email to