summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authoryenatch <yenatch@gmail.com>2016-06-19 00:56:43 -0400
committeryenatch <yenatch@gmail.com>2016-06-19 00:56:43 -0400
commit3ac15eeee939ad8f37796fbb6a9e26aefd7cab6b (patch)
treeac1df4024b21b57bd7971894a478c361bb4d20e2
parent3c38d6b8146141f08031060cccd7adce298c0fab (diff)
Add `make tidy` to clean objects, but not images (which take longer to rebuild).
-rw-r--r--Makefile3
1 files changed, 3 insertions, 0 deletions
diff --git a/Makefile b/Makefile
index e4152c658..e119d1acd 100644
--- a/Makefile
+++ b/Makefile
@@ -65,6 +65,9 @@ clean:
rm -f $(ROM) $(ELF) $(OBJS) $(pokeruby_OBJS) $(pokesapphire_OBJS) $(C_SRCS:%.c=%.i)
find . \( -iname '*.1bpp' -o -iname '*.4bpp' -o -iname '*.8bpp' -o -iname '*.gbapal' -o -iname '*.lz' \) -exec rm {} +
+tidy:
+ rm -f $(ROM) $(ELF) $(OBJS) $(pokeruby_OBJS) $(pokesapphire_OBJS) $(C_SRCS:%.c=%.i)
+
include castform.mk
include tilesets.mk
include fonts.mk