summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorU-Daniel-PC\Daniel <corrnondacqb@yahoo.com>2015-02-14 10:14:58 -0500
committerU-Daniel-PC\Daniel <corrnondacqb@yahoo.com>2015-02-14 10:14:58 -0500
commit370ffcfd8d911dd4c2e8e08fa361cc1d68d6446a (patch)
tree12bb904aba7431924fe96fcb7896e6a0a2952a18
parent35644c330effcfb083591d20b3b5f780019ae24f (diff)
Fix make clean
no more .tx files remove rgbds generated files, .map and .sym
-rw-r--r--Makefile5
1 files changed, 2 insertions, 3 deletions
diff --git a/Makefile b/Makefile
index 5fb3c97d1..ca59f0bcf 100644
--- a/Makefile
+++ b/Makefile
@@ -1,7 +1,7 @@
PYTHON := python
.SUFFIXES:
-.SUFFIXES: .asm .tx .o .gbc .png .2bpp .1bpp .lz .pal .bin .blk .tilemap
+.SUFFIXES: .asm .o .gbc .png .2bpp .1bpp .lz .pal .bin .blk .tilemap
.PHONY: all clean crystal pngs
.SECONDEXPANSION:
@@ -54,8 +54,7 @@ all: $(roms)
crystal: pokecrystal.gbc
clean:
- rm -f $(roms) $(all_obj)
- find . -iname '*.tx' -exec rm {} +
+ rm -f $(roms) $(all_obj) $(roms:.gbc=.map) $(roms:.gbc=.sym)
baserom.gbc: ;
@echo "Wait! Need baserom.gbc first. Check README and INSTALL for details." && false