2019-06-06 05:02:08 +00:00
|
|
|
include ../Makefile.inc
|
|
|
|
|
|
|
|
DOS33 = ../dos33fs-utils/dos33
|
|
|
|
PNG_TO_40x96 = ../gr-utils/png_to_40x96
|
|
|
|
PNG_TO_40x48D = ../gr-utils/png_to_40x48d
|
|
|
|
|
|
|
|
|
|
|
|
all: interlace.dsk
|
|
|
|
|
2019-09-13 04:59:51 +00:00
|
|
|
interlace.dsk: INTERLACE RASTERBARS HELLO RASTERBARS_SOUND #SPRITES
|
2019-06-06 05:02:08 +00:00
|
|
|
$(DOS33) -y interlace.dsk SAVE A HELLO
|
|
|
|
$(DOS33) -y interlace.dsk BSAVE -a 0x1000 INTERLACE
|
2019-06-11 18:22:50 +00:00
|
|
|
$(DOS33) -y interlace.dsk BSAVE -a 0x1000 RASTERBARS
|
2019-09-13 04:59:51 +00:00
|
|
|
# $(DOS33) -y interlace.dsk BSAVE -a 0x1000 SPRITES
|
2019-06-18 19:49:35 +00:00
|
|
|
$(DOS33) -y interlace.dsk BSAVE -a 0x1000 RASTERBARS_SOUND
|
2019-06-06 05:02:08 +00:00
|
|
|
|
|
|
|
####
|
|
|
|
|
|
|
|
HELLO: hello.bas
|
|
|
|
../asoft_basic-utils/tokenize_asoft < hello.bas > HELLO
|
|
|
|
|
|
|
|
|
|
|
|
####
|
|
|
|
|
|
|
|
INTERLACE: interlace.o
|
|
|
|
ld65 -o INTERLACE interlace.o -C ../linker_scripts/apple2_1000.inc
|
|
|
|
|
|
|
|
interlace.o: interlace.s gr_copy.s \
|
|
|
|
k_40_48d.inc
|
|
|
|
ca65 -o interlace.o interlace.s -l interlace.lst
|
|
|
|
|
|
|
|
####
|
|
|
|
|
2019-06-11 18:22:50 +00:00
|
|
|
RASTERBARS: rasterbars.o
|
|
|
|
ld65 -o RASTERBARS rasterbars.o -C ../linker_scripts/apple2_1000.inc
|
|
|
|
|
|
|
|
rasterbars.o: rasterbars.s gr_copy.s \
|
2019-06-11 20:58:21 +00:00
|
|
|
rasterbars_screen.s rasterbars_table.s movement_table.s rb_bg.inc
|
2019-06-11 18:22:50 +00:00
|
|
|
ca65 -o rasterbars.o rasterbars.s -l rasterbars.lst
|
|
|
|
|
2019-06-12 16:08:55 +00:00
|
|
|
####
|
|
|
|
|
2019-06-18 19:49:35 +00:00
|
|
|
RASTERBARS_SOUND: rasterbars_sound.o
|
|
|
|
ld65 -o RASTERBARS_SOUND rasterbars_sound.o -C ../linker_scripts/apple2_1000.inc
|
|
|
|
|
|
|
|
rasterbars_sound.o: rasterbars_sound.s gr_copy.s \
|
|
|
|
rasterbars_screen.s rasterbars_table.s movement_table.s rb_bg.inc \
|
2019-09-15 03:08:50 +00:00
|
|
|
pt3_lib_core.s pt3_lib_init.s pt3_lib_mockingboard.s \
|
2019-09-15 04:43:25 +00:00
|
|
|
pt3_lib_sample_ornament.s pt3_write_frame.s pt3_lib_calculate_note.s \
|
2019-09-17 03:07:53 +00:00
|
|
|
pt3_lib_decode_note.s pt3_lib_make_frame.s pt3_lib_do_frame.s \
|
|
|
|
pt3_lib_set_pattern.s
|
2019-06-18 19:49:35 +00:00
|
|
|
ca65 -o rasterbars_sound.o rasterbars_sound.s -l rasterbars_sound.lst
|
|
|
|
|
|
|
|
|
|
|
|
####
|
|
|
|
|
2019-06-12 16:08:55 +00:00
|
|
|
SPRITES: sprites.o
|
|
|
|
ld65 -o SPRITES sprites.o -C ../linker_scripts/apple2_1000.inc
|
|
|
|
|
|
|
|
sprites.o: sprites.s gr_copy.s \
|
2019-06-13 16:12:36 +00:00
|
|
|
sprites_screen.s sprites_table.s movement_table.s earth.inc asteroid.inc
|
2019-06-12 16:08:55 +00:00
|
|
|
ca65 -o sprites.o sprites.s -l sprites.lst
|
|
|
|
|
|
|
|
|
2019-06-11 18:22:50 +00:00
|
|
|
|
|
|
|
####
|
|
|
|
|
2019-06-06 05:02:08 +00:00
|
|
|
k_40_48d.inc: k_40_48d.png
|
|
|
|
$(PNG_TO_40x48D) asm k_40_48d.png k > k_40_48d.inc
|
|
|
|
|
2019-06-11 20:58:21 +00:00
|
|
|
rb_bg.inc: rb_bg.png
|
|
|
|
$(PNG_TO_40x48D) asm rb_bg.png rb_bg > rb_bg.inc
|
|
|
|
|
2019-06-12 17:43:56 +00:00
|
|
|
earth.inc: earth.png
|
|
|
|
$(PNG_TO_40x48D) asm earth.png earth > earth.inc
|
|
|
|
|
2019-06-06 05:02:08 +00:00
|
|
|
###
|
|
|
|
|
|
|
|
|
|
|
|
install:
|
|
|
|
|
|
|
|
|
|
|
|
clean:
|
2019-06-18 19:49:35 +00:00
|
|
|
rm -f *~ *.o *.lst INTERLACE RASTERBARS SPRITES HELLO RASTERBARS_SOUND
|