From: j8takagi Date: Wed, 8 Jul 2026 13:41:40 +0000 (+0900) Subject: make valgrindでcasl2_smokeが二重になっていたのを修正 X-Git-Tag: v0.6p19~4 X-Git-Url: https://www.j8takagi.net/gitweb?a=commitdiff_plain;h=da9df828770aaf22705e0596854904f3f2732136;p=yacasl2.git make valgrindでcasl2_smokeが二重になっていたのを修正 --- diff --git a/test/system/Makefile b/test/system/Makefile index 6084f99..e7146b5 100644 --- a/test/system/Makefile +++ b/test/system/Makefile @@ -1,10 +1,11 @@ + # 複数の子ディレクトリーでmakeを実行 CMD = casl2_smoke casl2_opt casl2_cmd casl2_err comet2_smoke comet2_opt comet2_cmd comet2_err dumpword casl2rev comet2monitor define make_dirs $(foreach d,$1,$(MAKE) -sC $d $2) endef -.PHONY: check smoke valgrind clean +.PHONY: check smoke smoke-vlgrind valgrind clean check: @$(call make_dirs,$(CMD),$@; ) @@ -16,7 +17,7 @@ smoke-valgrind: $(MAKE) -sC casl2_smoke valgrind valgrind: - @$(call make_dirs,casl2_smoke $(CMD),$@; ) + @$(call make_dirs,$(CMD),$@; ) clean: - @$(call make_dirs,casl2_smoke $(CMD),$@; ) + @$(call make_dirs,$(CMD),$@; )