Vince Weaver 38a56a4686 second: finally got gorilla scroll working
this was much more of a pain than needed
2023-11-03 15:37:38 -04:00

42 lines
808 B
Makefile

include ../../../Makefile.inc
DOS33 = ../../../utils/dos33fs-utils/dos33
DOS33_RAW = ../../../utils/dos33fs-utils/dos33_raw
EMPTY_DISK = ../../../empty_disk/empty.dsk
TOKENIZE = ../../../utils/asoft_basic-utils/tokenize_asoft
LINKER_SCRIPTS = ../../../linker_scripts/
all: GORILLA
####
GORILLA: gorilla.o
ld65 -o GORILLA gorilla.o -C $(LINKER_SCRIPTS)/apple2_8000.inc
gorilla.o: gorilla.s \
../zx02_optim.s \
../hgr_copy_fast.s \
tv_effect.s horiz_scroll_simple.s \
../zp.inc ../hardware.inc ../qload.inc \
audio/a_pboy.btc.zx02 \
graphics/mntscrl3.hgr.zx02
ca65 -o gorilla.o gorilla.s -l gorilla.lst
###
graphics/mntscrl3.hgr.zx02:
cd graphics && make
audio/a_pboy.btc.zx02:
cd audio && make
###
clean:
rm -f *~ *.o *.lst GORILLA
cd graphics && make clean
cd audio && make clean