X-Git-Url: http://j8takagi.net/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=test%2Fsystem%2FMakefile;h=26c5f55e97d659bd8e96b19684ac85b7bffc2dae;hb=4f40cdb2401c9db34c3bb300a13cb93a48a9bfba;hp=74f8a4ac65010d2ad2eb04dc121c9a58712d20be;hpb=c0dfd8c48c50bf77ad064f02ecfb01b18d64c7f1;p=YACASL2.git diff --git a/test/system/Makefile b/test/system/Makefile index 74f8a4a..26c5f55 100644 --- a/test/system/Makefile +++ b/test/system/Makefile @@ -1,16 +1,22 @@ # 複数の子ディレクトリーでmakeを実行 -CMD = casl2_smoke casl2_opt casl2_cmd casl2_err comet2_smoke comet2_opt comet2_cmd comet2_err casl2rev dumpword +CMD = casl2_opt casl2_cmd casl2_err comet2_smoke comet2_opt comet2_cmd comet2_err casl2rev dumpword define make_dirs $(foreach d,$1,$(MAKE) -sC $d $2) endef -.PHONY: check valgrind 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),$@; ) + @$(call make_dirs,casl2_smoke $(CMD),$@; ) clean: - @$(call make_dirs,$(CMD),$@; ) + @$(call make_dirs,casl2_smoke $(CMD),$@; )