aboutsummaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile6
1 files changed, 5 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 518e08c..5a95087 100644
--- a/Makefile
+++ b/Makefile
@@ -2,7 +2,11 @@ SUBDIRS = icebox icepack iceprog icemulti icepll icetime icebram
include config.mk
-all clean install uninstall:
+all: $(addsuffix .all,$(SUBDIRS))
+$(addsuffix .all,$(SUBDIRS)):
+ $(MAKE) -C $(basename $@) all
+
+clean install uninstall:
for dir in $(SUBDIRS); do \
$(MAKE) -C $$dir $@ || exit; \
done