]> j8takagi.net git repositories - yacasl2.git/commitdiff
make valgrindでcasl2_smokeが二重になっていたのを修正
authorj8takagi <j8takagi@nifty.com>
Wed, 8 Jul 2026 13:41:40 +0000 (22:41 +0900)
committerj8takagi <j8takagi@nifty.com>
Wed, 8 Jul 2026 13:41:40 +0000 (22:41 +0900)
test/system/Makefile

index 6084f99bc67e9ac28d8b0ae82bf4cd8debfb9865..e7146b5143354a3df52e8e1c029c4cd91d72a8b0 100644 (file)
@@ -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),$@; )