aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index 40e2a0e..116aa6a 100644
--- a/Makefile
+++ b/Makefile
@@ -1,10 +1,10 @@
-bin/game: bin tilemap.import.scm
+bin/game: bin bin/tilemap.o
csc -o bin/game bin/tilemap.o -uses tilemap src/game.scm
bin:
mkdir bin
-tilemap.import.scm: bin src/tilemap.scm
+tilemap.o: bin src/tilemap.scm
csc -c -J src/tilemap.scm -unit tilemap -o bin/tilemap.o
.PHONY: