From 2f0b647704b9ae90d0ff78456fd3d99341475f35 Mon Sep 17 00:00:00 2001 From: Bryan Bishop Date: Fri, 10 May 2013 15:49:19 -0500 Subject: [PATCH] set output to be called pokecrystal-demo --- Makefile | 14 +++++++------- pokecrystal.asm => pokecrystal-demo.asm | 0 2 files changed, 7 insertions(+), 7 deletions(-) rename pokecrystal.asm => pokecrystal-demo.asm (100%) diff --git a/Makefile b/Makefile index ce6258c..2fefd06 100644 --- a/Makefile +++ b/Makefile @@ -25,25 +25,25 @@ HORIZGFX = $(filter-out gfx/%.png, $(VERTGFX)) # the recompressed graphics may be larger than the originals, # so take care to reorganize accordingly -all: pokecrystal.gbc +all: pokecrystal-demo.gbc cmp baserom.gbc $< -win: pokecrystal.gbc +win: pokecrystal-demo.gbc fc baserom.gbc $< clean: - rm -f main.tx pokecrystal.o pokecrystal.gbc ${TEXTFILES} + rm -f main.tx pokecrystal-demo.o pokecrystal-demo.gbc ${TEXTFILES} winclean: - del main.tx pokecrystal.o pokecrystal.gbc .\text\sweethoney.tx .\text\phone\bill.tx .\text\phone\elm.tx .\text\phone\mom.tx .\text\phone\trainers1.tx .\text\common.tx .\text\common_2.tx .\text\common_3.tx + del main.tx pokecrystal-demo.o pokecrystal-demo.gbc .\text\sweethoney.tx .\text\phone\bill.tx .\text\phone\elm.tx .\text\phone\mom.tx .\text\phone\trainers1.tx .\text\common.tx .\text\common_2.tx .\text\common_3.tx -pokecrystal.o: pokecrystal.asm constants.asm wram.asm ${TEXTFILES} - rgbasm -o pokecrystal.o pokecrystal.asm +pokecrystal-demo.o: pokecrystal-demo.asm constants.asm wram.asm ${TEXTFILES} + rgbasm -o pokecrystal-demo.o pokecrystal-demo.asm .asm.tx: python preprocessor.py < $< > $@ -pokecrystal.gbc: pokecrystal.o +pokecrystal-demo.gbc: pokecrystal-demo.o rgblink -o $@ $< rgbfix -Cjv -i BYTE -k 01 -l 0x33 -m 0x10 -p 0 -r 3 -t PM_CRYSTAL $@ diff --git a/pokecrystal.asm b/pokecrystal-demo.asm similarity index 100% rename from pokecrystal.asm rename to pokecrystal-demo.asm