diff options
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 6 |
1 files changed, 5 insertions, 1 deletions
@@ -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) |