X-Git-Url: http://j8takagi.net/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=test%2Fsystem%2FMakefile;h=03a630e579af9a0d903aea11adc22f94d3f5dbb3;hb=72fbc3e81d19266021562a787292a07054822e9d;hp=1340f45dca705ea4e8a8cb1eb41b6b6a05def7de;hpb=55d1da968d999e33238da299f933c70d95bcc66c;p=YACASL2.git diff --git a/test/system/Makefile b/test/system/Makefile index 1340f45..03a630e 100644 --- a/test/system/Makefile +++ b/test/system/Makefile @@ -1,11 +1,13 @@ # 複数の子ディレクトリーでmakeを実行 -CMDS = casl2 comet2 dumpword +CMD = casl2 comet2 dumpword define make_dirs $(foreach d,$1,$(MAKE) -sC $d $2) endef +.PHONY: check clean + check: - @$(call make_dirs,$(CMDS),$@; ) + @$(call make_dirs,$(CMD),$@; ) clean: - @$(call make_dirs,$(CMDS),$@; ) + @$(call make_dirs,$(CMD),$@; )