mirror of
https://gitlab.com/xCrystal/pokecrystal-board.git
synced 2024-11-16 11:27:33 -08:00
fix baserom.gbc check in Makefile
This commit is contained in:
parent
61dd634698
commit
9da5768b34
8
Makefile
8
Makefile
@ -7,8 +7,8 @@ PNG_GFX := $(shell find gfx/ -type f -name '*.png')
|
|||||||
LZ_GFX := $(shell find gfx/ -type f -name '*.lz')
|
LZ_GFX := $(shell find gfx/ -type f -name '*.lz')
|
||||||
TWOBPP_GFX := $(shell find gfx/ -type f -name '*.2bpp')
|
TWOBPP_GFX := $(shell find gfx/ -type f -name '*.2bpp')
|
||||||
|
|
||||||
all: pokecrystal.gbc
|
all: baserom.gbc pokecrystal.gbc
|
||||||
cmp baserom.gbc $<
|
cmp baserom.gbc pokecrystal.gbc
|
||||||
clean:
|
clean:
|
||||||
rm -f pokecrystal.o pokecrystal.gbc
|
rm -f pokecrystal.o pokecrystal.gbc
|
||||||
@echo 'rm -f $(TEXTFILES:.asm=.tx)'
|
@echo 'rm -f $(TEXTFILES:.asm=.tx)'
|
||||||
@ -19,10 +19,10 @@ pokecrystal.o: $(TEXTFILES:.asm=.tx) wram.asm constants.asm $(shell find constan
|
|||||||
.asm.tx:
|
.asm.tx:
|
||||||
$(eval TEXTQUEUE := $(TEXTQUEUE) $<)
|
$(eval TEXTQUEUE := $(TEXTQUEUE) $<)
|
||||||
@rm -f $@
|
@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.';"
|
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 $@ $<
|
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 $@
|
rgbfix -Cjv -i BYTE -k 01 -l 0x33 -m 0x10 -p 0 -r 3 -t PM_CRYSTAL $@
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user