mirror of
https://github.com/deater/dos33fsprogs.git
synced 2025-02-21 07:29:18 +00:00
32 lines
489 B
Makefile
32 lines
489 B
Makefile
include ../../../Makefile.inc
|
|
|
|
LINKER_SCRIPTS = ../../../linker_scripts/
|
|
|
|
all: ATRUS
|
|
|
|
###
|
|
|
|
ATRUS: atrus.o
|
|
ld65 -o ATRUS atrus.o -C $(LINKER_SCRIPTS)/apple2_8000.inc
|
|
|
|
atrus.o: atrus.s \
|
|
plasma.s do_plasma.s init_plasma.s \
|
|
../zp.inc ../hardware.inc \
|
|
graphics/atrus03_iipix.hgr.zx02 \
|
|
graphics/atrus10_iipix.hgr.zx02 \
|
|
graphics/atrus11_iipix.hgr.zx02
|
|
ca65 -o atrus.o atrus.s -l atrus.lst
|
|
|
|
|
|
###
|
|
|
|
graphics/tree01.gr.zx02:
|
|
cd graphics && make
|
|
|
|
###
|
|
|
|
|
|
clean:
|
|
rm -f *~ *.o *.lst ATRUS
|
|
|