2019-01-13 06:10:44 +00:00
|
|
|
include ../Makefile.inc
|
|
|
|
|
|
|
|
DOS33 = ../dos33fs-utils/dos33
|
|
|
|
PNG2RLE = ../gr-utils/png2rle
|
|
|
|
|
|
|
|
|
|
|
|
all: ootw.dsk
|
|
|
|
|
2019-01-28 02:37:09 +00:00
|
|
|
ootw.dsk: HELLO LOADER INTRO OOTW OOTW_C2
|
2019-01-13 06:10:44 +00:00
|
|
|
$(DOS33) -y ootw.dsk SAVE A HELLO
|
2019-01-28 02:23:22 +00:00
|
|
|
$(DOS33) -y ootw.dsk BSAVE -a 0x1800 LOADER
|
2019-01-27 02:52:00 +00:00
|
|
|
$(DOS33) -y ootw.dsk BSAVE -a 0x2000 INTRO
|
2019-01-28 02:37:09 +00:00
|
|
|
$(DOS33) -y ootw.dsk BSAVE -a 0x2000 OOTW
|
|
|
|
$(DOS33) -y ootw.dsk BSAVE -a 0x2000 OOTW_C2
|
|
|
|
|
2019-01-13 06:10:44 +00:00
|
|
|
|
|
|
|
####
|
|
|
|
|
|
|
|
OOTW: ootw.o
|
2019-01-18 05:18:06 +00:00
|
|
|
ld65 -o OOTW ootw.o -C ../linker_scripts/apple2_2000.inc
|
2019-01-13 06:10:44 +00:00
|
|
|
|
2019-01-14 17:44:26 +00:00
|
|
|
ootw.o: ootw.s \
|
2019-01-14 04:37:49 +00:00
|
|
|
gr_copy.s gr_fast_clear.s gr_pageflip.s gr_unrle.s gr_putsprite.s \
|
2019-01-20 04:51:58 +00:00
|
|
|
keyboard.s sluggy.s \
|
2019-01-20 06:45:51 +00:00
|
|
|
ootw_rope.s earthquake.s ootw_mesa.s \
|
2019-01-24 21:55:53 +00:00
|
|
|
ootw_pool.s ootw_cavern.s physicist.s random16.s \
|
|
|
|
cutscene_slug.s cutscene_beast.s \
|
2019-01-20 04:48:48 +00:00
|
|
|
ootw_pool.inc \
|
2019-01-23 04:00:59 +00:00
|
|
|
ootw_cavern.inc ootw_cavern2.inc ootw_cavern3.inc ootw_underwater.inc \
|
|
|
|
ootw_rope.inc \
|
2019-01-26 17:29:38 +00:00
|
|
|
sprites_physicist.inc sprites_slugs.inc \
|
|
|
|
sprites_ootw.inc sprites_beast.inc
|
2019-01-13 06:10:44 +00:00
|
|
|
ca65 -o ootw.o ootw.s -l ootw.lst
|
2019-01-28 02:23:22 +00:00
|
|
|
|
2019-01-13 06:10:44 +00:00
|
|
|
####
|
|
|
|
|
2019-01-28 02:37:09 +00:00
|
|
|
OOTW_C2: ootw_c2.o
|
|
|
|
ld65 -o OOTW_C2 ootw_c2.o -C ../linker_scripts/apple2_2000.inc
|
|
|
|
|
|
|
|
ootw_c2.o: ootw_c2.s \
|
|
|
|
gr_copy.s gr_fast_clear.s gr_pageflip.s gr_unrle.s gr_putsprite.s \
|
|
|
|
keyboard.s sluggy.s \
|
|
|
|
sprites_physicist.inc \
|
|
|
|
ootw_c2_cage.s \
|
|
|
|
ootw_c2_cage.inc
|
|
|
|
ca65 -o ootw_c2.o ootw_c2.s -l ootw_c2.lst
|
|
|
|
|
|
|
|
|
|
|
|
####
|
|
|
|
|
2019-01-27 02:27:20 +00:00
|
|
|
INTRO: intro.o
|
|
|
|
ld65 -o INTRO intro.o -C ../linker_scripts/apple2_2000.inc
|
|
|
|
|
|
|
|
intro.o: intro.s \
|
|
|
|
gr_copy.s gr_fast_clear.s gr_pageflip.s gr_unrle.s gr_putsprite.s \
|
2019-02-03 05:55:45 +00:00
|
|
|
gr_overlay.s \
|
2019-02-16 23:11:47 +00:00
|
|
|
keyboard.s random16.s text_print.s \
|
2019-02-03 05:55:45 +00:00
|
|
|
intro_tunnel1.inc intro_tunnel2.inc intro_gone.inc \
|
|
|
|
intro_graphics/01_building/intro_car.inc \
|
|
|
|
intro_graphics/01_building/intro_building_car.inc \
|
2019-02-03 17:06:45 +00:00
|
|
|
intro_graphics/01_building/intro_building.inc \
|
2019-02-05 04:26:55 +00:00
|
|
|
intro_graphics/02_outer_door/outer_door.inc \
|
2019-02-05 04:33:16 +00:00
|
|
|
intro_graphics/02_outer_door/feet.inc \
|
2019-02-06 05:32:54 +00:00
|
|
|
intro_graphics/03_elevator/intro_elevator.inc \
|
|
|
|
intro_graphics/03_elevator/intro_off_elevator.inc \
|
2019-02-07 03:01:59 +00:00
|
|
|
intro_graphics/03_elevator/intro_walking.inc \
|
2019-02-06 05:32:54 +00:00
|
|
|
intro_graphics/04_keypad/intro_scanner_door.inc \
|
2019-02-08 03:02:56 +00:00
|
|
|
intro_graphics/04_keypad/intro_approach.inc \
|
|
|
|
intro_graphics/04_keypad/intro_keypad_bg.inc \
|
2019-02-13 04:36:08 +00:00
|
|
|
intro_graphics/04_keypad/intro_hands.inc \
|
2019-02-13 04:43:31 +00:00
|
|
|
intro_graphics/04_keypad/intro_opening.inc \
|
2019-02-13 05:46:11 +00:00
|
|
|
intro_graphics/05_scanner/intro_scanner.inc \
|
2019-02-15 03:00:00 +00:00
|
|
|
intro_graphics/05_scanner/intro_scanning.inc \
|
|
|
|
intro_graphics/05_scanner/intro_ai_bg.inc \
|
2019-02-16 05:24:24 +00:00
|
|
|
intro_graphics/05_scanner/intro_ai.inc \
|
|
|
|
intro_graphics/06_console/intro_desktop.inc \
|
2019-02-16 18:54:09 +00:00
|
|
|
intro_graphics/06_console/intro_cursor.inc \
|
2019-02-18 06:01:10 +00:00
|
|
|
intro_graphics/06_console/intro_collider.inc \
|
2019-02-16 18:54:09 +00:00
|
|
|
intro_graphics/07_soda/intro_open_soda.inc \
|
2019-02-23 19:59:14 +00:00
|
|
|
intro_graphics/07_soda/intro_drinking.inc \
|
|
|
|
intro_graphics/08_lightning/lightning.inc
|
2019-01-27 02:27:20 +00:00
|
|
|
ca65 -o intro.o intro.s -l intro.lst
|
2019-01-28 02:23:22 +00:00
|
|
|
|
|
|
|
####
|
|
|
|
|
|
|
|
LOADER: loader.o
|
|
|
|
ld65 -o LOADER loader.o -C ../linker_scripts/apple2_1800.inc
|
|
|
|
|
|
|
|
loader.o: loader.s
|
|
|
|
ca65 -o loader.o loader.s -l loader.lst
|
|
|
|
|
2019-01-27 02:27:20 +00:00
|
|
|
####
|
|
|
|
|
|
|
|
|
2019-01-13 06:10:44 +00:00
|
|
|
HELLO: hello.bas
|
|
|
|
../asoft_basic-utils/tokenize_asoft < hello.bas > HELLO
|
|
|
|
|
|
|
|
|
|
|
|
#####
|
|
|
|
|
2019-01-17 20:56:43 +00:00
|
|
|
ootw_pool.inc: $(PNG2RLE) another.png
|
|
|
|
$(PNG2RLE) asm another.png pool_rle > ootw_pool.inc
|
|
|
|
|
|
|
|
ootw_cavern.inc: $(PNG2RLE) another_cave.png
|
|
|
|
$(PNG2RLE) asm another_cave.png cavern_rle > ootw_cavern.inc
|
2019-01-13 06:10:44 +00:00
|
|
|
|
2019-01-20 04:48:48 +00:00
|
|
|
ootw_cavern2.inc: $(PNG2RLE) another_cave2.png
|
|
|
|
$(PNG2RLE) asm another_cave2.png cavern2_rle > ootw_cavern2.inc
|
|
|
|
|
|
|
|
ootw_cavern3.inc: $(PNG2RLE) another_cave3.png
|
|
|
|
$(PNG2RLE) asm another_cave3.png cavern3_rle > ootw_cavern3.inc
|
|
|
|
|
2019-01-19 04:23:18 +00:00
|
|
|
ootw_rope.inc: $(PNG2RLE) another_rope.png
|
|
|
|
$(PNG2RLE) asm another_rope.png rope_rle > ootw_rope.inc
|
|
|
|
|
2019-01-28 02:37:09 +00:00
|
|
|
#####
|
|
|
|
|
|
|
|
ootw_c2_cage.inc: $(PNG2RLE) ootw_c2_cage.png
|
|
|
|
$(PNG2RLE) asm ootw_c2_cage.png cage_rle > ootw_c2_cage.inc
|
2019-01-23 04:00:59 +00:00
|
|
|
|
2019-01-27 02:27:20 +00:00
|
|
|
|
|
|
|
#####
|
|
|
|
|
2019-01-27 05:20:20 +00:00
|
|
|
intro_gone.inc: $(PNG2RLE) intro_gone.png
|
|
|
|
$(PNG2RLE) asm intro_gone.png gone_rle > intro_gone.inc
|
|
|
|
|
2019-01-27 17:42:52 +00:00
|
|
|
intro_tunnel1.inc: $(PNG2RLE) intro_tunnel1.png
|
|
|
|
$(PNG2RLE) asm intro_tunnel1.png tunnel1_rle > intro_tunnel1.inc
|
|
|
|
|
2019-01-27 05:20:20 +00:00
|
|
|
intro_tunnel2.inc: $(PNG2RLE) intro_tunnel2.png
|
|
|
|
$(PNG2RLE) asm intro_tunnel2.png tunnel2_rle > intro_tunnel2.inc
|
|
|
|
|
2019-01-13 06:10:44 +00:00
|
|
|
#####
|
|
|
|
|
|
|
|
clean:
|
2019-01-28 02:37:09 +00:00
|
|
|
rm -f *~ *.o *.lst HELLO OOTW OOTW_C2 INTRO LOADER
|