diff options
author | Andres Mejia <amejia004@gmail.com> | 2012-06-17 19:14:53 -0400 |
---|---|---|
committer | Andres Mejia <amejia004@gmail.com> | 2012-06-17 19:14:53 -0400 |
commit | 528563adf14355a1b7572b02e8f56433503f3349 (patch) | |
tree | 2bd76eea40c1e2b495fbed910597836e8179b40c /Makefile.include.in | |
parent | 9e6ab842e2443cf39e510af60ba2436afce9228c (diff) |
Add 'check' target used in compiling/running testsuite.
Diffstat (limited to 'Makefile.include.in')
-rw-r--r-- | Makefile.include.in | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Makefile.include.in b/Makefile.include.in index d0d44bda48..c7eb9aa4d4 100644 --- a/Makefile.include.in +++ b/Makefile.include.in @@ -132,6 +132,7 @@ 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 distclean: $(RM) $(OBJS) *.o $(LIB) $(SLIB) $(STATICLIB) $(CLEAN_FILES) $(DISTCLEAN_FILES) $(PCH:.h=.h.gch) $(DEPS) |