Makefileの修正。cleanターゲットはすべて末尾にcleanがつくように
[YACASL2.git] / test / system / Makefile
index beda22c..03a630e 100644 (file)
@@ -1,5 +1,5 @@
 # 複数の子ディレクトリーでmakeを実行
-CMDS = casl2 comet2 dumpword
+CMD = casl2 comet2 dumpword
 define make_dirs
     $(foreach d,$1,$(MAKE) -sC $d $2)
 endef
@@ -7,7 +7,7 @@ endef
 .PHONY: check clean
 
 check:
-       @$(call make_dirs,$(CMDS),$@; )
+       @$(call make_dirs,$(CMD),$@; )
 
 clean:
-       @$(call make_dirs,$(CMDS),$@; )
+       @$(call make_dirs,$(CMD),$@; )