2018-08-01 01:04:32 +00:00
|
|
|
include ../Makefile.inc
|
|
|
|
|
|
|
|
DOS33 = ../dos33fs-utils/dos33
|
|
|
|
PNG_TO_40x48D = ../gr-utils/png_to_40x48d
|
2018-10-07 00:35:28 +00:00
|
|
|
B2D = ../bmp2dhr/b2d
|
2018-08-01 01:04:32 +00:00
|
|
|
|
|
|
|
all: space_bars.dsk
|
|
|
|
|
|
|
|
space_bars.dsk: SPACE_BARS
|
2018-10-08 01:18:40 +00:00
|
|
|
$(DOS33) -y space_bars.dsk BSAVE -a 0x4000 SPACE_BARS
|
2018-08-01 01:04:32 +00:00
|
|
|
|
|
|
|
|
|
|
|
####
|
|
|
|
|
|
|
|
SPACE_BARS: space_bars.o
|
2018-10-08 01:18:40 +00:00
|
|
|
ld65 -o SPACE_BARS space_bars.o -C ../linker_scripts/apple2_4000.inc
|
2018-08-01 01:04:32 +00:00
|
|
|
|
2018-08-02 04:13:40 +00:00
|
|
|
space_bars.o: space_bars.s instructions.s game.s \
|
|
|
|
game_over.s gr_copy.s text_print.s title.s \
|
2018-10-07 21:43:13 +00:00
|
|
|
spacebars_title.inc screen_split.s \
|
2018-10-07 00:35:28 +00:00
|
|
|
vapor_lock.s delay_a.s lz4_decode.s SB_BACKGROUNDC.BIN.lz4
|
2018-08-01 01:04:32 +00:00
|
|
|
ca65 -o space_bars.o space_bars.s -l space_bars.lst
|
|
|
|
|
|
|
|
####
|
|
|
|
|
|
|
|
spacebars_title.inc: ./images/spacebars_title_scaled.png
|
|
|
|
$(PNG_TO_40x48D) asm ./images/spacebars_title_scaled.png spacebars_title > spacebars_title.inc
|
|
|
|
|
2018-10-07 00:35:28 +00: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-08-01 01:04:32 +00:00
|
|
|
###
|
|
|
|
|
|
|
|
clean:
|
2018-10-08 01:18:40 +00:00
|
|
|
rm -f *~ *.o *.lst SPACE_BARS
|
2018-08-01 01:04:32 +00:00
|
|
|
|
|
|
|
|