mirror of
https://github.com/deater/dos33fsprogs.git
synced 2025-01-08 19:33:03 +00:00
35 lines
768 B
Makefile
35 lines
768 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: CREDITS
|
|
|
|
####
|
|
|
|
CREDITS: credits.o
|
|
ld65 -o CREDITS credits.o -C $(LINKER_SCRIPTS)/apple2_8000.inc
|
|
|
|
credits.o: credits.s vertical_scroll.s ../zx02_optim.s \
|
|
thumbnail_credits.s \
|
|
horiz_scroll_simple.s \
|
|
font_4am_1x8.s font_4am_1x10.s \
|
|
graphics/summary1_invert.hgr.zx02 \
|
|
../zp.inc ../hardware.inc ../qload.inc
|
|
ca65 -o credits.o credits.s -l credits.lst
|
|
|
|
###
|
|
|
|
graphics/summary1_invert.hgr.zx02:
|
|
cd graphics && make
|
|
|
|
###
|
|
|
|
clean:
|
|
rm -f *~ *.o *.lst CREDITS
|
|
cd graphics && make clean
|
|
|