From 2b38b9ba21181669982552975e99990289f91d4a Mon Sep 17 00:00:00 2001 From: yenatch Date: Mon, 9 Sep 2013 23:45:52 -0400 Subject: [PATCH] suppress .tx handling in Makefile there are too many .tx files for the commands to be meaningful better to just look at the makefile to see what's going on --- Makefile | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index 1fe1789ad..d3cbae3c5 100644 --- a/Makefile +++ b/Makefile @@ -12,10 +12,11 @@ all: baserom.gbc pokecrystal.gbc cmp baserom.gbc pokecrystal.gbc clean: rm -f pokecrystal.o pokecrystal.gbc - @echo 'rm -f $(TEXTFILES:.asm=.tx)' + @echo 'Removing preprocessed .tx files...' @rm -f $(TEXTFILES:.asm=.tx) pokecrystal.o: $(TEXTFILES:.asm=.tx) wram.asm constants.asm $(shell find constants/ -type f -name '*.asm') hram.asm gbhw.asm $(LZ_GFX) $(TWOBPP_GFX) - $(PYTHON) prequeue.py $(TEXTQUEUE) + @echo "Preprocessing .asm to .tx..." + @$(PYTHON) prequeue.py $(TEXTQUEUE) rgbasm -o pokecrystal.o pokecrystal.asm .asm.tx: $(eval TEXTQUEUE := $(TEXTQUEUE) $<)