1
0
mirror of synced 2026-01-19 09:28:43 +00:00
2010-04-06 11:38:40 +00:00

11 lines
150 B
Makefile

SUBDIRS = basic diags
define makeone
echo "[ $(1) ]";
make -C $(1) $(2);
endef
all clean:
@$(foreach dir,$(SUBDIRS),$(call makeone,$(dir),$@))