Remove old RULE privilege completely.
[pgsql.git] / doc / src / sgml / images / Makefile
blob645519095d066320273cf427b372e85ed298544d
1 # doc/src/sgml/images/Makefile
3 # see README in this directory about image handling
5 ALL_IMAGES = \
6 genetic-algorithm.svg \
7 gin.svg \
8 pagelayout.svg
10 DITAA = ditaa
11 DOT = dot
12 XSLTPROC = xsltproc --nonet
14 all: $(ALL_IMAGES)
16 %.svg.tmp: %.gv
17 $(DOT) -T svg -o $@ $<
19 %.svg.tmp: %.txt
20 $(DITAA) -E -S --svg $< $@
22 # Post-processing for SVG files coming from other tools
24 # Use --novalid to avoid loading SVG DTD if a file specifies it, since
25 # it might not be available locally, and we don't need it.
26 %.svg: %.svg.tmp fixup-svg.xsl
27 $(XSLTPROC) --novalid -o $@ $(word 2,$^) $<