Index: head/cddl/sbin/Makefile =================================================================== --- head/cddl/sbin/Makefile (revision 283146) +++ head/cddl/sbin/Makefile (revision 283147) @@ -1,16 +1,18 @@ # $FreeBSD$ .include SUBDIR= ${_tests} ${_zfs} ${_zpool} .if ${MK_TESTS} != "no" _tests= tests .endif .if ${MK_ZFS} != "no" _zfs= zfs _zpool= zpool .endif +SUBDIR_PARALLEL= + .include Index: head/cddl/usr.bin/Makefile =================================================================== --- head/cddl/usr.bin/Makefile (revision 283146) +++ head/cddl/usr.bin/Makefile (revision 283147) @@ -1,29 +1,31 @@ # $FreeBSD$ .include SUBDIR= \ ctfconvert \ ctfdump \ ctfmerge \ sgsmsg \ ${_tests} \ ${_zinject} \ ${_zlook} \ ${_zstreamdump} \ ${_ztest} .if ${MK_TESTS} != "no" _tests= tests .endif .if ${MK_ZFS} != "no" _zinject= zinject #_zlook= zlook .if ${MK_LIBTHR} != "no" _ztest= ztest _zstreamdump = zstreamdump .endif .endif +SUBDIR_PARALLEL= + .include Index: head/cddl/usr.sbin/Makefile =================================================================== --- head/cddl/usr.sbin/Makefile (revision 283146) +++ head/cddl/usr.sbin/Makefile (revision 283147) @@ -1,49 +1,51 @@ # $FreeBSD$ .include SUBDIR= ${_dtrace} \ ${_dtruss} \ ${_lockstat} \ ${_plockstat} \ ${_tests} \ ${_zdb} \ ${_zhack} .if ${MK_TESTS} != "no" _tests= tests .endif .if ${MK_ZFS} != "no" .if ${MK_LIBTHR} != "no" _zdb= zdb _zhack= zhack .endif .endif .if ${MACHINE_ARCH} == "amd64" || ${MACHINE_ARCH} == "i386" _dtrace= dtrace _dtruss= dtruss _lockstat= lockstat .if defined(WITH_PLOCKSTAT) _plockstat= plockstat .endif .endif .if ${MACHINE_CPUARCH} == "arm" _dtrace= dtrace _dtruss= dtruss _lockstat= lockstat .endif .if ${MACHINE_CPUARCH} == "mips" _dtrace= dtrace .endif .if ${MACHINE_CPUARCH} == "powerpc" _dtrace= dtrace _dtruss= dtruss _lockstat= lockstat .endif +SUBDIR_PARALLEL= + .include