X-Git-Url: http://git.indexdata.com/?a=blobdiff_plain;f=doc%2FMakefile.am;h=5f6a183aaa989fed88aa6533c5085f99431d4faa;hb=656a766f96dd92939c3604a7bf88f2355d040fc8;hp=671ede1400441d395f53c31a06b83ec5f7c6aec9;hpb=cd13985dc9d5335f6dc2f6b015407cc8dd5d8772;p=idzebra-moved-to-github.git diff --git a/doc/Makefile.am b/doc/Makefile.am index 671ede1..5f6a183 100644 --- a/doc/Makefile.am +++ b/doc/Makefile.am @@ -1,53 +1,78 @@ -## $Id: Makefile.am,v 1.14 2002-09-25 09:50:20 adam Exp $ -docdir=$(datadir)/doc/@PACKAGE@ - -doc_DATA = zebra.html zebra.pdf -man_MANS = zebraidx.1 zebrasrv.8 - -SUPPORTFILES = \ - zebrahtml.dsl.in \ - zebraphp.dsl.in \ - zebraprint.dsl.in \ - xml.dcl -XMLFILES = \ - zebra.xml.in \ - introduction.xml \ - installation.xml \ - quickstart.xml \ - examples.xml \ - administration.xml \ - zebraidx.xml \ - server.xml \ - recordmodel.xml \ - license.xml \ - indexdata.xml \ - zebraidx-options.xml - -EXTRA_DIST = $(SUPPORTFILES) $(XMLFILES) zebra.pdf \ - $(man_MANS) zebraidx-man.sgml zebrasrv-man.sgml +## $Id: Makefile.am,v 1.63 2007-01-15 20:04:34 adam Exp $ +docdir=$(datadir)/doc/$(PACKAGE)$(PACKAGE_SUFFIX) -install-data-hook: - for f in $(srcdir)/*.html; do \ - $(INSTALL_DATA) $$f $(DESTDIR)$(docdir)/$$f; \ - done +SUBDIRS = common + +XMLMAN = zebraidx.xml zebrasrv.xml idzebra-config.xml + +XMLFILES = \ + administration.xml \ + architecture.xml \ + examples.xml \ + field-structure.xml \ + indexdata.xml \ + installation.xml \ + introduction.xml \ + license.xml \ + marc_indexing.xml \ + querymodel.xml \ + quickstart.xml \ + recordmodel-alvisxslt.xml \ + recordmodel-grs.xml \ + manref.xml \ + zebra.xml \ + zebrasrv-options.xml \ + zebrasrv-synopsis.xml \ + zebrasrv-virtual.xml + +HTMLFILES = index.html + +PNGFILES=zebra.png +EPSFILES=zebra.eps + +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) $(EPSFILES) $(man_MANS) \ + marc_indexing.xml entities.ent local.ent.in + +zebraidx$(PACKAGE_SUFFIX).1: zebraidx.xml + $(MAN_COMPILE) $(srcdir)/zebraidx.xml + mv zebraidx.1 zebraidx$(PACKAGE_SUFFIX).1 -zebraidx.1: zebraidx-man.sgml zebraidx-options.xml - cd $(srcdir); docbook2man zebraidx-man.sgml +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 -zebrasrv.8: zebrasrv-man.sgml - cd $(srcdir); docbook2man zebrasrv-man.sgml +idzebra-config$(PACKAGE_SUFFIX).1: idzebra-config.xml + $(MAN_COMPILE) $(srcdir)/idzebra-config.xml + mv idzebra-config.1 idzebra-config$(PACKAGE_SUFFIX).1 -zebra.html: $(XMLFILES) - jade -E14 -d zebrahtml.dsl -t sgml xml.dcl zebra.xml +$(HTMLFILES): $(XMLFILES) + rm -f *.html + $(HTML_COMPILE) $(srcdir)/zebra.xml -zebra.php: $(XMLFILES) - jade -E14 -d zebraphp.dsl -t sgml xml.dcl zebra.xml +index.tkl: $(XMLFILES) + rm -f *.tkl + $(TKL_COMPILE) $(srcdir)/zebra.xml zebra.pdf: $(XMLFILES) - jade -E14 -d zebraprint.dsl -t tex xml.dcl zebra.xml - pdfjadetex zebra.tex - pdfjadetex zebra.tex - pdfjadetex zebra.tex + for i in $(PNGFILES); do \ + if test ! -f $$i; then cp $(srcdir)/$$i .; fi; \ + done + dblatex $(srcdir)/zebra.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 @@ -58,9 +83,24 @@ gils.ps: gils.sgml gils.html: gils.sgml sgml2html gils.sgml -dist-hook: zebra.html - cp -f $(srcdir)/*.html $(distdir) - 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 \ + $(docDATA_INSTALL) $$p $(DESTDIR)/$(docdir); \ + done + +uninstall-hook: + rm -r $(DESTDIR)/$(docdir) +