diff options
Diffstat (limited to 'Makefile.include.in')
-rw-r--r-- | Makefile.include.in | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Makefile.include.in b/Makefile.include.in index 704a4bc7f2..5772d67da7 100644 --- a/Makefile.include.in +++ b/Makefile.include.in @@ -125,7 +125,7 @@ GEN_DEPS=\ && $(GEN_DEPS) -.PHONY : lib pch clean distclean distclean_evil +.PHONY : lib pch clean distclean distclean_evil check testsuite $(LIB): $(OBJS) $(SILENT_AR) $(AR) $(ARFLAGS) $(LIB) $(OBJS) @@ -136,11 +136,11 @@ pch: $(PCH:.h=.h.gch) clean: $(RM) $(OBJS) *.o $(LIB) $(SLIB) $(CLEAN_FILES) $(PCH:.h=.h.gch) $(DEPS) for d in $(DIRS); do (if test -f "$$d/Makefile"; then ($(MAKE) -C "$$d" clean); fi ); done - for d in $(CHECK_DIRS); do if test -f $$d/Makefile; then $(MAKE) -C $$d $@; fi; done + for d in $(CHECK_DIRS) $(GTEST_DIR); do if test -f $$d/Makefile; then $(MAKE) -C $$d $@; fi; done distclean: $(RM) $(OBJS) *.o $(LIB) $(SLIB) $(STATICLIB) $(CLEAN_FILES) $(DISTCLEAN_FILES) $(PCH:.h=.h.gch) $(DEPS) for d in $(DIRS); do (if test -f "$$d/Makefile"; then ($(MAKE) -C "$$d" distclean || $(MAKE) -C "$$d" clean); fi ); done - for d in $(CHECK_DIRS); do (if test -f "$$d/Makefile"; then ($(MAKE) -C "$$d" $@ || $(MAKE) -C "$$d" clean); fi ); done + for d in $(CHECK_DIRS) $(GTEST_DIR); do (if test -f "$$d/Makefile"; then ($(MAKE) -C "$$d" $@ || $(MAKE) -C "$$d" clean); fi ); done if [ "$(shell pwd -P)" = "$(abs_top_srcdir)" ] || \ [ "$(shell pwd)" = "$(abs_top_srcdir)" ]; then rm -f $(AUTOGENERATED_MAKEFILES) Makefile.include Makefile; fi |