aboutsummaryrefslogtreecommitdiffstats
path: root/atk16_projects/monitor/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'atk16_projects/monitor/Makefile')
-rw-r--r--atk16_projects/monitor/Makefile16
1 files changed, 16 insertions, 0 deletions
diff --git a/atk16_projects/monitor/Makefile b/atk16_projects/monitor/Makefile
new file mode 100644
index 0000000..ad8013b
--- /dev/null
+++ b/atk16_projects/monitor/Makefile
@@ -0,0 +1,16 @@
+EMULATOR = atk16emu
+ASSEMBLER = atk16c
+PROJ = monitor
+
+out/$(PROJ).bin: $(PROJ).atk16
+ $(ASSEMBLER) $< -o out/$(PROJ).bin
+
+###
+
+@PHONY: run
+run: out/$(PROJ).bin
+ $(EMULATOR) $<
+
+@PHONY: debug
+debug: out/$(PROJ).bin
+ $(EMULATOR) -d $<