ref: 53d208ce4ce459506ad2de6a6860edbef49f21c4
parent: ddc4a929058ff103cac5743ca39bb8e4b520ee90
author: Bryan Bishop <[email protected]>
date: Wed Aug 28 12:22:50 EDT 2013
fail fast when the baserom.gbc file doesn't exist One day this will not be required. But until then, waiting one or more seconds for the build to fail just to learn that you forgot baserom.gbc is really silly. This makes failure almost instantaneous compared to before, which would take between one and ten seconds depending on system performance. fixes #167
--- a/Makefile
+++ b/Makefile
@@ -19,8 +19,10 @@
.asm.tx:
$(eval TEXTQUEUE := $(TEXTQUEUE) $<)
@rm -f $@
+baserom:
+ python -c "import os; assert 'baserom.gbc' in os.listdir('.'), 'Wait! Need baserom.gbc first. Check README and INSTALL for details.';"
-pokecrystal.gbc: pokecrystal.o
+pokecrystal.gbc: baserom 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 $@