diff options
author | entrpntr <entrpntr@gmail.com> | 2020-05-09 21:31:50 -0400 |
---|---|---|
committer | entrpntr <entrpntr@gmail.com> | 2020-05-09 21:50:59 -0400 |
commit | 69aaf492403b201fe8584dedac8ab2f7f13b37d8 (patch) | |
tree | 38dd66932518036f245edfe706ccf452f1c60bbb /Makefile | |
parent | 230d94e45849baaa9c6bcc3c2c49958b2210c016 (diff) |
Fix labels, add PNGs.
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 9 |
1 files changed, 7 insertions, 2 deletions
@@ -58,7 +58,7 @@ tidy: clean: rm -f $(roms) $(gold_obj) $(silver_obj) $(roms:.gbc=.map) $(roms:.gbc=.sym) rgbdscheck.o - find gfx \( -iname "*.png" -not -iname "big_onix.png" \) -delete + find gfx \( -iname "*.png" -not -iname "big_onix.png" -not -iname "slots_3.png" \) -delete $(MAKE) clean -C tools/ compare: $(roms) @@ -120,4 +120,9 @@ pngs: find gfx -iname "*.[12]bpp" -exec touch {} + find gfx -iname "*.lz" -exec touch {} + find gfx/pokemon gfx/trainers -iname "*.[1,2]bpp" -delete - rm gfx/battle/dude.2bpp gfx/player/chris_back.2bpp gfx/trade/game_boy.2bpp + rm \ + gfx/battle/dude.2bpp \ + gfx/player/chris_back.2bpp \ + gfx/trade/game_boy.2bpp \ + gfx/pokegear/pokegear_sprites.2bpp \ + gfx/slots/slots_*.2bpp |