shithub: pokecrystal

Download patch

ref: cf3fd4e13bc085d26ca507d8d6e0889e1e02716c
parent: cc953049121677729484240dc557aa6d5532057b
author: yenatch <[email protected]>
date: Mon Dec 2 11:25:03 EST 2013

Makefile: empty targets for %.asm and baserom.gbc

so make stops wasting time trying to find implicit rules

--- a/Makefile
+++ b/Makefile
@@ -35,7 +35,7 @@
 	@echo 'Removing preprocessed .tx files...'
 	@rm -f $(TEXTFILES:.asm=.tx)
 
-baserom.gbc:
+baserom.gbc: ;
 	@echo "Wait! Need baserom.gbc first. Check README and INSTALL for details." && false
 
 PNGS   := $(shell find gfx/ -type f -name '*.png')
@@ -54,6 +54,8 @@
 .asm.tx:
 	$(eval TEXTQUEUE := $(TEXTQUEUE) $<)
 	@rm -f $@
+
+%.asm: ;
 
 globals.asm: $(TEXTFILES:.asm=.tx)
 	@echo "Creating globals.asm..."