diff options
author | yenatch <yenatch@gmail.com> | 2013-09-09 23:45:52 -0400 |
---|---|---|
committer | yenatch <yenatch@gmail.com> | 2013-09-09 23:47:44 -0400 |
commit | 2b38b9ba21181669982552975e99990289f91d4a (patch) | |
tree | 62b141a5dee6a9538f8163966231664852f174be | |
parent | 0d6efda9bb3aa99cc9d28b9b9e7edaae121b7d75 (diff) |
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
-rw-r--r-- | Makefile | 5 |
1 files changed, 3 insertions, 2 deletions
@@ -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) $<) |