corrected bug in disthook rule which always wrote "zebraidx.html not found in HTMLFI...
[idzebra-moved-to-github.git] / doc / Makefile.am
index ee723b2..2dc1c1e 100644 (file)
@@ -1,12 +1,13 @@
-## $Id: Makefile.am,v 1.20 2003-03-27 10:46:29 adam Exp $
+## $Id: Makefile.am,v 1.29 2006-01-17 21:26:43 marc Exp $
 docdir=$(datadir)/doc/@PACKAGE@
 
 SUPPORTFILES = \
- zebrahtml.dsl.in \
- zebraphp.dsl.in \
- zebraprint.dsl.in \
- tkl.xsl.in \
+ zebrahtml.dsl \
+ zebraphp.dsl \
+ zebraprint.dsl \
+ tkl.xsl \
  xml.dcl
+
 XMLFILES = \
  zebra.xml.in \
  introduction.xml \
@@ -19,30 +20,49 @@ XMLFILES = \
  recordmodel.xml \
  license.xml \
  indexdata.xml \
- zebraidx-options.xml
+ zebraidx-options.xml \
+ zebraidx-commands.xml \
+ zebrasrv-options.xml \
+ zebrasrv-synopsis.xml \
+ zebrasrv-virtual.xml
 
 HTMLFILES =  \
  administration.html apps.html configuration-file.html data-model.html \
  example1.html example2.html examples.html features.html file-ids.html \
- formats.html future.html generic-ids.html indexdata.html installation.html \
- installation.win32.html internal-representation.html introduction.html \
+ formats.html future.html generic-ids.html indexdata.html \
+ installation.html installation.debian.html installation.win32.html \
+ internal-representation.html introduction.html \
  license.html locating-records.html protocol-support.html quick-start.html \
  record-model.html register-location.html server.html shadow-registers.html \
  simple-indexing.html support.html zebra.html zebraidx.html 
 
-doc_DATA = $(HTMLFILES) zebra.pdf
-man_MANS = zebraidx.1 zebrasrv.8
+PNGFILES=zebra.png
+EPSFILES=zebra.eps
+
+MANFILES=zebraidx.1 zebrasrv.8 idzebra-config.1
+
+REFFILES=zebraidx-man.sgml zebrasrv-man.sgml idzebra-config-man.sgml
 
-EXTRA_DIST = $(SUPPORTFILES) $(XMLFILES) zebra.pdf \
- $(man_MANS) zebraidx-man.sgml zebrasrv-man.sgml zvrank.txt marc_indexing.xml
+doc_DATA = $(HTMLFILES) zebra.pdf $(PNGFILES)
+man_MANS = $(MANFILES)
 
-zebraidx.1: zebraidx-man.sgml zebraidx-options.xml
+EXTRA_DIST = $(XMLFILES) $(SUPPORTFILES) $(REFFILES) \
+       $(doc_DATA) $(EPSFILES) $(man_MANS) $(REFFILES) \
+       zvrank.txt marc_indexing.xml
+
+zebraidx.1: zebraidx-man.sgml zebraidx-options.xml zebraidx-commands.xml
        if test ! -f zebraidx-options.xml ; then ln -s $(srcdir)/zebraidx-options.xml .; fi
+       if test ! -f zebraidx-commands.xml ; then ln -s $(srcdir)/zebraidx-commands.xml .; fi
        docbook2man $(srcdir)/zebraidx-man.sgml
 
-zebrasrv.8: zebrasrv-man.sgml
+# zebrasrv-commands.xml
+zebrasrv.8: zebrasrv-man.sgml  zebrasrv-options.xml \
+            zebrasrv-synopsis.xml zebrasrv-virtual.xml
        docbook2man $(srcdir)/zebrasrv-man.sgml
 
+idzebra-config.1: idzebra-config-man.sgml
+       docbook2man $(srcdir)/idzebra-config-man.sgml
+
 $(HTMLFILES): $(XMLFILES)
        jade -E14 -D $(srcdir) -d zebrahtml.dsl -t sgml $(srcdir)/xml.dcl zebra.xml
 
@@ -50,10 +70,13 @@ zebra.php: $(XMLFILES)
        jade -E14 -D $(srcdir) -d zebraphp.dsl -t sgml $(srcdir)/xml.dcl zebra.xml
 
 zebra.pdf: $(XMLFILES)
+       for i in $(PNGFILES); do \
+               if test ! -f $$i; then ln -s $(srcdir)/$$i .; fi; \
+       done
        jade -E14 -D $(srcdir) -d zebraprint.dsl -t tex $(srcdir)/xml.dcl zebra.xml
-       pdfjadetex zebra.tex
-       pdfjadetex zebra.tex
-       pdfjadetex zebra.tex
+       pdfjadetex zebra.tex >/dev/null
+       pdfjadetex zebra.tex >/dev/null
+       pdfjadetex zebra.tex >/dev/null
 
 index.tkl: $(XMLFILES) tkl.xsl
        xsltproc tkl.xsl zebra.xml
@@ -67,9 +90,20 @@ gils.ps: gils.sgml
 gils.html: gils.sgml
        sgml2html gils.sgml
 
-dist-hook: zebra.html
-       cp *.html $(distdir)
-
 clean-data-hook:
        rm -f [0-9]* *.bak
 
+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 "$$f not found in HTMLFILES"; \
+                       exit 1; \
+               fi \
+       done