summaryrefslogtreecommitdiff
path: root/Makefile
blob: 363d1b8de4a061f382d2a75e10be66712b7a3184 (plain)
1
2
3
4
5
6
7
8
9
10
11
PARTS := maps/Human_Base.map \
         maps/p2_clockroom.map
OUT := maps/analmango

$(OUT).map: $(PARTS)
	mapcat $^ -o $@

clean:
	rm $(OUT)

.PHONY: clean