summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBryan Bishop <kanzure@gmail.com>2013-08-03 21:29:49 -0500
committerBryan Bishop <kanzure@gmail.com>2013-08-03 21:29:49 -0500
commitdaa0760e2652f0019b20d3a93b4dda76be5f5288 (patch)
tree39fc6184c44e90e99af7bf5cef25bd3074602176
parente880c29319f998e674d77c8ff85d92235dd24854 (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--Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index d66ab3257..6a75eeef0 100644
--- a/Makefile
+++ b/Makefile
@@ -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 $<