summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authoryenatch <yenatch@gmail.com>2015-08-29 11:02:56 -0700
committeryenatch <yenatch@gmail.com>2015-08-29 11:02:56 -0700
commitf0af75e8d203a731a8652901e7d3d621bd176fb0 (patch)
tree9ae3418d9198dce18848072c030df1eeedc09fdd
parent69198a5b3d75c1282b3f789fb378b9e50d8addd2 (diff)
Fix touching in make pngs.
-rw-r--r--Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index e9a324c9c..e791e3491 100644
--- a/Makefile
+++ b/Makefile
@@ -76,8 +76,8 @@ pokecrystal.gbc: $(crystal_obj)
pngs:
find . -iname "*.lz" -exec $(gfx) unlz {} +
find . -iname "*.[12]bpp" -exec $(gfx) png {} +
- find . -iname "*.[12]bpp" -exec touch {} +
- find . -iname "*.lz" -exec touch {} +
+ find . -iname "*.[12]bpp" -exec touch {} \;
+ find . -iname "*.lz" -exec touch {} \;
%.2bpp: %.png ; $(gfx) 2bpp $<
%.1bpp: %.png ; $(gfx) 1bpp $<