Use PDF_COMPILE for PDF creation
[yaz-moved-to-github.git] / doc / Makefile.am
1 ## This file is part of the YAZ toolkit.
2 ## Copyright (C) 1995-2008 Index Data
3
4 SUBDIRS = common
5
6 XMLFILES=bookinfo.xml introduction.xml installation.xml \
7  indexdata.xml \
8  asn.xml tools.xml odr.xml comstack.xml frontend.xml license.xml \
9  future.xml zoom.xml credits.xml gfs-options.xml \
10  yaz.xml yaz-client-commands.xml soap.xml gfs-virtual.xml gfs-synopsis.xml \
11  std-oid-table.xml manref.xml
12
13 HTMLFILES = index.html
14
15 MANFILES=yaz-client.1 yaz-ztest.8 \
16         yaz-config.8 yaz.7 zoomsh.1 yaz-asncomp.1 \
17         yaz-marcdump.1 yaz-iconv.1 yaz-log.7 \
18         yaz-illclient.1 yaz-icu.1
19 REFFILES=yaz-client-man.xml yaz-ztest-man.xml yaz-config-man.xml \
20         yaz-man.xml zoomsh-man.xml yaz-asncomp-man.xml \
21         yaz-marcdump-man.xml yaz-iconv-man.xml yaz-log-man.xml \
22         yaz-illclient-man.xml yaz-icu-man.xml
23
24 SUPPORTFILES=entities.ent apilayer.obj local.ent.in
25
26 doc_DATA = $(HTMLFILES) apilayer.png 
27 man_MANS = $(MANFILES)
28
29 EXTRA_DIST = $(XMLFILES) $(SUPPORTFILES) $(man_MANS) $(REFFILES) \
30         $(doc_DATA)
31
32 std-oid-table.xml: $(srcdir)/../src/oid.csv
33         $(TCLSH) $(srcdir)/../src/oidtoc.tcl $(srcdir) $(srcdir)/../src/oid.csv std-oid-table.xml
34
35 yaz-client.1: $(srcdir)/yaz-client-man.xml $(srcdir)/yaz-client-commands.xml
36         $(MAN_COMPILE) $(srcdir)/yaz-client-man.xml
37
38 yaz-ztest.8: yaz-ztest-man.xml gfs-options.xml gfs-synopsis.xml gfs-virtual.xml
39         $(MAN_COMPILE) $(srcdir)/yaz-ztest-man.xml
40
41 yaz-config.8: yaz-config-man.xml
42         $(MAN_COMPILE) $(srcdir)/yaz-config-man.xml
43
44 yaz.7: yaz-man.xml
45         $(MAN_COMPILE) $(srcdir)/yaz-man.xml
46
47 zoomsh.1: zoomsh-man.xml
48         $(MAN_COMPILE) $(srcdir)/zoomsh-man.xml
49
50 yaz-asncomp.1: yaz-asncomp-man.xml
51         $(MAN_COMPILE) $(srcdir)/yaz-asncomp-man.xml
52
53 yaz-marcdump.1: yaz-marcdump-man.xml
54         $(MAN_COMPILE) $(srcdir)/yaz-marcdump-man.xml
55
56 yaz-iconv.1: yaz-iconv-man.xml
57         $(MAN_COMPILE) $(srcdir)/yaz-iconv-man.xml
58
59 yaz-illclient.1: yaz-illclient-man.xml
60         $(MAN_COMPILE) $(srcdir)/yaz-illclient-man.xml
61
62 yaz-log.7: yaz-log-man.xml
63         $(MAN_COMPILE) $(srcdir)/yaz-log-man.xml
64
65 yaz-icu.1: yaz-icu-man.xml
66         $(MAN_COMPILE) $(srcdir)/yaz-icu-man.xml
67
68 $(HTMLFILES): $(XMLFILES)
69         rm -f *.html
70         $(HTML_COMPILE) $(srcdir)/yaz.xml
71
72 index.tkl: $(XMLFILES)
73         rm -f *.tkl
74         $(TKL_COMPILE) $(srcdir)/yaz.xml
75
76 yaz.pdf: $(XMLFILES)
77         $(PDF_COMPILE) $(srcdir)/yaz.xml
78
79
80 yazj.pdf:
81         jade -E14 -D $(srcdir) -d common/print.dsl -t tex $(srcdir)/common/xml.dcl $(srcdir)/yaz.xml
82         rm -f yazj.pdf
83         cp yaz.tex yazj.tex
84         pdfjadetex yazj.tex
85         pdfjadetex yazj.tex >/dev/null
86         pdfjadetex yazj.tex >/dev/null
87
88 manref.xml: $(REFFILES) $(srcdir)/common/stripref.xsl
89         rm -f manref.xml
90         for i in $(REFFILES); do \
91                 xsltproc $(srcdir)/common/stripref.xsl $(srcdir)/$$i | sed 1d >>manref.xml; \
92         done
93
94 apilayer.png: 
95         tgif -print -xbm apilayer.obj
96         xbmtopbm <apilayer.xbm|pnmtopng >apilayer.png
97
98 dist-hook:
99         if test -f index.html; then d=.; else d="$(srcdir)"; fi; \
100         for p in $$d/*.html; do \
101                 cp $$p $(distdir); \
102         done
103
104 doc-clean:
105         rm -f *.html *.[0-9] *.pdf *.tkl
106
107 install-data-hook:
108         if test -f index.html; then d=.; else d="$(srcdir)"; fi; \
109         for p in $$d/*.html; do \
110                 $(docDATA_INSTALL) $$p $(DESTDIR)$(docdir); \
111         done
112
113 uninstall-hook:
114         rm -r $(DESTDIR)$(docdir)