X-Git-Url: http://git.indexdata.com/?a=blobdiff_plain;f=doc%2FMakefile.am;h=13cb161c86ed31ce24b41937c0d866276d9af3af;hb=c33ea56e3771c3b80ba66ef8fda3a09cad171ebb;hp=f88b0564b436785290231911ad9c49bd5e703e3e;hpb=997db1975fa2132c9bb155b69c86f1310f5136b4;p=idzebra-moved-to-github.git diff --git a/doc/Makefile.am b/doc/Makefile.am index f88b056..13cb161 100644 --- a/doc/Makefile.am +++ b/doc/Makefile.am @@ -1,13 +1,15 @@ -## $Id: Makefile.am,v 1.49 2006-06-22 14:01:55 marc Exp $ -docdir=$(datadir)/doc/@PACKAGE@ +## $Id: Makefile.am,v 1.61 2006-09-07 10:02:29 adam Exp $ +docdir=$(datadir)/doc/$(PACKAGE)$(PACKAGE_SUFFIX) SUBDIRS = common +XMLMAN = zebraidx.xml zebrasrv.xml idzebra-config.xml + XMLFILES = \ administration.xml \ architecture.xml \ examples.xml \ - idzebra-config-man.xml \ + field-structure.xml \ indexdata.xml \ installation.xml \ introduction.xml \ @@ -17,94 +19,47 @@ XMLFILES = \ quickstart.xml \ recordmodel-alvisxslt.xml \ recordmodel-grs.xml \ - server.xml \ + manref.xml \ zebra.xml \ - zebraidx-commands.xml \ - zebraidx-man.xml \ - zebraidx-options.xml \ - zebraidx.xml \ - zebrasrv-man.xml \ zebrasrv-options.xml \ zebrasrv-synopsis.xml \ - zebrasrv-virtual.xml - -HTMLFILES = \ - administration-extended-services.html \ - administration-ranking.html \ - administration.html \ - apps.html \ - architecture-maincomponents.html \ - architecture-workflow.html \ - architecture.html \ - configuration-file.html \ - example1.html \ - example2.html \ - examples.html \ - features.html \ - file-ids.html \ - future.html \ - generic-ids.html \ - gfs-config.html \ - grs-exchange-formats.html \ - grs-internal-representation.html \ - htmlhelp.hhp \ - index.html \ - indexdata.html \ - installation.debian.html \ - installation.html \ - installation.win32.html \ - introduction.html \ - license.html \ - locating-records.html \ - protocol-support.html \ - querymodel-cql-to-pqf.html \ - querymodel-pqf.html \ - querymodel-zebra.html \ - querymodel.html \ - quick-start.html \ - record-model-alvisxslt-conf.html \ - record-model-alvisxslt.html \ - record-model-grs-conf.html \ - record-model-grs.html \ - register-location.html \ - server-sru-support.html \ - server-sru.html \ - server.html \ - shadow-registers.html \ - simple-indexing.html \ - support.html \ - toc.hhc \ - zebraidx.html + zebrasrv-virtual.xml +HTMLFILES = index.html PNGFILES=zebra.png EPSFILES=zebra.eps -MANFILES=zebraidx.1 zebrasrv.8 idzebra-config.1 - -REFFILES=zebraidx-man.xml zebrasrv-man.xml idzebra-config-man.xml +MANFILES=zebraidx$(PACKAGE_SUFFIX).1 \ + zebrasrv$(PACKAGE_SUFFIX).8 \ + idzebra-config$(PACKAGE_SUFFIX).1 doc_DATA = $(HTMLFILES) $(PNGFILES) man_MANS = $(MANFILES) -EXTRA_DIST = $(XMLFILES) $(REFFILES) \ - $(doc_DATA) $(EPSFILES) $(man_MANS) $(REFFILES) \ +EXTRA_DIST = $(XMLFILES) $(XMLMAN) \ + $(doc_DATA) $(EPSFILES) $(man_MANS) \ marc_indexing.xml entities.ent local.ent.in -zebraidx.1: zebraidx-man.xml zebraidx-options.xml zebraidx-commands.xml - $(MAN_COMPILE) $(srcdir)/zebraidx-man.xml +zebraidx$(PACKAGE_SUFFIX).1: zebraidx.xml + $(MAN_COMPILE) $(srcdir)/zebraidx.xml + mv zebraidx.1 zebraidx$(PACKAGE_SUFFIX).1 -zebrasrv.8: zebrasrv-man.xml zebrasrv-options.xml \ +zebrasrv$(PACKAGE_SUFFIX).8: zebrasrv.xml zebrasrv-options.xml \ zebrasrv-synopsis.xml zebrasrv-virtual.xml - $(MAN_COMPILE) $(srcdir)/zebrasrv-man.xml + $(MAN_COMPILE) $(srcdir)/zebrasrv.xml + mv zebrasrv.8 zebrasrv$(PACKAGE_SUFFIX).8 -idzebra-config.1: idzebra-config-man.xml - $(MAN_COMPILE) $(srcdir)/idzebra-config-man.xml +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) + rm -f *.html $(HTML_COMPILE) $(srcdir)/zebra.xml -index.tkl: $(XMLFILES) common/tkl.xsl +index.tkl: $(XMLFILES) + rm -f *.tkl $(TKL_COMPILE) $(srcdir)/zebra.xml zebra.pdf: $(XMLFILES) @@ -116,6 +71,13 @@ zebra.pdf: $(XMLFILES) pdfjadetex zebra.tex >/dev/null pdfjadetex zebra.tex >/dev/null + +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 @@ -129,16 +91,16 @@ clean-data-hook: rm -f [0-9]* *.bak dist-hook: - for f in *.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 "$$f not found in HTMLFILES"; \ - exit 1; \ - fi \ + 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