diff options
author | yenatch <yenatch@gmail.com> | 2016-06-19 00:56:43 -0400 |
---|---|---|
committer | yenatch <yenatch@gmail.com> | 2016-06-19 00:56:43 -0400 |
commit | 3ac15eeee939ad8f37796fbb6a9e26aefd7cab6b (patch) | |
tree | ac1df4024b21b57bd7971894a478c361bb4d20e2 | |
parent | 3c38d6b8146141f08031060cccd7adce298c0fab (diff) |
Add `make tidy` to clean objects, but not images (which take longer to rebuild).
-rw-r--r-- | Makefile | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -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 |