4fa4bd6312
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
19 lines
306 B
Makefile
19 lines
306 B
Makefile
# $FreeBSD$
|
|
|
|
.include <src.opts.mk>
|
|
|
|
SUBDIR+= gtest
|
|
SUBDIR+= gmock
|
|
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>
|