X-Git-Url: http://j8takagi.net/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=test%2Fsystem%2FMakefile;h=1667d25c8096d73823f93649f6da63650811e187;hb=4425276f3b7d1191e3b5c2b0c4521115030dd279;hp=03a630e579af9a0d903aea11adc22f94d3f5dbb3;hpb=269dc2f6c836027e0be757cfcea7922292620390;p=YACASL2.git diff --git a/test/system/Makefile b/test/system/Makefile index 03a630e..1667d25 100644 --- a/test/system/Makefile +++ b/test/system/Makefile @@ -1,13 +1,22 @@ # 複数の子ディレクトリーでmakeを実行 -CMD = casl2 comet2 dumpword +CMD = casl2_opt casl2_cmd casl2_err comet2_smoke comet2_opt comet2_cmd comet2_err casl2rev dumpword comet2monitor 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,casl2_smoke $(CMD),$@; ) + clean: - @$(call make_dirs,$(CMD),$@; ) + @$(call make_dirs,casl2_smoke $(CMD),$@; )