2021-01-06 04:09:35 +00:00
|
|
|
include ../../../Makefile.inc
|
2017-12-05 21:16:38 +00:00
|
|
|
|
2021-01-06 04:09:35 +00:00
|
|
|
DOS33 = ../../../utils/dos33fs-utils/dos33
|
|
|
|
PNG2GR = ../../../utils/gr-utils/png2gr
|
|
|
|
PNG2RLE = ../../../utils/gr-utils/png2rle
|
|
|
|
TOKENIZE = ../../../utils/asoft_basic-utils/tokenize_asoft
|
2017-12-05 21:16:38 +00:00
|
|
|
|
|
|
|
all: dlowres_mode7.dsk
|
|
|
|
|
|
|
|
$(DOS33):
|
2021-01-06 04:09:35 +00:00
|
|
|
cd ../../../utils/dos33fs-utils && make
|
2017-12-05 21:16:38 +00:00
|
|
|
|
|
|
|
dlowres_mode7.dsk: $(DOS33) DLOWRES_MODE7
|
|
|
|
$(DOS33) -y dlowres_mode7.dsk BSAVE -a 0x1000 DLOWRES_MODE7
|
|
|
|
|
|
|
|
###
|
|
|
|
|
|
|
|
DLOWRES_MODE7: dlowres_mode7.o
|
|
|
|
ld65 -o DLOWRES_MODE7 dlowres_mode7.o -C ./apple2_1000.inc
|
|
|
|
|
|
|
|
dlowres_mode7.o: dlowres_mode7.s \
|
|
|
|
dlowres_flying.s fast_multiply.s \
|
2017-12-06 21:39:40 +00:00
|
|
|
dlowres_utils.s dlowres_zp.inc dlowres_sprites.inc
|
2017-12-05 21:16:38 +00:00
|
|
|
ca65 -o dlowres_mode7.o dlowres_mode7.s -l dlowres_mode7.lst
|
|
|
|
|
|
|
|
clean:
|
2021-01-06 04:09:35 +00:00
|
|
|
rm -f *~ *.o DLOWRES_MODE7 *.lst blah
|
2017-12-05 21:16:38 +00:00
|
|
|
|