mirror of https://github.com/pret/pokecrystal.git
no need to use python if baserom.gbc doesn't exist
this part is only reached if baserom.gbc doesn't exist, so it's pointless to check if it does
This commit is contained in:
parent
2b38b9ba21
commit
6e6514c2c9
2
Makefile
2
Makefile
|
@ -22,7 +22,7 @@ pokecrystal.o: $(TEXTFILES:.asm=.tx) wram.asm constants.asm $(shell find constan
|
|||
$(eval TEXTQUEUE := $(TEXTQUEUE) $<)
|
||||
@rm -f $@
|
||||
baserom.gbc:
|
||||
$(PYTHON) -c "import os; assert 'baserom.gbc' in os.listdir('.'), 'Wait! Need baserom.gbc first. Check README and INSTALL for details.';"
|
||||
@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 $@ $<
|
||||
|
|
Loading…
Reference in New Issue