From c21c0d45b35ff069df9033624f319ab1f2019294 Mon Sep 17 00:00:00 2001 From: IIMarckus Date: Fri, 16 Dec 2011 23:54:36 -0700 Subject: Add a text preprocessor, so that we can enter strings in db commands. Depending on how well this works, it may be removed later. Hopefully not. hg-commit-id: d244e025471f --- Makefile | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) (limited to 'Makefile') diff --git a/Makefile b/Makefile index 1df0631d..373fb291 100644 --- a/Makefile +++ b/Makefile @@ -4,11 +4,14 @@ pokered.gbc: pokered.o pokered.gbc cmp baserom.gbc pokered.gbc -pokered.o: pokered.asm constants.asm - rgbasm -o pokered.o pokered.asm +pokered.o: pokered1.asm constants.asm + rgbasm -o pokered.o pokered1.asm + +pokered1.asm: pokered.asm + awk -f textpre.awk < pokered.asm > pokered1.asm redrle: extras/redrle.c ${CC} -o $@ $> clean: - rm -f pokered.o pokered.gbc redrle + rm -f pokered1.asm pokered.o pokered.gbc redrle -- cgit v1.2.3