43 lines
840 B
Makefile
Raw Normal View History

2023-10-28 17:28:52 -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: SPHERES
####
SPHERES: spheres.o
ld65 -o SPHERES spheres.o -C $(LINKER_SCRIPTS)/apple2_8000.inc
spheres.o: spheres.s \
../zx02_optim.s \
../hgr_copy_fast.s \
2023-11-01 23:51:57 -04:00
../audio.s \
2023-10-28 17:28:52 -04:00
../zp.inc ../hardware.inc ../qload.inc \
2023-11-02 01:20:02 -04:00
audio/transmission.btc.zx02 \
2023-11-02 20:09:10 -04:00
graphics/spheres.gr.zx02
2023-10-28 17:28:52 -04:00
ca65 -o spheres.o spheres.s -l spheres.lst
###
2023-10-29 00:59:25 -04:00
graphics/spheres.hgr.zx02:
2023-10-28 17:28:52 -04:00
cd graphics && make
2023-11-02 20:09:10 -04:00
graphics/spheres.gr.zx02:
cd graphics && make
2023-11-02 01:20:02 -04:00
audio/transmission.btc.zx02:
cd audio && make
2023-10-28 17:28:52 -04:00
###
clean:
rm -f *~ *.o *.lst SPHERES
cd graphics && make clean
2023-11-02 01:20:02 -04:00
cd audio && make clean