X-Git-Url: http://j8takagi.net/cgi-bin/gitweb.cgi?p=YACASL2.git;a=blobdiff_plain;f=test%2Fintegration%2FMakefile;h=38422a09f52ee5a5f52d48c8753a365c97af0e10;hp=b69657361fd49602c144ac96915450847036be76;hb=4fe8479d27f535a0ff44c9f6ce270249934e980f;hpb=ed26c70ece2ab7c16d20275fe5dbb471bfe5a0b8 diff --git a/test/integration/Makefile b/test/integration/Makefile index b696573..38422a0 100644 --- a/test/integration/Makefile +++ b/test/integration/Makefile @@ -1,6 +1,7 @@ YACASL2DIR=../.. -TARGETS = casl2 comet2 dumpword -.PHONY: all -all:$(TARGETS) -%: $(YACASL2DIR)/% - $(MAKE) -kC $@ +TESTGROUPS = casl2 comet2 dumpword +.PHONY: check clean +check: + @for target in $(TESTGROUPS); do $(MAKE) -sC $$target; done +clean: + @for target in $(TESTGROUPS); do $(MAKE) -sC $$target clean; done