diff options
author | Alex Richardson <arichardson@FreeBSD.org> | 2020-10-19 19:51:03 +0000 |
---|---|---|
committer | Alex Richardson <arichardson@FreeBSD.org> | 2020-10-19 19:51:03 +0000 |
commit | 4fa4bd6312cbeebda23a80feb77f29691af0cd7b (patch) | |
tree | 3607c2be98ab30ad2bb17b69ef7fcc00cedc8c0a /lib | |
parent | 2ed3236082a4473c1da8f72c1ebc071a7b54321f (diff) | |
download | src-4fa4bd6312cbeebda23a80feb77f29691af0cd7b.tar.gz src-4fa4bd6312cbeebda23a80feb77f29691af0cd7b.zip |
Enable SUBDIR_PARALLEL for lib/googletest
This saves a few seconds in a parallel build since we can build the
gtest_main and gmock subdirectories in parallel.
Reviewed By: ngie
Differential Revision: https://reviews.freebsd.org/D26760
Notes
Notes:
svn path=/head/; revision=366851
Diffstat (limited to 'lib')
-rw-r--r-- | lib/googletest/Makefile | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/lib/googletest/Makefile b/lib/googletest/Makefile index b45985177f83..47d4939f2166 100644 --- a/lib/googletest/Makefile +++ b/lib/googletest/Makefile @@ -3,12 +3,16 @@ .include <src.opts.mk> SUBDIR+= gtest -SUBDIR+= .WAIT SUBDIR+= gmock -SUBDIR+= .WAIT SUBDIR+= gmock_main SUBDIR+= gtest_main SUBDIR.${MK_TESTS}+= tests +SUBDIR_DEPEND_gtest_main= gtest +SUBDIR_DEPEND_gmock= gtest +SUBDIR_DEPEND_gmock_main= gmock +SUBDIR_DEPEND_tests= gmock_main +SUBDIR_PARALLEL= + .include <bsd.subdir.mk> |