summaryrefslogtreecommitdiff
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 fcf5c1a..72ab86c 100644
--- a/Makefile
+++ b/Makefile
@@ -1,7 +1,11 @@
-SUBDIRS := aoe2hd csgo_radar csgo_wh libghack h1z1
+SUBDIRS := aoe2hd csgo_radar csgo_wh h1z1
all: $(SUBDIRS)
+
$(SUBDIRS):
$(MAKE) -C $@
+clean:
+ for subdir in $(SUBDIRS); do $(MAKE) -C $$subdir clean; done
+
.PHONY: all $(SUBDIRS)