aboutsummaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile6
1 files changed, 6 insertions, 0 deletions
diff --git a/Makefile b/Makefile
index 5a6fc63..b82c77b 100644
--- a/Makefile
+++ b/Makefile
@@ -9,5 +9,11 @@ test: TARG=test
$(SUBDIRS): force
@ $(MAKE) -C $@ $(TARG)
+.PHONY: clean
+clean:
+ for dir in $(SUBDIRS); do \
+ $(MAKE) clean -C $$dir; \
+ done
+
.PHONY: force
force :;