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
|
|
|
|
2017-11-17 06:11:06 +00:00
|
|
|
tfv_backgrounds.inc: $(PNG2RLE) \
|
2017-08-16 19:13:43 +00:00
|
|
|
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
|
2017-11-17 06:11:06 +00:00
|
|
|
$(PNG2RLE) asm title.png title_rle > tfv_backgrounds.inc
|
|
|
|
$(PNG2RLE) asm map.png map_rle >> tfv_backgrounds.inc
|
|
|
|
$(PNG2RLE) asm landing.png landing_rle >> tfv_backgrounds.inc
|
|
|
|
$(PNG2RLE) asm harfco.png harfco_rle >> tfv_backgrounds.inc
|
|
|
|
$(PNG2RLE) asm belair.png belair_rle >> tfv_backgrounds.inc
|
|
|
|
$(PNG2RLE) asm math_office.png math_office_rle >> tfv_backgrounds.inc
|
|
|
|
$(PNG2RLE) asm video_hr.png video_hr_rle >> tfv_backgrounds.inc
|
|
|
|
$(PNG2RLE) asm collegep.png collegep_rle >> tfv_backgrounds.inc
|
|
|
|
$(PNG2RLE) asm umcp.png umcp_rle >> tfv_backgrounds.inc
|
|
|
|
$(PNG2RLE) asm dining.png dining_rle >> tfv_backgrounds.inc
|
|
|
|
$(PNG2RLE) asm metro.png metro_rle >> tfv_backgrounds.inc
|
|
|
|
$(PNG2RLE) asm talbot.png talbot_rle >> tfv_backgrounds.inc
|
2017-08-16 19:13:43 +00:00
|
|
|
|
|
|
|
###
|
|
|
|
|
|
|
|
TFV: tfv.o
|
|
|
|
ld65 -o TFV tfv.o -C ./apple2_1000.inc
|
|
|
|
|
2017-08-23 17:25:44 +00:00
|
|
|
tfv.o: tfv.s \
|
2017-12-16 19:17:33 +00:00
|
|
|
tfv_flying.s tfv_info.s tfv_opener.s tfv_title.s \
|
2017-12-16 19:11:46 +00:00
|
|
|
tfv_textentry.s tfv_worldmap.s \
|
|
|
|
tfv_backgrounds.inc tfv_sprites.inc tfv_zp.inc \
|
2017-12-16 19:17:33 +00:00
|
|
|
../asm_routines/multiply_fast.s \
|
2017-12-16 19:11:46 +00:00
|
|
|
../asm_routines/hlin_clearscreen.s \
|
|
|
|
../asm_routines/pageflip.s \
|
|
|
|
../asm_routines/gr_setpage.s \
|
|
|
|
../asm_routines/keypress.s \
|
|
|
|
../asm_routines/gr_putsprite.s \
|
|
|
|
../asm_routines/text_print.s \
|
|
|
|
../asm_routines/memset.s \
|
|
|
|
../asm_routines/gr_vlin.s \
|
|
|
|
../asm_routines/gr_copy.s \
|
|
|
|
../asm_routines/gr_unrle.s
|
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
|
|
|
|