diff options
author | luckytyphlosion <10688458+luckytyphlosion@users.noreply.github.com> | 2018-09-20 11:17:05 -0400 |
---|---|---|
committer | luckytyphlosion <10688458+luckytyphlosion@users.noreply.github.com> | 2018-09-20 11:17:05 -0400 |
commit | d6c44f0ca4b5bc93820e9ad1b46a3492dabdd26e (patch) | |
tree | 33ea124b49168ef5ae05fe3d0ba12a917c41e486 | |
parent | 0a2eabd59a3e23ad5904cf20a79d941ae3a0f806 (diff) |
Remove *.pal from gitignore, remove more build objects with make clean.
-rw-r--r-- | .gitignore | 4 | ||||
-rw-r--r-- | Makefile | 2 |
2 files changed, 4 insertions, 2 deletions
diff --git a/.gitignore b/.gitignore index 3a781d1df..55797d264 100644 --- a/.gitignore +++ b/.gitignore @@ -40,8 +40,8 @@ pokecrystal.txt *.2bpp *.1bpp *.lz -*.pal *.animated.tilemap gfx/pokemon/*/bitmask.asm gfx/pokemon/*/frames.asm -!gfx/pokemon/*/shiny.pal +!gfx/pokemon/unown/bitmask.asm +!gfx/pokemon/unown/frames.asm
\ No newline at end of file @@ -42,8 +42,10 @@ all: crystal crystal: pokecrystal.gbc crystal11: pokecrystal11.gbc +# TODO: clean bitmask.asm and frames.asm for all mons except unown clean: rm -f $(roms) $(crystal_obj) $(crystal11_obj) $(roms:.gbc=.map) $(roms:.gbc=.sym) + find . \( -iname '*.1bpp' -o -iname '*.2bpp' -o -iname '*.lz' -o -iname '*.gbcpal' -o -iname '*.dimensions' -o -iname '*.animated.tilemap' \) -exec rm {} + $(MAKE) clean -C tools/ compare: $(roms) |