dos33fsprogs/vaporlock/doubledouble/Makefile

71 lines
1.8 KiB
Makefile
Raw Normal View History

2023-05-01 06:09:16 +00:00
include ../../Makefile.inc
DOS33 = ../../utils/dos33fs-utils/dos33
TOKENIZE = ../../utils/asoft_basic-utils/tokenize_asoft
LINKERSCRIPTS = ../../linker_scripts
EMPTYDISK = ../../empty_disk/empty.dsk
all: double.dsk
2023-05-13 06:03:43 +00:00
double.dsk: HELLO DOUBLE STATIC
2023-05-01 06:09:16 +00:00
cp $(EMPTYDISK) double.dsk
$(DOS33) -y double.dsk SAVE A HELLO
2023-05-05 21:12:43 +00:00
$(DOS33) -y double.dsk BSAVE -a 0x6000 DOUBLE
2023-05-13 06:03:43 +00:00
$(DOS33) -y double.dsk BSAVE -a 0x6000 STATIC
2023-05-01 06:09:16 +00:00
###
HELLO: hello.bas
$(TOKENIZE) < hello.bas > HELLO
###
DOUBLE: double.o
2023-05-05 21:12:43 +00:00
ld65 -o DOUBLE double.o -C $(LINKERSCRIPTS)/apple2_6000.inc
2023-05-01 06:09:16 +00:00
double.o: double.s \
2023-05-01 06:30:26 +00:00
zp.inc hardware.inc pt3_lib_mockingboard_detect.s \
2023-05-05 21:12:43 +00:00
pt3_lib_mockingboard_setup.s pt3_lib_detect_model.s \
2023-05-11 04:33:10 +00:00
zx02_optim.s copy_400.s gr_offsets.s vblank.s \
text_print.s title.s gr_fast_clear.s \
2023-05-11 04:42:40 +00:00
interrupt_handler.s pt3_lib_mockingboard_patch.s \
2023-05-13 04:08:38 +00:00
wait_a_bit.s wait.s pt3_lib_init.s \
2023-05-13 04:52:17 +00:00
music/fighting.zx02 \
2023-05-15 05:18:24 +00:00
effect_static.s \
effect_dhgr_dgr.s \
effect_dhgr_hgr.s \
effect_midline.s \
2023-05-14 17:48:17 +00:00
table/sin.table \
2023-05-05 21:12:43 +00:00
graphics/sworg_hgr.hgr.zx02 \
graphics/sworg_dhgr.aux.zx02 \
graphics/sworg_dhgr.bin.zx02 \
graphics/sworg_dgr.main.zx02 \
graphics/sworg_dgr.aux.zx02
2023-05-01 06:09:16 +00:00
ca65 -o double.o double.s -l double.lst
###
2023-05-13 06:03:43 +00:00
STATIC: static.o
ld65 -o STATIC static.o -C $(LINKERSCRIPTS)/apple2_6000.inc
static.o: static.s \
zp.inc hardware.inc pt3_lib_mockingboard_detect.s \
pt3_lib_mockingboard_setup.s pt3_lib_detect_model.s \
zx02_optim.s copy_400.s gr_offsets.s vblank.s \
text_print.s title.s gr_fast_clear.s \
interrupt_handler.s pt3_lib_mockingboard_patch.s \
wait_a_bit.s wait.s pt3_lib_init.s \
music/fighting.zx02 \
graphics/sworg_hgr.hgr.zx02 \
graphics/sworg_dhgr.aux.zx02 \
graphics/sworg_dhgr.bin.zx02 \
graphics/sworg_dgr.main.zx02 \
graphics/sworg_dgr.aux.zx02
ca65 -o static.o static.s -l static.lst
###
2023-05-01 06:09:16 +00:00
clean:
2023-05-13 06:03:43 +00:00
rm -f *~ *.o *.lst HELLO DOUBLE STATIC