dos33fsprogs/pt3_lib/Makefile
Vince Weaver 73d9b710c7 pt3_lib: add directory with just the pt3 player
This will be less optimized than pt3_player but possibly
easier for other programs to use.
2019-06-07 15:18:51 -04:00

30 lines
605 B
Makefile

include ../Makefile.inc
DOS33 = ../dos33fs-utils/dos33
PNG2GR = ../gr-utils/png2gr
all: pt3_lib.dsk
$(DOS33):
cd ../dos33fs-utils && make
pt3_lib.dsk: PT3_TEST HELLO
cp empty.dsk pt3_lib.dsk
$(DOS33) -y pt3_lib.dsk SAVE A HELLO
$(DOS33) -y pt3_lib.dsk BSAVE -a 0x1000 PT3_TEST
HELLO: hello.bas
../asoft_basic-utils/tokenize_asoft < hello.bas > HELLO
#
PT3_TEST: pt3_test.o
ld65 -o PT3_TEST pt3_test.o -C ../linker_scripts/apple2_1000.inc
pt3_test.o: pt3_test.s pt3_lib.s interrupt_handler.s zp.inc
ca65 -o pt3_test.o pt3_test.s -l pt3_test.lst
#
clean:
rm -f *~ *.o *.lst PT3_TEST HELLO