2017-05-01 02:24:49 +00:00
|
|
|
include ../Makefile.inc
|
|
|
|
|
|
|
|
DOS33 = ../dos33fs-utils/dos33
|
|
|
|
PNG2GR = ../gr-utils/png2gr
|
2017-08-16 19:13:43 +00:00
|
|
|
PNG2RLE = ../gr-utils/png2rle
|
2017-05-01 02:24:49 +00:00
|
|
|
|
|
|
|
all: tfv.dsk
|
|
|
|
|
2017-08-23 17:09:52 +00:00
|
|
|
$(PNG2RLE):
|
|
|
|
cd ../gr-utils && make
|
|
|
|
|
|
|
|
$(DOS33):
|
|
|
|
cd ../dos33fs-utils && make
|
|
|
|
|
|
|
|
tfv.dsk: $(DOS33) TFV ED HIGHWIND.ED FIGHTING.ED
|
2017-05-12 18:29:21 +00:00
|
|
|
$(DOS33) -y tfv.dsk BSAVE -a 0x1000 TFV
|
2017-05-02 03:16:17 +00:00
|
|
|
$(DOS33) -y tfv.dsk BSAVE -a 0x900 ED
|
2017-06-25 04:00:16 +00:00
|
|
|
$(DOS33) -y tfv.dsk BSAVE -a 0x2000 HIGHWIND.ED
|
|
|
|
$(DOS33) -y tfv.dsk BSAVE -a 0x2000 FIGHTING.ED
|
2017-05-01 02:24:49 +00:00
|
|
|
|
2017-05-02 03:16:17 +00:00
|
|
|
ED: duet.o
|
|
|
|
ld65 -o ED duet.o -C ./apple2_900.inc
|
|
|
|
|
|
|
|
duet.o: duet.s
|
|
|
|
ca65 -o duet.o duet.s -l duet.lst
|
2017-05-01 02:24:49 +00:00
|
|
|
|
2017-08-16 19:13:43 +00:00
|
|
|
|
2017-08-23 17:09:52 +00:00
|
|
|
|
|
|
|
|
2017-08-16 19:13:43 +00:00
|
|
|
|
|
|
|
backgrounds.inc: $(PNG2RLE) \
|
|
|
|
title.png map.png \
|
|
|
|
landing.png harfco.png \
|
|
|
|
belair.png \
|
|
|
|
math_office.png video_hr.png \
|
|
|
|
collegep.png \
|
|
|
|
umcp.png \
|
|
|
|
dining.png metro.png talbot.png
|
|
|
|
$(PNG2RLE) asm title.png title_rle > backgrounds.inc
|
|
|
|
$(PNG2RLE) asm map.png map_rle >> backgrounds.inc
|
|
|
|
$(PNG2RLE) asm landing.png landing_rle >> backgrounds.inc
|
|
|
|
$(PNG2RLE) asm harfco.png harfco_rle >> backgrounds.inc
|
|
|
|
$(PNG2RLE) asm belair.png belair_rle >> backgrounds.inc
|
|
|
|
$(PNG2RLE) asm math_office.png math_office_rle >> backgrounds.inc
|
|
|
|
$(PNG2RLE) asm video_hr.png video_hr_rle >> backgrounds.inc
|
|
|
|
$(PNG2RLE) asm collegep.png collegep_rle >> backgrounds.inc
|
|
|
|
$(PNG2RLE) asm umcp.png umcp_rle >> backgrounds.inc
|
|
|
|
$(PNG2RLE) asm dining.png dining_rle >> backgrounds.inc
|
|
|
|
$(PNG2RLE) asm metro.png metro_rle >> backgrounds.inc
|
|
|
|
$(PNG2RLE) asm talbot.png talbot_rle >> backgrounds.inc
|
|
|
|
|
|
|
|
###
|
|
|
|
|
|
|
|
TFV: tfv.o
|
|
|
|
ld65 -o TFV tfv.o -C ./apple2_1000.inc
|
|
|
|
|
2017-08-23 17:09:52 +00:00
|
|
|
tfv.o: tfv.s tfv_flying.s tfv_opener.s tfv_title.s tfv_textentry.s tfv_utils.s tfv_backgrounds.inc tfv_zp.inc
|
2017-08-16 19:13:43 +00:00
|
|
|
ca65 -o tfv.o tfv.s -l tfv.lst
|
|
|
|
|
|
|
|
|
2017-05-01 02:24:49 +00:00
|
|
|
|
|
|
|
clean:
|
2017-05-02 03:16:17 +00:00
|
|
|
rm -f *~ TITLE.GR *.o *.lst ED
|
2017-05-12 18:29:21 +00:00
|
|
|
|