summaryrefslogtreecommitdiffstats
path: root/images/Makefile
blob: a983b31856bc7c95a441af8be9f1ab1dded58424 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
.SUFFIXES: .png .svg

%.png: %.svg
	batik -m image/png -h 768 -w 1024 -d `pwd`/$@ file://`pwd`/$<

SVGFILES=watermark.svg
PNGFILES=${SVGFILES:.svg=.png}

all:	${PNGFILES}

clean:

distclean clobber: clean
	${RM} ${PNGFILES}

check:	${PNGFILES}
	xv ${PNGFILES}