peasant: forgot another Makefile

This commit is contained in:
Vince Weaver 2024-09-19 14:26:24 -04:00
parent ca287551fe
commit 337e624c2a

View File

@ -0,0 +1,35 @@
include ../../../Makefile.inc
LINKER_SCRIPTS = ../../../linker_scripts
all: TITLE
###
TITLE: title.o
ld65 -o TITLE title.o -C $(LINKER_SCRIPTS)/apple2_6000.inc
title.o: title.s ../qload.inc \
../music/music.inc ../music/duet.s \
graphics_title/title_graphics.inc \
graphics_title/altfire.inc \
directions.s \
../pt3_lib/pt3_lib_mockingboard_patch.s
ca65 -o title.o title.s -l title.lst
###
graphics_title/title_graphics.inc:
cd graphics_title && make
###
distclean:
make clean
cd sprites && make clean
cd graphics_title && make clean
###
clean:
rm -f *~ *.o *.lst TITLE