ProDOS_Snippits/Makefile

22 lines
769 B
Makefile
Raw Permalink Normal View History

2023-09-08 02:04:07 +00:00
all: prodos_snippits.po
2023-09-07 11:14:26 +00:00
prodos_snippits.po: bitsy.boot.bin setup.system.bin quit.system.bin bitsy.bye.bin
2023-09-08 02:11:46 +00:00
@ProDOS-Utilities -d prodos_snippits.po -c create \
2023-09-08 02:04:07 +00:00
-s 280 -v PRODOS.SNIPPITS
2023-09-08 02:11:46 +00:00
@ProDOS-Utilities -d prodos_snippits.po -c put \
2023-09-08 02:04:07 +00:00
-p BITSY.BOOT -i bitsy.boot.bin -t 0xFF -a 0x2000
2023-09-08 02:11:46 +00:00
@ProDOS-Utilities -d prodos_snippits.po -c put \
-p SETUP.SYSTEM -i setup.system.bin -t 0xFF -a 0x2000
2023-10-02 08:36:26 +00:00
@ProDOS-Utilities -d prodos_snippits.po -c put \
-p QUIT.SYSTEM -i quit.system.bin -t 0xFF -a 0x2000
@ProDOS-Utilities -d prodos_snippits.po -c put \
-p BITSY.BYE -i bitsy.bye.bin -t 0xFF -a 0x1000
2023-09-08 02:11:46 +00:00
@ProDOS-Utilities -c ls -d prodos_snippits.po
2023-09-06 22:17:42 +00:00
%.bin: %.s
2023-09-07 11:14:26 +00:00
ca65 --target apple2 -o $*.o $*.s
2023-09-06 22:17:42 +00:00
ld65 --config apple2-asm.cfg -o $*.bin $*.o
clean:
2023-09-08 02:04:07 +00:00
rm -f *.o *.bin *.po