Lines Matching refs:gtest
11 # Always include gtest in distributions.
14 # Build gtest before we build protobuf tests. We don't add gtest to SUBDIRS
15 # because then "make check" would also build and run all of gtest's own tests,
17 # want "make install" to recurse into gtest since we don't want to overwrite
18 # the installed version of gtest if there is one.
20 @echo "Making lib/libgtest.a lib/libgtest_main.a in gtest"
21 @cd gtest && $(MAKE) $(AM_MAKEFLAGS) lib/libgtest.la lib/libgtest_main.la
23 # We would like to clean gtest when "make clean" is invoked. But we have to
25 # "make distclean" already recurses into gtest because it's listed among the
26 # DIST_SUBDIRS. distclean will delete gtest/Makefile, so if we then try to
30 @if test -e gtest/Makefile; then \
31 echo "Making clean in gtest"; \
32 cd gtest && $(MAKE) $(AM_MAKEFLAGS) clean; \