summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorToni Uhlig <matzeton@googlemail.com>2020-03-25 20:48:19 +0100
committerToni Uhlig <matzeton@googlemail.com>2020-03-25 20:48:19 +0100
commit1647f4b4f9ebef8b938222b1f48d9a15cc262e97 (patch)
tree5a62fbb1eae6be5dd47347cc1fdd1630c966f646 /Makefile
parent3c098b80155a4b61134dc3b3de5bdbc08855fc2f (diff)
clean-up the mess
Signed-off-by: Toni Uhlig <matzeton@googlemail.com>
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)