Convert multi.svg to multi.pdf and include it (kernel compile unnecessary)
[metaproxy-moved-to-github.git] / doc / Makefile.am
1 ## $Id: Makefile.am,v 1.14 2006-04-27 16:38:13 adam Exp $
2 docdir=$(datadir)/doc/@PACKAGE@
3
4 SUBDIRS = common
5
6 SUFFIXES=.3mp .1
7
8 XMLFILES = main.xml.in book.xml manref.xml progref.xml copyright.xml \
9         metaproxy.xml
10
11 MAINXML = main.xml
12
13 XMLMAN   = auth_simple.xml backend_test.xml frontend_net.xml \
14         http_file.xml log.xml multi.xml query_rewrite.xml \
15         session_shared.xml template.xml virt_db.xml z3950_client.xml
16 MANFILES = auth_simple.3mp backend_test.3mp frontend_net.3mp \
17         http_file.3mp log.3mp multi.3mp query_rewrite.3mp \
18         session_shared.3mp template.3mp virt_db.3mp z3950_client.3mp \
19         metaproxy.1
20
21 HTMLFILES = architecture.html \
22         classes.html \
23         configuration.html \
24         example.configuration.html \
25         extensions.html \
26         filterref.html \
27         filters.html \
28         future.directions.html \
29         individual.classes.html \
30         installation.html \
31         installation.debian.html \
32         installation.windows.html \
33         introduction.html \
34         licence.html \
35         metaproxy.html \
36         multidb.html \
37         multidb.virt_db.html \
38         multidb.picture.html \
39         other.source.files.html \
40         overview.filter.types.html \
41         overview.xml.structure.html \
42         refguide.html
43
44 PNGFILES=multi.png
45
46 doc_DATA = $(HTMLFILES) metaproxy.pdf $(PNGFILES)
47 man_MANS = $(MANFILES)
48
49 EXTRA_DIST = $(XMLFILES) $(XMLMAN) $(doc_DATA) $(man_MANS) multi.svg
50
51 $(HTMLFILES): $(XMLFILES) multi.png
52         jade -E14 -D $(srcdir) -d common/html.dsl -t sgml $(srcdir)/common/xml.dcl $(MAINXML)
53
54 .xml.3mp:
55         docbook2man $<
56
57 .xml.1:
58         docbook2man $<
59
60 metaproxy.pdf: $(XMLFILES) multi.pdf
61         for i in $(PNGFILES) multi.pdf; do \
62                 if test ! -f $$i; then ln -s $(srcdir)/$$i .; fi; \
63         done
64         jade -E14 -D $(srcdir) -d common/print.dsl -t tex $(srcdir)/common/xml.dcl $(MAINXML)
65         rm -f metaproxy.tex
66         mv main.tex metaproxy.tex
67         pdfjadetex metaproxy.tex >/dev/null
68         pdfjadetex metaproxy.tex >/dev/null
69         pdfjadetex metaproxy.tex >/dev/null
70
71 index.tkl: $(XMLFILES) common/tkl.xsl
72         xsltproc common/tkl.xsl $(MAINXML)
73
74 manref.xml: $(XMLMAN) $(srcdir)/common/ref2dbinc.xsl
75         rm -f manref.xml
76         for i in $(XMLMAN); do \
77                 xsltproc $(srcdir)/common/ref2dbinc.xsl $$i | sed 1d >> manref.xml; \
78         done
79
80 progref.xml: metaproxy.xml
81         rm -f $@
82         xsltproc $(srcdir)/common/ref2dbinc.xsl $? | sed 1d >> $@
83
84 multi.png: multi.svg
85         inkscape --export-png=$@ --export-width=800 --export-area-drawing $?
86
87 multi.eps: multi.svg
88         inkscape --export-eps=$@ --export-bbox-page $?
89
90 %.pdf: %.eps
91         epstopdf -hires $?
92
93 clean-data-hook:
94         rm -f [0-9]* *.bak
95
96 dist-hook:
97         for f in $(srcdir)/*.html; do \
98                 found=0; \
99                 b=`basename $$f`; \
100                 for h in $(HTMLFILES); do \
101                         if test "$$h" = "$$b"; then \
102                                 found=1; \
103                         fi \
104                 done; \
105                 if test "$$found" = "0"; then \
106                         echo "$$f not found in HTMLFILES"; \
107                         exit 1; \
108                 fi \
109         done