images: Added Makefile for resizing.

This commit is contained in:
Glenn Y. Rolland 2011-02-12 16:04:15 +01:00
parent a077fe0216
commit 1fcac77398

9
images/Makefile Normal file
View file

@ -0,0 +1,9 @@
SPRITE_PCENT=15
resize:
-mkdir $(SPRITE_PCENT)p
for i in fullsize/*; do \
convert -resize $(SPRITE_PCENT)% $$i $${i/fullsize/$(SPRITE_PCENT)p}; \
done