Streamline makefile.

This commit is contained in:
Christopher RYU 2023-09-07 20:14:26 +09:00
parent 36ff501581
commit 17de358b95

View File

@ -1,8 +1,10 @@
all: bitsy.boot.bin
all: BITSY.BOOT\#ff2000
BITSY.BOOT\#ff2000: bitsy.boot.bin
cp bitsy.boot.bin BITSY.BOOT#ff2000
%.bin: %.s
ca65 --target apple2 -DPLUS_FIX -o $*.o $*.s
ca65 --target apple2 -o $*.o $*.s
ld65 --config apple2-asm.cfg -o $*.bin $*.o
clean: