diff options
author | YamaArashi <shadow962@live.com> | 2016-09-23 19:29:09 -0700 |
---|---|---|
committer | YamaArashi <shadow962@live.com> | 2016-09-23 19:29:09 -0700 |
commit | 733604712e32e9a838b7f81b368df798c86c074d (patch) | |
tree | a0c1ab259980388dfb5e60b709c2998c9579f514 | |
parent | bbc0da892f0db65f23833820b99f499de23a0ce1 (diff) |
'tidy' shouldn't delete song data
-rw-r--r-- | Makefile | 5 |
1 files changed, 4 insertions, 1 deletions
@@ -110,13 +110,16 @@ compare_sapphire_rev2: sapphire_rev2 clean: tidy rm -f sound/programmable_wave_samples/*.bin sound/direct_sound_samples/*.bin sound/**/*.pcm + rm -f $(SONG_OBJS) find . \( -iname '*.1bpp' -o -iname '*.4bpp' -o -iname '*.8bpp' -o -iname '*.gbapal' -o -iname '*.lz' -o -iname '*.rl' \) -exec rm {} + tidy: rm -f pokeruby.gba pokesapphire.gba rm -f pokeruby.elf pokesapphire.elf rm -f pokeruby.map pokesapphire.map - rm -f $(OBJS) + rm -f $(C_OBJS) + rm -f $(ASM_OBJS) + rm -f $(DATA_ASM_OBJS) rm -f $(C_SRCS:%.c=%.i) rm -f $(C_SRCS:%.c=%.s) |