Added .cvsignore files.
[yazproxy-moved-to-github.git] / doc / Makefile.am
index d7e0a14..baa2bb2 100644 (file)
@@ -1,4 +1,4 @@
-## $Id: Makefile.am,v 1.5 2004-04-15 12:04:01 adam Exp $
+## $Id: Makefile.am,v 1.7 2004-04-22 18:47:02 adam Exp $
 docdir=$(datadir)/doc/@PACKAGE@
 
 SUPPORTFILES = \
@@ -19,7 +19,7 @@ XMLFILES = \
  
 TOP=yazproxy.xml
 MANFILES=yazproxy.8
-HTMLFILES = \
+HTMLFILES =  \
  installation.html \
  introduction.html \
  license.html \
@@ -38,7 +38,8 @@ HTMLFILES = \
  using.html \
  windows.html \
  yazproxy-man.html \
- yazproxy.html 
+ yazproxy-schema.html \
+ yazproxy.html
 
 doc_DATA = $(HTMLFILES) yazproxy.pdf id.png yaz.css
 
@@ -68,3 +69,18 @@ index.tkl: $(XMLFILES) tkl.xsl
 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 "$$h not found in HTMLFILES"; \
+                       exit 1; \
+               fi \
+       done
+