mirror of
https://github.com/deater/dos33fsprogs.git
synced 2024-11-19 12:32:35 +00:00
63 lines
1.4 KiB
Makefile
63 lines
1.4 KiB
Makefile
include ../Makefile.inc
|
|
|
|
DOS33 = ../dos33fs-utils/dos33
|
|
PNG_TO_40x96 = ../gr-utils/png_to_40x96
|
|
PNG_TO_40x48D = ../gr-utils/png_to_40x48d
|
|
PNG2RLE = ../gr-utils/png2rle
|
|
B2D = ../bmp2dhr/b2d
|
|
|
|
all: mist.dsk
|
|
|
|
mist.dsk: HELLO LOADER MIST MIST_TITLE
|
|
cp empty.dsk mist.dsk
|
|
$(DOS33) -y mist.dsk SAVE A HELLO
|
|
$(DOS33) -y mist.dsk BSAVE -a 0x800 LOADER
|
|
$(DOS33) -y mist.dsk BSAVE -a 0x1000 MIST
|
|
$(DOS33) -y mist.dsk BSAVE -a 0x4000 MIST_TITLE
|
|
# $(DOS33) -y mist.dsk BSAVE -a 0xa000 MIST_TITLE.LZ4
|
|
# $(DOS33) -y mist.dsk BSAVE -a 0x4000 STEPS_HGRC.BIN
|
|
|
|
###
|
|
|
|
LOADER: loader.o
|
|
ld65 -o LOADER loader.o -C ../linker_scripts/apple2_800.inc
|
|
|
|
loader.o: loader.s
|
|
ca65 -o loader.o loader.s -l loader.lst
|
|
|
|
|
|
###
|
|
|
|
HELLO: hello.bas
|
|
../asoft_basic-utils/tokenize_asoft < hello.bas > HELLO
|
|
|
|
####
|
|
|
|
MIST_TITLE: mist_title.o
|
|
ld65 -o MIST_TITLE mist_title.o -C ../linker_scripts/apple2_4000.inc
|
|
|
|
mist_title.o: mist_title.s zp.inc hardware.inc \
|
|
graphics_title/MIST_TITLE.LZ4
|
|
ca65 -o mist_title.o mist_title.s -l mist_title.lst
|
|
|
|
####
|
|
|
|
MIST: mist.o
|
|
ld65 -o MIST mist.o -C ../linker_scripts/apple2_1000.inc
|
|
|
|
mist.o: mist.s zp.inc hardware.inc \
|
|
graphics_island/mist_graphics.inc \
|
|
gr_copy.s audio.s text_print.s decompress_fast_v2.s
|
|
ca65 -o mist.o mist.s -l mist.lst
|
|
|
|
####
|
|
|
|
graphics_island/mist_graphics.inc:
|
|
cd graphics_island && make
|
|
|
|
|
|
####
|
|
|
|
clean:
|
|
rm -f *~ *.o *.lst HELLO LOADER MIST MIST_TITLE
|