42 lines
808 B
Makefile
Raw Normal View History

2023-10-28 23:51:26 -04:00
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 \
2023-10-28 23:51:26 -04:00
../zp.inc ../hardware.inc ../qload.inc \
audio/a_pboy.btc.zx02 \
2023-10-28 23:51:26 -04:00
graphics/mntscrl3.hgr.zx02
ca65 -o gorilla.o gorilla.s -l gorilla.lst
###
2023-10-29 00:59:25 -04:00
graphics/mntscrl3.hgr.zx02:
2023-10-28 23:51:26 -04:00
cd graphics && make
audio/a_pboy.btc.zx02:
cd audio && make
2023-10-28 23:51:26 -04:00
###
clean:
rm -f *~ *.o *.lst GORILLA
cd graphics && make clean
cd audio && make clean