44 lines
847 B
Makefile
Raw Normal View History

2024-06-05 00:56:26 -04:00
include ../../../Makefile.inc
ZX02 = ~/research/6502_compression/zx02.git/build/zx02
PNG_TO_HGR = ../../../utils/hgr-utils/png2hgr
LINKER_SCRIPTS = ../../../linker_scripts
all: FISH
####
FISH: fish.o
2024-06-05 17:01:31 -04:00
ld65 -o FISH fish.o -C $(LINKER_SCRIPTS)/apple2_4000.inc
2024-06-05 00:56:26 -04:00
fish.o: fish.s zx02_optim.s \
2024-06-05 17:01:31 -04:00
graphics/fish_title.hgr.zx02 \
graphics/fish_bg.hgr.zx02 \
2024-06-08 00:59:56 -04:00
graphics/boat_sprites.inc \
graphics/strongbad_sprites.inc \
2024-06-10 16:36:31 -04:00
graphics/fish_sprites.inc \
2024-06-05 17:01:31 -04:00
sounds/fish.btc.zx02 \
sounds/get_in_boat.btc.zx02 \
hgr_sprite.s \
hgr_sprite_mask.s \
2024-06-05 17:01:31 -04:00
hgr_sprite_big.s \
audio.s play_sounds.s \
2024-06-05 00:56:26 -04:00
zp.inc hardware.inc
ca65 -o fish.o fish.s -l fish.lst
#graphics/sb_sprites.inc:
# cd fish_graphics && make
#graphics/sb_title.hgr.zx02:
# cd fish_graphics && make
#sound/fish.btc.zx02:
# cd fish_sound && make
clean:
rm -f *.lst *.o FISH