mirror of https://github.com/pret/pokecrystal.git
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.
This commit is contained in:
parent
9ce74b3d2c
commit
85d30fa079
2
Makefile
2
Makefile
|
@ -4,7 +4,7 @@ MD5 := md5sum -c --quiet
|
||||||
.SUFFIXES:
|
.SUFFIXES:
|
||||||
.PHONY: all clean crystal crystal11
|
.PHONY: all clean crystal crystal11
|
||||||
.SECONDEXPANSION:
|
.SECONDEXPANSION:
|
||||||
.PRECIOUS: %.2bpp %.1bpp
|
.PRECIOUS: %.2bpp %.1bpp %.blk %.bin %.tilemap
|
||||||
|
|
||||||
poketools := extras/pokemontools
|
poketools := extras/pokemontools
|
||||||
gfx := $(PYTHON) gfx.py
|
gfx := $(PYTHON) gfx.py
|
||||||
|
|
Loading…
Reference in New Issue