diff options
Diffstat (limited to 'atk16_projects/monitor_proto/Makefile')
| -rw-r--r-- | atk16_projects/monitor_proto/Makefile | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/atk16_projects/monitor_proto/Makefile b/atk16_projects/monitor_proto/Makefile new file mode 100644 index 0000000..0ef6d33 --- /dev/null +++ b/atk16_projects/monitor_proto/Makefile @@ -0,0 +1,16 @@ +EMULATOR = atk16emu +ASSEMBLER = atk16c +PROJ = monitor_proto + +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 $< |
