mirror of
https://github.com/deater/dos33fsprogs.git
synced 2024-10-31 10:13:35 +00:00
76 lines
1.6 KiB
Makefile
76 lines
1.6 KiB
Makefile
include ../Makefile.inc
|
|
|
|
DOS33 = ../dos33fs-utils/dos33
|
|
B2D = ../bmp2dhr/b2d
|
|
PNG_TO_40x48D = ../gr-utils/png_to_40x48d
|
|
|
|
all: xmas2019.dsk sine_table
|
|
|
|
xmas2019.dsk: SNOW TREE XMAS2019 HELLO
|
|
cp empty.dsk xmas2019.dsk
|
|
$(DOS33) -y xmas2019.dsk BSAVE -a 0x1000 XMAS2019
|
|
$(DOS33) -y xmas2019.dsk BSAVE -a 0x1000 SNOW
|
|
$(DOS33) -y xmas2019.dsk BSAVE -a 0x1000 TREE
|
|
$(DOS33) -y xmas2019.dsk SAVE A HELLO
|
|
|
|
####
|
|
|
|
TREE: tree.o
|
|
ld65 -o TREE tree.o -C ../linker_scripts/apple2_1000.inc
|
|
|
|
tree.o: tree.s
|
|
#gr_copy.s random16.s fw.s hgr.s delay_a.s \
|
|
# vapor_lock.s gr_hline.s state_machine.s move_letters.s \
|
|
# background_final.inc
|
|
ca65 -o tree.o tree.s -l tree.lst
|
|
|
|
####
|
|
|
|
SNOW: snow.o
|
|
ld65 -o SNOW snow.o -C ../linker_scripts/apple2_1000.inc
|
|
|
|
snow.o: snow.s
|
|
#gr_copy.s random16.s fw.s hgr.s delay_a.s \
|
|
# vapor_lock.s gr_hline.s state_machine.s move_letters.s \
|
|
# background_final.inc
|
|
ca65 -o snow.o snow.s -l snow.lst
|
|
|
|
####
|
|
|
|
XMAS2019: xmas2019.o
|
|
ld65 -o XMAS2019 xmas2019.o -C ../linker_scripts/apple2_1000.inc
|
|
|
|
xmas2019.o: xmas2019.s \
|
|
delay_a.s vapor_lock.s
|
|
#gr_hline.s state_machine.s move_letters.s
|
|
ca65 -o xmas2019.o xmas2019.s -l xmas2019.lst
|
|
|
|
|
|
|
|
#background_final.inc: background_final.png
|
|
# $(PNG_TO_40x48D) asm background_final.png bg_final > background_final.inc
|
|
|
|
|
|
####
|
|
|
|
FIREWORKS.BAS: fireworks.bas
|
|
../asoft_basic-utils/tokenize_asoft < fireworks.bas > FIREWORKS.BAS
|
|
|
|
####
|
|
|
|
HELLO: hello.bas
|
|
../asoft_basic-utils/tokenize_asoft < hello.bas > HELLO
|
|
|
|
####
|
|
|
|
sine_table: sine_table.o
|
|
$(CC) -o sine_table sine_table.o -lm
|
|
|
|
sine_table.o: sine_table.c
|
|
$(CC) -c sine_table.c
|
|
|
|
####
|
|
|
|
clean:
|
|
rm -f *~ *.o *.lst FIREWORKS.BAS
|