X-Git-Url: http://j8takagi.net/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=test%2Fsystem%2FMakefile;h=fe87d964269cd2a5e545d831ac4598afc88e5db2;hb=6186b07659277c3dd6745a8991bd00f77df39675;hp=3d0fc307d35c860870870b4984a8b27e57b07876;hpb=20134ec3ebf911ef241284c6bd9145c04a75c6ca;p=YACASL2.git diff --git a/test/system/Makefile b/test/system/Makefile index 3d0fc30..fe87d96 100644 --- a/test/system/Makefile +++ b/test/system/Makefile @@ -4,10 +4,19 @@ define make_dirs $(foreach d,$1,$(MAKE) -sC $d $2) endef -.PHONY: check clean +.PHONY: check smoke valgrind clean check: @$(call make_dirs,$(CMD),$@; ) +smoke: + $(MAKE) -sC casl2_smoke check + +smoke-valgrind: + $(MAKE) -sC casl2_smoke valgrind + +valgrind: + @$(call make_dirs,$(CMD),$@; ) + clean: @$(call make_dirs,$(CMD),$@; )