aboutsummaryrefslogtreecommitdiffstats
path: root/atk16_projects/monitor/Makefile
blob: ad8013be333b794b742696206990994230af6524 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
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 $<