summaryrefslogtreecommitdiff
path: root/Makefile
blob: 72ab86ccb861a6677f77626bd532ce3992672e71 (plain)
1
2
3
4
5
6
7
8
9
10
11
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)