mirror of
https://github.com/deater/dos33fsprogs.git
synced 2024-11-04 20:06:09 +00:00
41 lines
835 B
Makefile
41 lines
835 B
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: dsr_shape.dsk
|
|
|
|
dsr_shape.dsk: HELLO DSRSHAPE
|
|
cp empty.dsk dsr_shape.dsk
|
|
$(DOS33) -y dsr_shape.dsk SAVE A HELLO
|
|
# $(DOS33) -y dsr_shape.dsk SAVE A DSR.BAS
|
|
# $(DOS33) -y dsr_shape.dsk BSAVE -a 0x1000 DSR
|
|
$(DOS33) -y dsr_shape.dsk BSAVE -a 0x1000 DSRSHAPE
|
|
|
|
|
|
DSRSHAPE: dsr_shape.o
|
|
ld65 -o DSRSHAPE dsr_shape.o -C ../linker_scripts/apple2_1000.inc
|
|
|
|
dsr_shape.o: dsr_shape.s
|
|
ca65 -o dsr_shape.o dsr_shape.s -l dsr_shape.lst
|
|
|
|
###
|
|
|
|
HELLO: hello.bas
|
|
../asoft_basic-utils/tokenize_asoft < hello.bas > HELLO
|
|
|
|
###
|
|
|
|
DSR.BAS: dsr.bas
|
|
../asoft_basic-utils/tokenize_asoft < dsr.bas > DSR.BAS
|
|
|
|
####
|
|
|
|
clean:
|
|
rm -f *~ *.o *.lst HELLO DSR DSRSHAPE
|
|
|
|
|