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

bin:
	mkdir bin

tilemap.o: bin src/tilemap.scm
	csc -c -J src/tilemap.scm -unit tilemap -o bin/tilemap.o

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