dos33fsprogs/mist/Makefile

495 lines
12 KiB
Makefile
Raw Normal View History

2020-02-28 20:55:57 +00:00
include ../Makefile.inc
DOS33 = ../dos33fs-utils/dos33
DOS33_RAW = ../dos33fs-utils/dos33_raw
2020-02-28 20:55:57 +00:00
PNG_TO_40x96 = ../gr-utils/png_to_40x96
PNG_TO_40x48D = ../gr-utils/png_to_40x48d
PNG2RLE = ../gr-utils/png2rle
B2D = ../bmp2dhr/b2d
all: mist.dsk mist_side2.dsk mist_side3.dsk
2020-02-28 20:55:57 +00:00
zip: mist.dsk mist_side2.dsk mist_side3.dsk
zip mist.zip mist.dsk mist_side2.dsk mist_side3.dsk
2020-04-08 16:45:35 +00:00
#mist_old.dsk: HELLO LOADER MIST_TITLE MIST OCTAGON VIEWER \
# DENTIST D\'NI SAVE0 SHIP
# cp empty.dsk mist_old.dsk
# $(DOS33) -y mist_old.dsk SAVE A HELLO
# $(DOS33) -y mist_old.dsk BSAVE -a 0x1000 LOADER
# $(DOS33) -y mist_old.dsk BSAVE -a 0x4000 MIST_TITLE
# $(DOS33) -y mist_old.dsk BSAVE -a 0x2000 MIST
# $(DOS33) -y mist_old.dsk BSAVE -a 0x2000 OCTAGON
# $(DOS33) -y mist_old.dsk BSAVE -a 0x2000 VIEWER
# $(DOS33) -y mist_old.dsk BSAVE -a 0x2000 DENTIST
# $(DOS33) -y mist_old.dsk BSAVE -a 0x2000 D\'NI
# $(DOS33) -y mist_old.dsk BSAVE -a 0xe00 SAVE0
# $(DOS33) -y mist_old.dsk BSAVE -a 0x2000 SHIP
#mist_side2.dsk: HELLO_DISK2 CHANNEL ARBOR NIBEL CABIN GENERATOR
# cp extra_empty.dsk mist_side2.dsk
# $(DOS33) -y mist_side2.dsk SAVE A HELLO_DISK2 HELLO
# $(DOS33) -y mist_side2.dsk BSAVE -a 0x2000 CHANNEL
# $(DOS33) -y mist_side2.dsk BSAVE -a 0x2000 ARBOR
# $(DOS33) -y mist_side2.dsk BSAVE -a 0x2000 NIBEL
# $(DOS33) -y mist_side2.dsk BSAVE -a 0x2000 CABIN
# $(DOS33) -y mist_side2.dsk BSAVE -a 0x2000 GENERATOR
#mist_side3.dsk: HELLO_DISK2 MECHE SELENA STONEY SUB
# cp extra_empty.dsk mist_side3.dsk
# $(DOS33) -y mist_side3.dsk SAVE A HELLO_DISK2 HELLO
# $(DOS33) -y mist_side3.dsk BSAVE -a 0x2000 MECHE
# $(DOS33) -y mist_side3.dsk BSAVE -a 0x2000 SELENA
# $(DOS33) -y mist_side3.dsk BSAVE -a 0x2000 STONEY
# $(DOS33) -y mist_side3.dsk BSAVE -a 0x2000 SUB
mist.dsk: QBOOT QLOAD MIST_TITLE MIST OCTAGON VIEWER \
DENTIST D\'NI SAVE0 SHIP GENERATOR
cp extra_empty.dsk mist.dsk
$(DOS33_RAW) mist.dsk 0 0 QBOOT 0 1
$(DOS33_RAW) mist.dsk 0 2 QBOOT 1 1
$(DOS33_RAW) mist.dsk 0 4 QBOOT 2 1
$(DOS33_RAW) mist.dsk 0 6 SAVE0 0 1
$(DOS33_RAW) mist.dsk 1 0 QLOAD 0 12
$(DOS33_RAW) mist.dsk 2 0 MIST_TITLE 0 83
$(DOS33_RAW) mist.dsk 8 0 MIST 0 159
$(DOS33_RAW) mist.dsk 18 0 OCTAGON 0 128
$(DOS33_RAW) mist.dsk 26 0 DENTIST 0 31
$(DOS33_RAW) mist.dsk 28 0 D\'NI 0 27
$(DOS33_RAW) mist.dsk 30 0 SHIP 0 20
$(DOS33_RAW) mist.dsk 31 8 VIEWER 0 19
$(DOS33_RAW) mist.dsk 32 12 GENERATOR 0 33
mist_side2.dsk: CHANNEL ARBOR NIBEL CABIN
cp extra_empty.dsk mist_side2.dsk
$(DOS33_RAW) mist_side2.dsk 1 0 CHANNEL 0 135
$(DOS33_RAW) mist_side2.dsk 10 0 ARBOR 0 159
$(DOS33_RAW) mist_side2.dsk 20 0 NIBEL 0 109
$(DOS33_RAW) mist_side2.dsk 27 0 CABIN 0 61
mist_side3.dsk: MECHE SELENA STONEY SUB
cp extra_empty.dsk mist_side3.dsk
$(DOS33_RAW) mist_side3.dsk 1 0 MECHE 0 157
$(DOS33_RAW) mist_side3.dsk 11 0 SELENA 0 145
$(DOS33_RAW) mist_side3.dsk 21 0 STONEY 0 158
$(DOS33_RAW) mist_side3.dsk 31 0 SUB 0 54
###
QBOOT: qboot_sector.o
ld65 -o QBOOT qboot_sector.o -C ../linker_scripts/apple2_800.inc
qboot_sector.o: qboot_sector.s qboot_stage2.s
ca65 -o qboot_sector.o qboot_sector.s -l qboot_sector.lst
###
QLOAD: qload.o
ld65 -o QLOAD qload.o -C ../linker_scripts/apple2_1200.inc
qload.o: qload.s \
gr_copy.s gr_offsets.s gr_pageflip.s gr_putsprite_crop.s \
text_print.s gr_fast_clear.s decompress_fast_v2.s \
keyboard.s draw_pointer.s end_level.s audio.s loadstore.s \
qkumba_popwr.s
ca65 -o qload.o qload.s -l qload.lst
2020-03-02 21:50:00 +00:00
###
LOADER: loader.o
ld65 -o LOADER loader.o -C ../linker_scripts/apple2_1000.inc
2020-03-02 21:50:00 +00:00
loader.o: loader.s \
gr_copy.s gr_offsets.s gr_pageflip.s gr_putsprite_crop.s \
text_print.s gr_fast_clear.s decompress_fast_v2.s \
keyboard.s draw_pointer.s end_level.s audio.s loadstore.s \
qkumba_popwr.s
2020-03-02 21:50:00 +00:00
ca65 -o loader.o loader.s -l loader.lst
2020-02-28 20:55:57 +00:00
###
SAVE0: default_save.o
ld65 -o SAVE0 default_save.o -C ../linker_scripts/apple2_e00.inc
2020-07-27 17:01:55 +00:00
default_save.o: default_save.s playthrough_save.inc
ca65 -o default_save.o default_save.s -l default_save.lst
###
2020-02-28 20:55:57 +00:00
HELLO: hello.bas
../asoft_basic-utils/tokenize_asoft < hello.bas > HELLO
2020-06-16 17:35:19 +00:00
HELLO_DISK2: hello_disk2.bas
../asoft_basic-utils/tokenize_asoft < hello_disk2.bas > HELLO_DISK2
####
generate_common: generate_common.o
$(CC) $(LFLAGS) -o generate_common generate_common.o
generate_common.o: generate_common.c
$(CC) $(CFLAGS) -c generate_common.c
####
2020-07-08 18:19:37 +00:00
common_routines.inc: qload.lst loader.lst generate_common
./generate_common > common_routines.inc
2020-06-16 17:35:19 +00:00
2020-02-28 20:55:57 +00:00
####
2020-03-01 05:37:09 +00:00
MIST_TITLE: mist_title.o
2020-03-02 21:50:00 +00:00
ld65 -o MIST_TITLE mist_title.o -C ../linker_scripts/apple2_4000.inc
2020-03-01 05:37:09 +00:00
mist_title.o: mist_title.s zp.inc hardware.inc common_defines.inc \
common_routines.inc \
2020-07-17 15:54:06 +00:00
graphics_title_hgr/mist_title.lzsa graphics_title/title_graphics.inc \
gr_copy.s gr_offsets.s gr_pageflip.s gr_putsprite_crop.s \
text_print.s gr_fast_clear.s decompress_fast_v2.s \
keyboard.s draw_pointer.s end_level.s audio.s \
init_state.s \
2020-07-17 18:17:11 +00:00
link_book_mist_dock.s common_sprites.inc leveldata_title.inc \
pt3_lib_core.s pt3_lib_init.s pt3_lib_mockingboard_detect.s \
pt3_lib_mockingboard_setup.s pt3_lib_irq_handler.s interrupt_handler.s
2020-03-01 05:37:09 +00:00
ca65 -o mist_title.o mist_title.s -l mist_title.lst
####
2020-02-28 20:55:57 +00:00
MIST: mist.o
ld65 -o MIST mist.o -C ./apple2_2000.inc
2020-02-28 20:55:57 +00:00
mist.o: mist.s zp.inc hardware.inc common_defines.inc common_routines.inc \
2020-03-18 05:48:15 +00:00
graphics_mist/mist_graphics.inc \
2020-03-06 20:19:35 +00:00
common_sprites.inc \
2020-03-15 18:25:51 +00:00
leveldata_mist.inc \
2020-03-07 16:06:29 +00:00
clock_bridge_puzzle.s clock_sprites.inc \
2020-03-07 16:16:44 +00:00
marker_switch.s \
2020-03-08 04:11:08 +00:00
keyboard.s \
draw_pointer.s \
end_level.s \
mist_puzzles.s \
2020-07-12 04:45:49 +00:00
handle_pages.s
2020-02-28 20:55:57 +00:00
ca65 -o mist.o mist.s -l mist.lst
####
GENERATOR: generator.o
ld65 -o GENERATOR generator.o -C ./apple2_2000.inc
generator.o: generator.s zp.inc hardware.inc \
common_defines.inc common_routines.inc \
2020-07-08 18:19:37 +00:00
graphics_generator/generator_graphics.inc \
leveldata_generator.inc \
generator_puzzle.s
ca65 -o generator.o generator.s -l generator.lst
####
OCTAGON: octagon.o
ld65 -o OCTAGON octagon.o -C ./apple2_2000.inc
octagon.o: octagon.s zp.inc hardware.inc common_defines.inc \
common_routines.inc \
graphics_octagon/octagon_graphics.inc \
2020-04-08 16:02:03 +00:00
books/octagon_books.inc \
2020-05-20 04:41:44 +00:00
common_sprites.inc page_sprites.inc \
leveldata_octagon.inc \
brother_books.s \
handle_pages.s \
octagon_bookshelf.s \
octagon_rotation.s \
octagon_fireplace.s
ca65 -o octagon.o octagon.s -l octagon.lst
####
D\'NI: dni.o
ld65 -o D\'NI dni.o -C ./apple2_2000.inc
dni.o: dni.s zp.inc hardware.inc common_defines.inc \
common_routines.inc \
graphics_dni/dni_graphics.inc \
2020-07-10 16:34:38 +00:00
leveldata_dni.inc \
dni_ending.s
ca65 -o dni.o dni.s -l dni.lst
####
2020-03-08 04:26:52 +00:00
MECHE: meche.o
ld65 -o MECHE meche.o -C ./apple2_2000.inc
2020-03-08 04:26:52 +00:00
meche.o: meche.s zp.inc hardware.inc common_defines.inc \
common_routines.inc \
2020-03-08 04:26:52 +00:00
graphics_meche/meche_graphics.inc \
common_sprites.inc \
page_sprites.inc \
2020-03-08 04:26:52 +00:00
leveldata_meche.inc \
2020-03-08 17:45:05 +00:00
link_book_meche.s \
link_book_mist.s \
2020-03-21 20:55:48 +00:00
meche_rotation.s \
2020-04-21 21:12:08 +00:00
handle_pages.s \
2020-03-08 04:26:52 +00:00
keyboard.s \
draw_pointer.s \
gr_copy.s audio.s text_print.s decompress_fast_v2.s
ca65 -o meche.o meche.s -l meche.lst
2020-03-13 17:04:31 +00:00
####
SELENA: selena.o
ld65 -o SELENA selena.o -C ./apple2_2000.inc
2020-03-13 17:04:31 +00:00
selena.o: selena.s zp.inc hardware.inc common_defines.inc \
common_routines.inc \
2020-03-13 17:04:31 +00:00
graphics_selena/selena_graphics.inc \
common_sprites.inc \
leveldata_selena.inc \
link_book_mist.s \
end_level.s \
2020-03-13 17:04:31 +00:00
keyboard.s \
draw_pointer.s \
2020-03-14 15:57:09 +00:00
speaker_beeps.s \
selena_organ_puzzle.s selena_sound_puzzle.s \
2020-03-13 17:04:31 +00:00
gr_copy.s audio.s text_print.s decompress_fast_v2.s
ca65 -o selena.o selena.s -l selena.lst
####
SUB: sub.o
ld65 -o SUB sub.o -C ./apple2_2000.inc
sub.o: sub.s zp.inc hardware.inc common_defines.inc \
common_routines.inc \
graphics_sub/sub_graphics.inc \
common_sprites.inc \
leveldata_sub.inc \
link_book_mist.s \
end_level.s \
keyboard.s \
draw_pointer.s \
sub_puzzle.s \
gr_copy.s audio.s text_print.s decompress_fast_v2.s
ca65 -o sub.o sub.s -l sub.lst
2020-03-08 04:26:52 +00:00
2020-03-25 05:17:59 +00:00
####
VIEWER: viewer.o
ld65 -o VIEWER viewer.o -C ./apple2_2000.inc
2020-03-25 05:17:59 +00:00
viewer.o: viewer.s zp.inc hardware.inc common_defines.inc \
graphics_viewer/viewer_graphics.inc \
common_routines.inc \
2020-03-25 05:17:59 +00:00
common_sprites.inc \
page_sprites.inc \
number_sprites.inc \
2020-03-25 05:17:59 +00:00
leveldata_viewer.inc \
2020-03-27 19:43:24 +00:00
viewer_controls.s \
2020-03-25 05:17:59 +00:00
keyboard.s \
draw_pointer.s \
gr_copy.s audio.s text_print.s decompress_fast_v2.s
ca65 -o viewer.o viewer.s -l viewer.lst
2020-03-26 18:17:10 +00:00
####
STONEY: stoney.o
ld65 -o STONEY stoney.o -C ./apple2_2000.inc
2020-03-26 18:17:10 +00:00
stoney.o: stoney.s zp.inc hardware.inc common_defines.inc \
graphics_stoney/stoney_graphics.inc \
common_routines.inc \
2020-03-26 18:17:10 +00:00
common_sprites.inc \
page_sprites.inc \
leveldata_stoney.inc \
keyboard.s \
draw_pointer.s \
link_book_stoney.s \
2020-04-21 21:12:08 +00:00
link_book_mist.s \
handle_pages.s \
hlin_list.s \
lights_off.s stoney_puzzles.s
2020-03-26 18:17:10 +00:00
ca65 -o stoney.o stoney.s -l stoney.lst
####
SHIP: ship.o
ld65 -o SHIP ship.o -C ./apple2_2000.inc
ship.o: ship.s zp.inc hardware.inc common_defines.inc \
graphics_ship/ship_graphics.inc \
common_routines.inc \
common_sprites.inc \
page_sprites.inc \
leveldata_ship.inc \
keyboard.s \
draw_pointer.s \
link_book_stoney.s \
link_book_mist.s \
handle_pages.s \
gr_copy.s audio.s text_print.s decompress_fast_v2.s
ca65 -o ship.o ship.s -l ship.lst
2020-06-16 17:57:10 +00:00
####
CABIN: cabin.o
ld65 -o CABIN cabin.o -C ./apple2_2000.inc
2020-06-16 17:57:10 +00:00
cabin.o: cabin.s zp.inc hardware.inc common_defines.inc \
common_routines.inc \
graphics_cabin/cabin_graphics.inc \
common_sprites.inc \
page_sprites.inc \
leveldata_cabin.inc \
keyboard.s \
draw_pointer.s \
link_book_channel.s \
2020-07-14 03:53:08 +00:00
marker_switch.s \
cabin_boiler_puzzle.s \
number_sprites.inc
2020-06-16 17:57:10 +00:00
ca65 -o cabin.o cabin.s -l cabin.lst
2020-04-09 05:23:32 +00:00
####
CHANNEL: channel.o
ld65 -o CHANNEL channel.o -C ./apple2_2000.inc
2020-04-09 05:23:32 +00:00
channel.o: channel.s zp.inc hardware.inc common_defines.inc \
common_routines.inc \
2020-04-09 05:23:32 +00:00
graphics_channel/channel_graphics.inc \
common_sprites.inc \
page_sprites.inc \
leveldata_channel.inc \
channel_switches.s \
2020-04-09 05:23:32 +00:00
keyboard.s \
draw_pointer.s \
2020-04-15 21:03:07 +00:00
link_book_channel.s \
link_book_mist.s \
2020-04-09 05:23:32 +00:00
gr_copy.s audio.s text_print.s decompress_fast_v2.s
ca65 -o channel.o channel.s -l channel.lst
####
2020-04-09 05:23:32 +00:00
ARBOR: arbor.o
ld65 -o ARBOR arbor.o -C ./apple2_2000.inc
2020-03-26 18:17:10 +00:00
arbor.o: arbor.s zp.inc hardware.inc common_defines.inc \
common_routines.inc \
graphics_arbor/arbor_graphics.inc \
leveldata_arbor.inc \
arbor_switches.s
ca65 -o arbor.o arbor.s -l arbor.lst
####
NIBEL: nibel.o
ld65 -o NIBEL nibel.o -C ./apple2_2000.inc
nibel.o: nibel.s zp.inc hardware.inc common_defines.inc \
common_routines.inc \
graphics_nibel/nibel_graphics.inc \
leveldata_nibel.inc \
2020-06-30 18:13:33 +00:00
handle_pages.s nibel_switches.s
ca65 -o nibel.o nibel.s -l nibel.lst
2020-03-08 04:26:52 +00:00
####
2020-07-02 19:27:41 +00:00
DENTIST: dentist.o
ld65 -o DENTIST dentist.o -C ./apple2_2000.inc
2020-07-02 19:27:41 +00:00
dentist.o: dentist.s zp.inc hardware.inc common_defines.inc \
common_routines.inc \
graphics_dentist/dentist_graphics.inc \
leveldata_dentist.inc \
2020-07-11 17:45:29 +00:00
dentist_panel.s \
marker_switch.s
2020-07-02 19:27:41 +00:00
ca65 -o dentist.o dentist.s -l dentist.lst
####
2020-07-08 18:19:37 +00:00
graphics_title/title_graphics.inc:
cd graphics_title && make
graphics_mist/mist_graphics.inc:
cd graphics_mist && make
graphics_octagon/octagon_graphics.inc:
cd graphics_octagon && make
books/octagon_books.inc:
cd books && make
graphics_viewer/viewer_graphics.inc:
cd graphics_viewer && make
graphics_meche/meche_graphics.inc:
cd graphics_meche && make
graphics_selena/selena_graphics.inc:
cd graphics_selena && make
graphics_cabin/cabin_graphics.inc:
cd graphics_cabin && make
graphics_channel/channel_graphics.inc:
cd graphics_channel && make
graphics_stoney/stoney_graphics.inc:
cd graphics_stoney && make
graphics_dentist/dentist_graphics.inc:
cd graphics_dentist && make
graphics_generator/generator_graphics.inc:
cd graphics_generator && make
graphics_arbor/arbor_graphics.inc:
cd graphics_arbor && make
graphics_nibel/nibel_graphics.inc:
cd graphics_nibel && make
graphics_dni/dni_graphics.inc:
cd graphics_dni && make
graphics_ship/ship_graphics.inc:
cd graphics_ship && make
graphics_sub/sub_graphics.inc:
2020-08-04 23:56:11 +00:00
cd graphics_sub && make
2020-03-02 21:50:00 +00:00
2020-02-28 20:55:57 +00:00
####
clean:
rm -f *~ *.o *.lst HELLO HELLO_DISK2 \
2020-06-16 17:35:19 +00:00
LOADER MIST_TITLE \
2020-07-02 19:27:41 +00:00
MIST OCTAGON VIEWER DENTIST \
MECHE SELENA SHIP STONEY CHANNEL ARBOR NIBEL \
GENERATOR \
generate_common
cd graphics_title && make clean
cd graphics_mist && make clean
cd graphics_octagon && make clean
cd books && make clean
cd graphics_viewer && make clean
cd graphics_meche && make clean
cd graphics_selena && make clean
cd graphics_cabin && make clean
cd graphics_channel && make clean
cd graphics_stoney && make clean
cd graphics_dentist && make clean
cd graphics_generator && make clean
cd graphics_arbor && make clean
cd graphics_nibel && make clean
cd graphics_dni && make clean
cd graphics_ship && make clean
2020-08-04 23:56:11 +00:00
cd graphics_sub && make clean