Skip to content

Instantly share code, notes, and snippets.

@Sjors
Last active August 29, 2015 14:02
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Sjors/b6dde868dc3b534b0479 to your computer and use it in GitHub Desktop.
Save Sjors/b6dde868dc3b534b0479 to your computer and use it in GitHub Desktop.
Makefile to generate iOs icons from an SVG.
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