mirror of
https://github.com/deater/dos33fsprogs.git
synced 2025-01-08 19:33:03 +00:00
33 lines
737 B
Makefile
33 lines
737 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: INTRO
|
|
|
|
####
|
|
|
|
INTRO: intro.o
|
|
ld65 -o INTRO intro.o -C $(LINKER_SCRIPTS)/apple2_8000.inc
|
|
|
|
intro.o: intro.s ../zx02_optim.s \
|
|
graphics/igl.hgr.zx02 \
|
|
graphics/igr.hgr.zx02 \
|
|
graphics/fc_sr_logo.hgr.zx02 \
|
|
graphics/ship_sprites.hgr.zx02 \
|
|
horiz_scroll.s hgr_partial.s \
|
|
../zp.inc ../hardware.inc ../qload.inc
|
|
ca65 -o intro.o intro.s -l intro.lst
|
|
|
|
###
|
|
|
|
graphics/igl.hgr.zx02:
|
|
cd graphics && make
|
|
|
|
clean:
|
|
rm -f *~ *.o *.lst INTRO
|
|
cd graphics && make clean
|