prog8/examples/cx16/banking/Makefile
2024-11-03 21:52:04 +01:00

14 lines
366 B
Makefile

.PHONY: all clean zip run
all: PROGRAM.PRG
PROGRAM.PRG: library1.asm library2.asm program.p8
64tass --case-sensitive --ascii --long-branch library1.asm -o LIBRARY1.PRG
64tass --case-sensitive --ascii --long-branch library2.asm -o LIBRARY2.PRG
prog8c -target cx16 program.p8
mv program.prg PROGRAM.PRG
run: PROGRAM.PRG
x16emu -scale 2 -run -prg PROGRAM.PRG