mirror of
https://github.com/deater/dos33fsprogs.git
synced 2025-02-09 03:31:05 +00:00
8b0b4c6291
this one is tricky as we only have room to load it in advance, to the language card, and hope it's still there later
42 lines
786 B
Makefile
42 lines
786 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 \
|
|
../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
|
|
|