mirror of
https://github.com/deater/dos33fsprogs.git
synced 2025-01-06 06:30:36 +00:00
32 lines
753 B
Makefile
32 lines
753 B
Makefile
include ../../../Makefile.inc
|
|
|
|
ZX02 = ~/research/6502_compression/zx02.git/build/zx02
|
|
PNG_TO_HGR = ../../utils/hgr-utils/png2hgr
|
|
LINKER_SCRIPTS = ../../../linker_scripts
|
|
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
|
|
|
|
all: CLIFF
|
|
|
|
####
|
|
|
|
CLIFF: cliff.o
|
|
ld65 -o CLIFF cliff.o -C $(LINKER_SCRIPTS)/apple2_6000.inc
|
|
|
|
cliff.o: cliff.s ../zx02_optim.s \
|
|
hgr_copy.s hgr_partial_save.s \
|
|
cliff_graphics/cliff_base.hgr.zx02 \
|
|
zp.inc hardware.inc
|
|
ca65 -o cliff.o cliff.s -l cliff.lst
|
|
|
|
cliff_graphics/cliff_base.hgr.zx02:
|
|
cd cliff_graphics && make
|
|
|
|
####
|
|
|
|
clean:
|
|
rm -f *.lst *.o CLIFF
|
|
cd cliff_graphics && make clean
|