summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authoryenatch <yenatch@gmail.com>2013-09-10 00:08:49 -0400
committeryenatch <yenatch@gmail.com>2013-09-10 00:09:43 -0400
commit6e6514c2c9e08a263a9067998161eb4a1cb6bb48 (patch)
treee6b27979d96c7b950c5e69d4bf07704eab808ba7
parent2b38b9ba21181669982552975e99990289f91d4a (diff)
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
-rw-r--r--Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index d3cbae3c5..d480ceac1 100644
--- a/Makefile
+++ b/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 $@ $<