summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authoryenatch <yenatch@gmail.com>2013-09-10 18:24:44 -0400
committeryenatch <yenatch@gmail.com>2013-09-10 19:30:31 -0400
commit4db0e3c18691b57bc8d00f02ea9fe7b116b97db1 (patch)
tree1a61e463118851ffe2ce0f020ae2e9b78b69e8ac
parent018cf26767647d233f939bc791a64d3b5d6e3bd1 (diff)
rewrite Makefile to handle multiple rgbasm objects
for now, any new files to preprocess will trigger the targets for all objects. this isn't a problem yet since there's still only one object.
-rw-r--r--Makefile21
1 files changed, 13 insertions, 8 deletions
diff --git a/Makefile b/Makefile
index 6fc7ce2bf..be357d323 100644
--- a/Makefile
+++ b/Makefile
@@ -4,6 +4,8 @@ PYTHON := python
TEXTFILES := $(shell find ./ -type f -name '*.asm')
TEXTQUEUE :=
+OBJS := pokecrystal.o
+
PNG_GFX := $(shell find gfx/ -type f -name '*.png')
LZ_GFX := $(shell find gfx/ -type f -name '*.lz')
TWOBPP_GFX := $(shell find gfx/ -type f -name '*.2bpp')
@@ -14,18 +16,21 @@ clean:
rm -f pokecrystal.o pokecrystal.gbc
@echo 'Removing preprocessed .tx files...'
@rm -f $(TEXTFILES:.asm=.tx)
-pokecrystal.o: $(TEXTFILES:.asm=.tx) $(LZ_GFX) $(TWOBPP_GFX)
- @echo "Preprocessing .asm to .tx..."
- @$(PYTHON) prequeue.py $(TEXTQUEUE)
- rgbasm -o pokecrystal.o pokecrystal.tx
+
+baserom.gbc:
+ @echo "Wait! Need baserom.gbc first. Check README and INSTALL for details." && false
+
.asm.tx:
$(eval TEXTQUEUE := $(TEXTQUEUE) $<)
@rm -f $@
-baserom.gbc:
- @echo "Wait! Need baserom.gbc first. Check README and INSTALL for details." && false
-pokecrystal.gbc: pokecrystal.o
- rgblink -n pokecrystal.sym -m pokecrystal.map -o $@ $<
+$(OBJS): $(TEXTFILES:.asm=.tx) $(LZ_GFX) $(TWOBPP_GFX)
+ @echo "Preprocessing .asm to .tx..."
+ @$(PYTHON) prequeue.py $(TEXTQUEUE)
+ rgbasm -o $@ $(@:.o=.tx)
+
+pokecrystal.gbc: $(OBJS)
+ rgblink -n pokecrystal.sym -m pokecrystal.map -o pokecrystal.gbc $<
rgbfix -Cjv -i BYTE -k 01 -l 0x33 -m 0x10 -p 0 -r 3 -t PM_CRYSTAL $@
pngs: