diff options
author | yenatch <yenatch@gmail.com> | 2013-12-02 16:25:03 -0500 |
---|---|---|
committer | yenatch <yenatch@gmail.com> | 2013-12-02 16:25:03 -0500 |
commit | cf3fd4e13bc085d26ca507d8d6e0889e1e02716c (patch) | |
tree | d0b756284df23da2cd5a28e8a9e9ec91fc293f04 | |
parent | cc953049121677729484240dc557aa6d5532057b (diff) |
Makefile: empty targets for %.asm and baserom.gbc
so make stops wasting time trying to find implicit rules
-rw-r--r-- | Makefile | 4 |
1 files changed, 3 insertions, 1 deletions
@@ -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 |