From cf3fd4e13bc085d26ca507d8d6e0889e1e02716c Mon Sep 17 00:00:00 2001 From: yenatch Date: Mon, 2 Dec 2013 16:25:03 -0500 Subject: [PATCH] Makefile: empty targets for %.asm and baserom.gbc so make stops wasting time trying to find implicit rules --- Makefile | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) 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