aboutsummaryrefslogtreecommitdiffstats
path: root/cgi-bin/gfx/Makefile
blob: bef9f6525b772a9cb922fab09d7409bff2245c2d (plain)
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 $<