aboutsummaryrefslogtreecommitdiff
path: root/game/Makefile
diff options
context:
space:
mode:
authorJuan J. Martinez <jjm@usebox.net>2023-05-09 22:43:33 +0100
committerJuan J. Martinez <jjm@usebox.net>2023-05-09 22:43:33 +0100
commitd532317c011b9e5653241d50b961ee8caa710144 (patch)
treecb9fb308b9a92aa667ee626c8474b3e1e9f6f083 /game/Makefile
parent741561787cc2df547d5f520a142beaff234c488e (diff)
downloadtr8vm-d532317c011b9e5653241d50b961ee8caa710144.tar.gz
tr8vm-d532317c011b9e5653241d50b961ee8caa710144.zip
Playground
Potential example game.
Diffstat (limited to 'game/Makefile')
-rw-r--r--game/Makefile15
1 files changed, 15 insertions, 0 deletions
diff --git a/game/Makefile b/game/Makefile
new file mode 100644
index 0000000..9014844
--- /dev/null
+++ b/game/Makefile
@@ -0,0 +1,15 @@
+
+BIN := game.tr8
+SRCS := $(wildcard *.asm) $(wildcard assets/*.png)
+
+game.tr8: $(SRCS)
+ ../tr8as main.asm $(BIN)
+
+run: $(BIN)
+ ../tr8vm $<
+
+clean:
+ rm -f $(BIN)
+
+.PHONY: clean run
+