mirror of
https://github.com/deater/dos33fsprogs.git
synced 2025-01-23 11:33:07 +00:00
38a56a4686
this was much more of a pain than needed
42 lines
808 B
Makefile
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
|
|
|