From daa0760e2652f0019b20d3a93b4dda76be5f5288 Mon Sep 17 00:00:00 2001 From: Bryan Bishop Date: Sat, 3 Aug 2013 21:29:49 -0500 Subject: [PATCH] fix gfx/pics/%/front.lz make target The parameter order was wrong, causing make to always try to make front.lz files every run. --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 $<