diff options
author | Bryan Bishop <kanzure@gmail.com> | 2013-08-29 11:56:20 -0500 |
---|---|---|
committer | Bryan Bishop <kanzure@gmail.com> | 2013-08-29 11:56:20 -0500 |
commit | 9da5768b34316e5b6a68daa9e789c8163b31d4ad (patch) | |
tree | 42869ca6bbb0a1eeeed6d8cbd34a9077d3c78b95 | |
parent | 61dd634698ad3f4e613f9d94b74e5b299dac5da8 (diff) |
fix baserom.gbc check in Makefile
-rw-r--r-- | Makefile | 8 |
1 files changed, 4 insertions, 4 deletions
@@ -7,8 +7,8 @@ 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') -all: pokecrystal.gbc - cmp baserom.gbc $< +all: baserom.gbc pokecrystal.gbc + cmp baserom.gbc pokecrystal.gbc clean: rm -f pokecrystal.o pokecrystal.gbc @echo 'rm -f $(TEXTFILES:.asm=.tx)' @@ -19,10 +19,10 @@ pokecrystal.o: $(TEXTFILES:.asm=.tx) wram.asm constants.asm $(shell find constan .asm.tx: $(eval TEXTQUEUE := $(TEXTQUEUE) $<) @rm -f $@ -baserom: +baserom.gbc: python -c "import os; assert 'baserom.gbc' in os.listdir('.'), 'Wait! Need baserom.gbc first. Check README and INSTALL for details.';" -pokecrystal.gbc: baserom pokecrystal.o +pokecrystal.gbc: pokecrystal.o rgblink -n pokecrystal.sym -m pokecrystal.map -o $@ $< rgbfix -Cjv -i BYTE -k 01 -l 0x33 -m 0x10 -p 0 -r 3 -t PM_CRYSTAL $@ |