2021-01-05 21:03:44 -05:00
|
|
|
include ../../Makefile.inc
|
2018-07-31 21:04:32 -04:00
|
|
|
|
2021-01-05 21:03:44 -05:00
|
|
|
DOS33 = ../../utils/dos33fs-utils/dos33
|
|
|
|
PNG_TO_40x48D = ../../utils/gr-utils/png_to_40x48d
|
|
|
|
B2D = ../../utils/bmp2dhr/b2d
|
|
|
|
TOKENIZE = ../../utils/asoft_basic-utils/tokenize_asoft
|
2018-07-31 21:04:32 -04:00
|
|
|
|
|
|
|
all: space_bars.dsk
|
|
|
|
|
2019-06-13 18:13:55 -04:00
|
|
|
space_bars.dsk: SPACE_BARS HELLO
|
|
|
|
$(DOS33) -y space_bars.dsk SAVE A HELLO
|
2018-10-07 21:18:40 -04:00
|
|
|
$(DOS33) -y space_bars.dsk BSAVE -a 0x4000 SPACE_BARS
|
2018-07-31 21:04:32 -04:00
|
|
|
|
|
|
|
|
|
|
|
####
|
|
|
|
|
|
|
|
SPACE_BARS: space_bars.o
|
2021-01-05 21:03:44 -05:00
|
|
|
ld65 -o SPACE_BARS space_bars.o -C ../../linker_scripts/apple2_4000.inc
|
2018-07-31 21:04:32 -04:00
|
|
|
|
2019-06-13 21:32:14 -04:00
|
|
|
space_bars.o: space_bars.s instructions.s \
|
|
|
|
level3_earth.s level6_saturn.s \
|
2018-08-02 00:13:40 -04:00
|
|
|
game_over.s gr_copy.s text_print.s title.s \
|
2018-10-07 17:43:13 -04:00
|
|
|
spacebars_title.inc screen_split.s \
|
2019-06-13 21:32:14 -04:00
|
|
|
sprites_table.s sprites_screen.s \
|
2019-06-13 21:12:02 -04:00
|
|
|
vapor_lock.s delay_a.s lz4_decode.s SB_BACKGROUNDC.BIN.lz4 \
|
|
|
|
keypress.s zp.inc hardware.inc
|
2018-07-31 21:04:32 -04:00
|
|
|
ca65 -o space_bars.o space_bars.s -l space_bars.lst
|
|
|
|
|
|
|
|
####
|
|
|
|
|
2019-06-13 18:13:55 -04:00
|
|
|
HELLO: hello.bas
|
2021-01-05 23:59:08 -05:00
|
|
|
$(TOKENIZE) < hello.bas > HELLO
|
2019-06-13 18:13:55 -04:00
|
|
|
|
|
|
|
####
|
|
|
|
|
2018-07-31 21:04:32 -04:00
|
|
|
spacebars_title.inc: ./images/spacebars_title_scaled.png
|
|
|
|
$(PNG_TO_40x48D) asm ./images/spacebars_title_scaled.png spacebars_title > spacebars_title.inc
|
|
|
|
|
2018-10-06 20:35:28 -04:00
|
|
|
####
|
|
|
|
|
|
|
|
SB_BACKGROUNDC.BIN.lz4: SB_BACKGROUNDC.BIN
|
|
|
|
lz4 -f -16 SB_BACKGROUNDC.BIN
|
|
|
|
|
|
|
|
SB_BACKGROUNDC.BIN: sb_background.bmp
|
|
|
|
$(B2D) sb_background.bmp HGR -d
|
|
|
|
|
2018-07-31 21:04:32 -04:00
|
|
|
###
|
|
|
|
|
|
|
|
clean:
|
2018-10-07 21:18:40 -04:00
|
|
|
rm -f *~ *.o *.lst SPACE_BARS
|
2018-07-31 21:04:32 -04:00
|
|
|
|
|
|
|
|