mirror of
https://github.com/livingcomputermuseum/cpus-pdp8.git
synced 2026-01-22 18:51:27 +00:00
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),$@))
|