summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authoryenatch <yenatch@gmail.com>2013-12-02 16:25:03 -0500
committeryenatch <yenatch@gmail.com>2013-12-02 16:25:03 -0500
commitcf3fd4e13bc085d26ca507d8d6e0889e1e02716c (patch)
treed0b756284df23da2cd5a28e8a9e9ec91fc293f04
parentcc953049121677729484240dc557aa6d5532057b (diff)
Makefile: empty targets for %.asm and baserom.gbc
so make stops wasting time trying to find implicit rules
-rw-r--r--Makefile4
1 files changed, 3 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 9a2a94ca4..1f0a5ddc1 100644
--- a/Makefile
+++ b/Makefile
@@ -35,7 +35,7 @@ clean:
@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')
@@ -55,6 +55,8 @@ $(shell \
$(eval TEXTQUEUE := $(TEXTQUEUE) $<)
@rm -f $@
+%.asm: ;
+
globals.asm: $(TEXTFILES:.asm=.tx)
@echo "Creating globals.asm..."
@touch globals.asm