X-Git-Url: http://j8takagi.net/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=test%2Fintegration%2FMakefile;h=e44000289783097e39e501ddb1f1cd42d2684030;hb=fda1563ea37180835e0b9c6e7a9c7ae607895446;hp=2413812981b3b453fa11681898aaeed95fec7faa;hpb=350188e12a316928e5b2d8473f580528b2780d8b;p=YACASL2.git diff --git a/test/integration/Makefile b/test/integration/Makefile index 2413812..e440002 100644 --- a/test/integration/Makefile +++ b/test/integration/Makefile @@ -1,6 +1,7 @@ -TESTGROUPS = `ls | grep "^[^A-Z].*"` -.PHONY: all +YACASL2DIR=../.. +TESTGROUPS = casl2 comet2 dumpword +.PHONY: all clean all: - @for target in $(TESTGROUPS); do \ - $(MAKE) -C $$target; \ - done + @for target in $(TESTGROUPS); do $(MAKE) -sC $$target; done +clean: + @for target in $(TESTGROUPS); do $(MAKE) -sC $$target clean; done