mirror of
https://github.com/irmen/prog8.git
synced 2024-11-26 11:49:22 +00:00
14 lines
366 B
Makefile
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
|
||
|
|