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

bin:
	mkdir bin

tilemap.import.scm: 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