diff options
author | Bryan Bishop <kanzure@gmail.com> | 2013-08-03 21:29:49 -0500 |
---|---|---|
committer | Bryan Bishop <kanzure@gmail.com> | 2013-08-03 21:29:49 -0500 |
commit | daa0760e2652f0019b20d3a93b4dda76be5f5288 (patch) | |
tree | 39fc6184c44e90e99af7bf5cef25bd3074602176 | |
parent | e880c29319f998e674d77c8ff85d92235dd24854 (diff) |
fix gfx/pics/%/front.lz make target
The parameter order was wrong, causing make to always try to make
front.lz files every run.
-rw-r--r-- | Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -30,7 +30,7 @@ pngs: lzs: $(LZ_GFX) $(TWOBPP_GFX) @: -gfx/pics/%/front.lz: gfx/pics/%/front.png gfx/pics/%/tiles.2bpp +gfx/pics/%/front.lz: gfx/pics/%/tiles.2bpp gfx/pics/%/front.png python extras/gfx.py png-to-lz --front $^ gfx/pics/%/tiles.2bpp: gfx/pics/%/tiles.png python extras/gfx.py png-to-2bpp $< |