1 2 3 4 5 6 7 8 9 10
SVGFILES=$(wildcard *.svg) PNGFILES=$(subst svg,png,${SVGFILES}) all: ${PNGFILES} clean: rm -f ${PNGFILES} %.png: %.svg inkscape -e $@ -w 16 -h 16 $<