dos33fsprogs/games/ootw/ending/Makefile

38 lines
715 B
Makefile
Raw Permalink Normal View History

2021-03-23 15:56:45 +00:00
include ../../../Makefile.inc
LINKER_SCRIPTS = ../../../linker_scripts
PT3_PLAYER = ../pt3_player
all: ENDING
#####
ENDING: ending.o
2021-04-19 15:54:27 +00:00
ld65 -o ENDING ending.o -C $(LINKER_SCRIPTS)/apple2_1800.inc
2021-03-23 15:56:45 +00:00
ending.o: ending.s \
credits.s \
2021-03-23 15:56:45 +00: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 15:33:54 +00:00
music/ootw_outro.pt3
2021-03-23 15:56:45 +00:00
ca65 -o ending.o ending.s -l ending.lst
#####
graphics/ending/ootw_c16_end.inc:
cd graphics && make
#####
2021-03-23 15:56:45 +00:00
clean:
rm -f *~ *.o *.lst ENDING
distclean:
cd graphics && make clean