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

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

clean:
	rm $(OUT)

.PHONY: clean