2021-03-23 11:56:45 -04:00
|
|
|
include ../../../Makefile.inc
|
|
|
|
|
|
|
|
LINKER_SCRIPTS = ../../../linker_scripts
|
|
|
|
PT3_PLAYER = ../pt3_player
|
|
|
|
|
|
|
|
all: ENDING
|
|
|
|
|
|
|
|
#####
|
|
|
|
|
|
|
|
ENDING: ending.o
|
2021-04-19 11:54:27 -04:00
|
|
|
ld65 -o ENDING ending.o -C $(LINKER_SCRIPTS)/apple2_1800.inc
|
2021-03-23 11:56:45 -04:00
|
|
|
|
|
|
|
ending.o: ending.s \
|
2021-04-05 19:43:52 -04:00
|
|
|
credits.s \
|
2021-03-23 11:56:45 -04:00
|
|
|
$(PT3_PLAYER)/pt3_lib_core.s \
|
|
|
|
$(PT3_PLAYER)/pt3_lib_init.s \
|
|
|
|
$(PT3_PLAYER)/pt3_lib_mockingboard_detect.s \
|
|
|
|
$(PT3_PLAYER)/pt3_lib_mockingboard_setup.s \
|
|
|
|
$(PT3_PLAYER)/pt3_lib_irq_handler.s \
|
|
|
|
$(PT3_PLAYER)/interrupt_handler.s \
|
|
|
|
graphics/ending/ootw_c16_end.inc \
|
2021-03-24 11:33:54 -04:00
|
|
|
music/ootw_outro.pt3
|
2021-03-23 11:56:45 -04:00
|
|
|
ca65 -o ending.o ending.s -l ending.lst
|
|
|
|
|
|
|
|
#####
|
|
|
|
|
2021-03-29 22:44:03 -04:00
|
|
|
graphics/ending/ootw_c16_end.inc:
|
|
|
|
cd graphics && make
|
|
|
|
|
|
|
|
#####
|
|
|
|
|
2021-03-23 11:56:45 -04:00
|
|
|
clean:
|
|
|
|
rm -f *~ *.o *.lst ENDING
|
|
|
|
|
2021-03-29 22:44:03 -04:00
|
|
|
|
|
|
|
distclean:
|
|
|
|
cd graphics && make clean
|