diff options
| author | Bryan Bishop <kanzure@gmail.com> | 2015-03-08 12:14:42 -0500 |
|---|---|---|
| committer | Bryan Bishop <kanzure@gmail.com> | 2015-03-08 12:14:42 -0500 |
| commit | 53b30efdfcdeffbbca3892532e5a542056816787 (patch) | |
| tree | 49c9fd79e1316d9ffcbf510054742bb936e00281 /Makefile | |
| parent | 35644c330effcfb083591d20b3b5f780019ae24f (diff) | |
| parent | fa1c2c573a683185cf257cd3d6518b476f60e648 (diff) | |
Merge pull request #280 from dannye/master
Fix make clean; Final music incbins
Diffstat (limited to 'Makefile')
| -rw-r--r-- | Makefile | 5 |
1 files changed, 2 insertions, 3 deletions
@@ -1,7 +1,7 @@ PYTHON := python .SUFFIXES: -.SUFFIXES: .asm .tx .o .gbc .png .2bpp .1bpp .lz .pal .bin .blk .tilemap +.SUFFIXES: .asm .o .gbc .png .2bpp .1bpp .lz .pal .bin .blk .tilemap .PHONY: all clean crystal pngs .SECONDEXPANSION: @@ -54,8 +54,7 @@ all: $(roms) crystal: pokecrystal.gbc clean: - rm -f $(roms) $(all_obj) - find . -iname '*.tx' -exec rm {} + + rm -f $(roms) $(all_obj) $(roms:.gbc=.map) $(roms:.gbc=.sym) baserom.gbc: ; @echo "Wait! Need baserom.gbc first. Check README and INSTALL for details." && false |
