Documentation for YAZ is now based on the Docbook XML/XSLT using
[yaz-moved-to-github.git] / doc / Makefile.am
index 09110db..dd267cc 100644 (file)
-## $Id: Makefile.am,v 1.8 2000-06-08 13:40:14 adam Exp $
+## $Id: Makefile.am,v 1.68 2006-05-24 12:33:21 adam Exp $
 
-docdir=$(pkgdatadir)/doc
+docdir=$(datadir)/doc/@PACKAGE@
 
-doc_DATA = yaz.sgml profiles.sgml \
- yaz.txt yaz.ps profiles.txt profiles.ps yaz.html \
- yaz-1.html yaz-2.html yaz-3.html yaz-4.html yaz-5.html \
- yaz-6.html yaz-7.html yaz-8.html yaz-9.html
+SUBDIRS = common
 
-EXTRA_DIST = yaz.sgml profiles.sgml \
- yaz.txt yaz.ps profiles.txt profiles.ps yaz.html \
- yaz-1.html yaz-2.html yaz-3.html yaz-4.html yaz-5.html \
- yaz-6.html yaz-7.html yaz-8.html yaz-9.html
+XMLFILES=yaz.xml.in bookinfo.xml introduction.xml installation.xml \
+ indexdata.xml \
+ asn.xml tools.xml odr.xml comstack.xml frontend.xml license.xml \
+ future.xml client.xml zoom.xml credits.xml gfs-options.xml \
+ yaz-client-commands.xml soap.xml gfs-virtual.xml gfs-synopsis.xml
 
-yaz.txt: yaz.sgml
-       sgml2txt -f yaz.sgml
+HTMLFILES = \
+ asn.external.html asn.html asn.oid.html asn.pdu.html asn.preparing.html \
+ client.commands.html client.html client.invoking.html client.searching.html \
+ comstack.addresses.html comstack.client.html comstack.common.html \
+ comstack.diagnostics.html comstack.html comstack.introduction.html \
+ comstack.server.html comstack.ssl.html comstack.summary.html \
+ credits.html future.html \
+ indexdata.html installation.html installation.unix.html \
+ installation.win32.html introduction.api.html introduction.html \
+ license.html license.other.html odr.debugging.html odr.html \
+ odr.programming.html odr.use.html server.backendfunctions.html \
+ server.backend.html server.frontend.html server.html server.invocation.html \
+ server.main.html server.vhosts.html \
+ soap.html soap.http.html soap.xml.html soap.srw.html \
+ tools.html tools.marc.html tools.nmem.html tools.log.html tools.oid.html \
+ index.html zoom.events.html zoom.ext.html zoom.html zoom.options.html \
+ zoom.query.html zoom.records.html zoom.resultsets.html zoom.scan.html
 
-yaz.ps: yaz.sgml
-       sgml2latex -p a4 -o ps yaz.sgml
+MANFILES=yaz-client.1 yaz-ztest.8 \
+       yaz-config.8 yaz.7 zoomsh.1 yaz-asncomp.1 \
+       yaz-marcdump.1 yaz-iconv.1 yaz-log.7
+REFFILES=yaz-client-man.xml yaz-ztest-man.xml yaz-config-man.xml \
+       yaz-man.xml zoomsh-man.xml yaz-asncomp-man.xml \
+       yaz-marcdump-man.xml yaz-iconv-man.xml yaz-log-man.xml
 
-profiles.txt: profiles.sgml
-       sgml2txt -f profiles.sgml
+SUPPORTFILES=entities.ent apilayer.obj 
+
+doc_DATA = $(HTMLFILES) apilayer.png 
+man_MANS = $(MANFILES)
+
+EXTRA_DIST = $(XMLFILES) $(SUPPORTFILES) $(man_MANS) $(REFFILES) \
+       $(doc_DATA)
+
+yaz-client.1: $(srcdir)/yaz-client-man.xml $(srcdir)/yaz-client-commands.xml
+       xsltproc common/man.xsl $(srcdir)/yaz-client-man.xml
+
+yaz-ztest.8: yaz-ztest-man.xml gfs-options.xml gfs-synopsis.xml gfs-virtual.xml
+       xsltproc common/man.xsl $(srcdir)/yaz-ztest-man.xml
+
+yaz-config.8: yaz-config-man.xml
+       xsltproc common/man.xsl $(srcdir)/yaz-config-man.xml
+
+yaz.7: yaz-man.xml
+       xsltproc common/man.xsl $(srcdir)/yaz-man.xml
+
+zoomsh.1: zoomsh-man.xml
+       xsltproc common/man.xsl $(srcdir)/zoomsh-man.xml
+
+yaz-asncomp.1: yaz-asncomp-man.xml
+       xsltproc common/man.xsl $(srcdir)/yaz-asncomp-man.xml
+
+yaz-marcdump.1: yaz-marcdump-man.xml
+       xsltproc common/man.xsl $(srcdir)/yaz-marcdump-man.xml
+
+yaz-iconv.1: yaz-iconv-man.xml
+       xsltproc common/man.xsl $(srcdir)/yaz-iconv-man.xml
+
+yaz-log.7: yaz-log-man.xml
+       xsltproc common/man.xsl $(srcdir)/yaz-log-man.xml
+
+$(HTMLFILES): $(XMLFILES)
+       xsltproc common/html.xsl $(srcdir)/yaz.xml
+
+yaz.pdf: $(XMLFILES)
+       if test ! -f common/id.png ; then cp $(srcdir)/common/id.png common; fi
+       if test ! -f apilayer.png ; then cp $(srcdir)/apilayer.png .; fi
+       jade -E14 -D $(srcdir) -d common/print.dsl -t tex $(srcdir)/common/xml.dcl yaz.xml
+       pdfjadetex yaz.tex >/dev/null
+       pdfjadetex yaz.tex >/dev/null
+       pdfjadetex yaz.tex >/dev/null
+
+index.tkl: $(XMLFILES) common/tkl.xsl
+       xsltproc common/tkl.xsl yaz.xml
+
+apilayer.png: 
+       tgif -print -xbm apilayer.obj
+       xbmtopbm <apilayer.xbm|pnmtopng >apilayer.png
+
+dist-hook:
+       for f in $(srcdir)/*.html; do \
+               found=0; \
+               b=`basename $$f`; \
+               for h in $(HTMLFILES); do \
+                       if test "$$h" = "$$b"; then \
+                               found=1; \
+                       fi \
+               done; \
+               if test "$$found" = "0"; then \
+                       echo "$$b not found in HTMLFILES"; \
+                       exit 1; \
+               fi \
+       done
 
-profiles.ps: profiles.sgml
-       sgml2latex -p a4 -o ps profiles.sgml
 
-yaz.html: yaz.sgml
-       sgml2html yaz.sgml