From 337e624c2a7e9c7e063bbdfd90b970b78b937a47 Mon Sep 17 00:00:00 2001 From: Vince Weaver Date: Thu, 19 Sep 2024 14:26:24 -0400 Subject: [PATCH] peasant: forgot another Makefile --- games/peasant/title/Makefile | 35 +++++++++++++++++++++++++++++++++++ 1 file changed, 35 insertions(+) create mode 100644 games/peasant/title/Makefile diff --git a/games/peasant/title/Makefile b/games/peasant/title/Makefile new file mode 100644 index 00000000..23faa53f --- /dev/null +++ b/games/peasant/title/Makefile @@ -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