Add an init makefile target to prevent data that can't be reasonably reproduced from being rebuilt.

This is only meant to be run once.
This commit is contained in:
yenatch
2015-09-01 00:19:28 -04:00
parent b74abd7c21
commit b8da3874bb
2 changed files with 9 additions and 1 deletions

View File

@@ -79,6 +79,11 @@ pngs:
find . -iname "*.[12]bpp" -exec touch {} \;
find . -iname "*.lz" -exec touch {} \;
init:
find . -iname "*.[12]bpp" -exec touch {} \;
find . -iname "*.lz" -exec touch {} \;
%.2bpp: %.png ; $(gfx) 2bpp $<
%.1bpp: %.png ; $(gfx) 1bpp $<
%.lz: % ; $(gfx) lz $<