mirror of
https://github.com/deater/dos33fsprogs.git
synced 2025-03-05 11:29:37 +00:00
35 lines
666 B
Makefile
35 lines
666 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: CHESS
|
|
|
|
####
|
|
|
|
CHESS: chess.o
|
|
ld65 -o CHESS chess.o -C $(LINKER_SCRIPTS)/apple2_8000.inc
|
|
|
|
chess.o: chess.s \
|
|
../zx02_optim.s \
|
|
../hgr_copy_fast.s \
|
|
../zp.inc ../hardware.inc ../qload.inc \
|
|
graphics/chess_object2.hgr.zx02
|
|
ca65 -o chess.o chess.s -l chess.lst
|
|
|
|
###
|
|
|
|
graphics/chess_object2.hgr.zx02:
|
|
cd graphics && make
|
|
|
|
###
|
|
|
|
|
|
clean:
|
|
rm -f *~ *.o *.lst CHESS
|
|
cd graphics && make clean
|