Last active
August 29, 2015 14:02
-
-
Save Sjors/b6dde868dc3b534b0479 to your computer and use it in GitHub Desktop.
Makefile to generate iOs icons from an SVG.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
resolutions := 58 76 80 120 152 | |
all_FILES := $(foreach resolution, $(resolutions), icon-$(resolution).png) | |
all: $(all_FILES) | |
icon-%.png: icon-itunes-connect-1024.png | |
convert $< -resize $*x$* $@ | |
icon-itunes-connect-1024.png: icon.svg | |
convert $< $@ | |
clean: | |
rm *.png |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment