dos33fsprogs/xmas_2019/Makefile

64 lines
1.3 KiB
Makefile
Raw Normal View History

2019-12-09 01:34:57 +00:00
include ../Makefile.inc
DOS33 = ../dos33fs-utils/dos33
B2D = ../bmp2dhr/b2d
PNG_TO_40x48D = ../gr-utils/png_to_40x48d
2019-12-16 05:52:07 +00:00
all: xmas2019.dsk sine_table
2019-12-09 01:34:57 +00:00
2019-12-14 05:12:31 +00:00
xmas2019.dsk: SNOW TREE HELLO
2019-12-09 01:34:57 +00:00
cp empty.dsk xmas2019.dsk
$(DOS33) -y xmas2019.dsk BSAVE -a 0x1000 SNOW
2019-12-14 05:12:31 +00:00
$(DOS33) -y xmas2019.dsk BSAVE -a 0x1000 TREE
2019-12-11 13:35:56 +00:00
$(DOS33) -y xmas2019.dsk SAVE A HELLO
2019-12-09 01:34:57 +00:00
2019-12-14 05:12:31 +00:00
####
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
2019-12-09 01:34:57 +00:00
####
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
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
####
2019-12-11 13:35:56 +00:00
HELLO: hello.bas
../asoft_basic-utils/tokenize_asoft < hello.bas > HELLO
2019-12-09 01:34:57 +00:00
2019-12-16 05:52:07 +00:00
####
sine_table: sine_table.o
$(CC) -o sine_table sine_table.o -lm
sine_table.o: sine_table.c
$(CC) -c sine_table.c
####
2019-12-09 01:34:57 +00:00
clean:
2019-12-16 18:24:09 +00:00
rm -f *~ *.o *.lst FIREWORKS.BAS