X-Git-Url: http://j8takagi.net/cgi-bin/gitweb.cgi?a=blobdiff_plain;ds=sidebyside;f=test%2Fintegration%2FMakefile;h=e44000289783097e39e501ddb1f1cd42d2684030;hb=295dbb72582804dbceaa8078c1abe574c9772002;hp=437eeb80c17bc1fef17f57f068a9fbb8ee2d8e37;hpb=959c309bcf37cbb534aaa04f27ccfdb6c9453396;p=YACASL2.git diff --git a/test/integration/Makefile b/test/integration/Makefile index 437eeb8..e440002 100644 --- a/test/integration/Makefile +++ b/test/integration/Makefile @@ -1,6 +1,7 @@ YACASL2DIR=../.. -TARGETS = casl2 comet2 dumpword -.PHONY: all -all:$(TARGETS) -%: $(YACASL2DIR)/% - $(MAKE) -C $@ +TESTGROUPS = casl2 comet2 dumpword +.PHONY: all clean +all: + @for target in $(TESTGROUPS); do $(MAKE) -sC $$target; done +clean: + @for target in $(TESTGROUPS); do $(MAKE) -sC $$target clean; done