Skip to content

Commit

Permalink
Remove *.pal from gitignore, remove more build objects with make clean.
Browse files Browse the repository at this point in the history
  • Loading branch information
luckytyphlosion committed Sep 20, 2018
1 parent 0a2eabd commit d6c44f0
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .gitignore
Expand Up @@ -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
2 changes: 2 additions & 0 deletions Makefile
Expand Up @@ -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)
Expand Down

0 comments on commit d6c44f0

Please sign in to comment.