11 lines
150 B
Makefile
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),$@))
|