Produce PDf idzebra.pdf (was zebra.pdf)
[idzebra-moved-to-github.git] / doc / Makefile.am
index d0aa299..8d315ae 100644 (file)
@@ -1,23 +1,77 @@
-# $Id: Makefile.am,v 1.2 2000-04-06 09:03:28 adam Exp $
-docdir=$(pkgdatadir)/doc
+SUBDIRS = common
 
-doc_DATA = zebra.sgml gils.sgml zebra.txt zebra.ps zebra.html \
- zebra-1.html zebra-2.html zebra-3.html zebra-4.html zebra-5.html \
- zebra-6.html zebra-7.html zebra-8.html zebra-9.html
+docdir=$(datadir)/doc/$(PACKAGE)$(PACKAGE_SUFFIX)
 
-EXTRA_DIST = zebra.sgml gils.sgml zebra.txt zebra.ps zebra.html \
- zebra-1.html zebra-2.html zebra-3.html zebra-4.html zebra-5.html \
- zebra-6.html zebra-7.html zebra-8.html zebra-9.html
+XMLMAN = zebraidx.xml zebrasrv.xml idzebra-config.xml
 
-zebra.txt: zebra.sgml
-       sgml2txt -f zebra.sgml
+XMLFILES =  \
+   administration.xml \
+   architecture.xml \
+   field-structure.xml \
+   gpl-2.0.xml \
+   indexdata.xml \
+   installation.xml \
+   introduction.xml \
+   license.xml \
+   marc_indexing.xml \
+   querymodel.xml \
+   recordmodel-domxml.xml \
+   recordmodel-alvisxslt.xml \
+   recordmodel-grs.xml \
+   manref.xml \
+   tutorial.xml \
+   idzebra.xml \
+   zebrasrv-options.xml \
+   zebrasrv-synopsis.xml \
+   zebrasrv-virtual.xml 
 
-zebra.ps: zebra.sgml
-       sgml2latex -o ps -p a4 zebra.sgml
+#examples.xml 
+#quickstart.xml
 
-zebra.html: zebra.sgml
-       sgml2html zebra.sgml
 
+HTMLFILES = index.html
+
+PNGFILES = zebra.png domfilter.png
+
+MANFILES=zebraidx$(PACKAGE_SUFFIX).1 \
+       zebrasrv$(PACKAGE_SUFFIX).8 \
+       idzebra-config$(PACKAGE_SUFFIX).1
+
+doc_DATA = $(HTMLFILES) $(PNGFILES)
+man_MANS = $(MANFILES)
+
+EXTRA_DIST = $(XMLFILES) $(XMLMAN) \
+       $(doc_DATA) zebra.eps $(man_MANS) \
+       marc_indexing.xml entities.ent local.ent.in domfilter.svg
+
+zebraidx$(PACKAGE_SUFFIX).1: zebraidx.xml
+       $(MAN_COMPILE) $(srcdir)/zebraidx.xml
+       mv zebraidx.1 zebraidx$(PACKAGE_SUFFIX).1
+
+zebrasrv$(PACKAGE_SUFFIX).8: zebrasrv.xml  zebrasrv-options.xml \
+            zebrasrv-synopsis.xml zebrasrv-virtual.xml
+       $(MAN_COMPILE) $(srcdir)/zebrasrv.xml
+       mv zebrasrv.8 zebrasrv$(PACKAGE_SUFFIX).8
+
+idzebra-config$(PACKAGE_SUFFIX).1: idzebra-config.xml
+       $(MAN_COMPILE) $(srcdir)/idzebra-config.xml
+       mv idzebra-config.1 idzebra-config$(PACKAGE_SUFFIX).1
+
+$(HTMLFILES): $(XMLFILES) $(PNGFILES)
+       rm -f *.html
+       $(HTML_COMPILE) $(srcdir)/idzebra.xml
+
+idzebra.pdf: $(XMLFILES) domfilter.pdf
+       for i in $(PNGFILES); do \
+               if test ! -f $$i; then cp $(srcdir)/$$i .; fi; \
+       done
+       $(PDF_COMPILE) $(srcdir)/idzebra.xml
+
+manref.xml: $(XMLMAN) $(srcdir)/common/ref2dbinc.xsl
+       rm -f manref.xml
+       for i in $(XMLMAN); do \
+               xsltproc $(srcdir)/common/stripref.xsl $(srcdir)/$$i | sed 1d >> manref.xml; \
+       done
 
 gils.txt: gils.sgml
        sgml2txt -f gils.sgml
@@ -28,6 +82,36 @@ gils.ps: gils.sgml
 gils.html: gils.sgml
        sgml2html gils.sgml
 
-clean-hook:
+clean-data-hook:
        rm -f [0-9]* *.bak
-       
+
+dist-hook:
+       if test -f index.html; then d=.; else d="$(srcdir)"; fi; \
+       for p in $$d/*.html; do \
+               cp $$p $(distdir); \
+       done
+
+install-data-hook:
+       cd $(DESTDIR)$(man1dir) && ln -sf zebraidx$(PACKAGE_SUFFIX).1 zebraidx.1
+       cd $(DESTDIR)$(man8dir) && ln -sf zebrasrv$(PACKAGE_SUFFIX).8 zebrasrv.8
+       cd $(DESTDIR)$(man1dir) && ln -sf idzebra-config$(PACKAGE_SUFFIX).1 idzebra-config.1
+       if test -f index.html; then d=.; else d="$(srcdir)"; fi; \
+       for p in $$d/*.html; do \
+               $(INSTALL_DATA) $$p $(DESTDIR)$(docdir); \
+       done
+
+uninstall-hook:
+       rm -r $(DESTDIR)$(docdir)
+
+domfilter.png: domfilter.svg
+       unset DISPLAY; inkscape --export-png=$@ --export-width=600 $?
+
+domfilter.eps: domfilter.svg
+       unset DISPLAY; inkscape --export-eps=$@ $?
+
+doc-clean:
+       rm -f manref.xml *.html *.pdf *.[0-9] domfilter.png domfilter.eps
+
+.eps.pdf:
+       epstopdf -hires $?
+