Mercurial > trustbridge
view ui/img/src/Makefile @ 1192:7839d3d696a1
(issue131) Update Install documentation for qt 5.3.2
author | Andre Heinecke <andre.heinecke@intevation.de> |
---|---|
date | Mon, 22 Sep 2014 16:27:00 +0200 |
parents | 76c469b460d8 |
children | b64f847bde09 |
line wrap: on
line source
# Makefile inspired from oxygen-icons-4.13.0/scalable/export_pngs.sh # needs ImageMagick and Inkscape svgs := $(wildcard *.svg) targets := $(patsubst %.svg,%-48.png,$(svgs)) all: $(targets) clean: rm $(targets) $(patsubst %.svg,%.png,$(svgs)) %-48.png:%.svg inkscape --without-gui "--export-png=$*.png" --export-dpi=72 --export-background-opacity=0 --export-width=512 --export-height=512 "$<" >/dev/null convert -filter Sinc -resize 48x48 "$*.png" "$@"