diff options
| author | yenatch <yenatch@gmail.com> | 2015-09-01 00:19:28 -0400 |
|---|---|---|
| committer | yenatch <yenatch@gmail.com> | 2015-09-01 00:20:31 -0400 |
| commit | b8da3874bbc06e858b7b2d7a602fe33baa046e93 (patch) | |
| tree | 0c0f5d99467b0bb4ca42739568d08ed17fe9dac2 /Makefile | |
| parent | b74abd7c21c3735a8010e5a9c6022936d9cd18b2 (diff) | |
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.
Diffstat (limited to 'Makefile')
| -rw-r--r-- | Makefile | 5 |
1 files changed, 5 insertions, 0 deletions
@@ -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 $< |
