aboutsummaryrefslogtreecommitdiff
path: root/Makefile.include.in
diff options
context:
space:
mode:
authorAndres Mejia <amejia004@gmail.com>2012-06-17 19:14:53 -0400
committerAndres Mejia <amejia004@gmail.com>2012-06-17 19:14:53 -0400
commit528563adf14355a1b7572b02e8f56433503f3349 (patch)
tree2bd76eea40c1e2b495fbed910597836e8179b40c /Makefile.include.in
parent9e6ab842e2443cf39e510af60ba2436afce9228c (diff)
Add 'check' target used in compiling/running testsuite.
Diffstat (limited to 'Makefile.include.in')
-rw-r--r--Makefile.include.in1
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)