diff options
author | yenatch <yenatch@gmail.com> | 2016-03-21 08:04:00 -0400 |
---|---|---|
committer | yenatch <yenatch@gmail.com> | 2016-03-21 08:04:00 -0400 |
commit | 85d30fa0796f02a6d390fe4694bcbf21b8398fb5 (patch) | |
tree | 9d4dccd863dfd2f595093f124251e69d72b05ca0 | |
parent | 9ce74b3d2c7b0a6a678e234fd06dd898e1e372d0 (diff) |
Fix make deleting files that aren't actually intermediate.
make was deciding that a couple .blk files were actually intermediate.
Still don't know what is causing that issue. This is a temporary fix
that will probably be forgotten about and become a permanent one.
-rw-r--r-- | Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -4,7 +4,7 @@ MD5 := md5sum -c --quiet .SUFFIXES: .PHONY: all clean crystal crystal11 .SECONDEXPANSION: -.PRECIOUS: %.2bpp %.1bpp +.PRECIOUS: %.2bpp %.1bpp %.blk %.bin %.tilemap poketools := extras/pokemontools gfx := $(PYTHON) gfx.py |