aboutsummaryrefslogtreecommitdiff
path: root/Makefile
blob: ef91e97ffb14739937bb218135c6dd9ec123c323 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
bin/game: bin tilemap.import.scm
	csc -o bin/game src/game.scm

bin:
	mkdir bin

tilemap.import.scm: bin src/tilemap.scm
	csc -c -o bin/tilemap.o -j tilemap src/tilemap.scm

.PHONY:
clean:
	rm -rf bin
	rm -f *.import.scm game