projects
/
YACASL2.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
343664442e56b653220d995d89b099ab7df39767
[YACASL2.git]
/
test
/
system
/
Makefile
1
# 複数の子ディレクトリーでmakeを実行
2
CMD = casl2_smoke casl2_opt casl2_cmd casl2_err casl2_lib comet2_smoke comet2_opt comet2_cmd comet2_err comet2_lib disassemble dumpword
3
define make_dirs
4
$(foreach d,$1,$(MAKE) -sC $d $2)
5
endef
6
7
.PHONY: check clean
8
9
check:
10
@$(call make_dirs,$(CMD),$@; )
11
12
clean:
13
@$(call make_dirs,$(CMD),$@; )