mirror of
https://github.com/irmen/prog8.git
synced 2024-11-22 15:33:02 +00:00
11 lines
164 B
Makefile
11 lines
164 B
Makefile
.PHONY: clean run
|
|
|
|
run:
|
|
prog8c -target cx16 benchmark.p8
|
|
x16emu -run -prg benchmark.prg -warp
|
|
|
|
clean:
|
|
rm -f *.prg *.PRG *.asm *.vice-* *.BIN *.PAL *.zip *.7z
|
|
|
|
|