From: Adam Dickmeiss Date: Mon, 10 May 2004 08:42:56 +0000 (+0000) Subject: Hook to check for missing HTML files in dist X-Git-Tag: ZEBRA.1.3.16~118 X-Git-Url: http://git.indexdata.com/?p=idzebra-moved-to-github.git;a=commitdiff_plain;h=3c4d2aab9571a3ff5958d8ed80b39a04665fbcb8 Hook to check for missing HTML files in dist --- diff --git a/doc/Makefile.am b/doc/Makefile.am index 546d07b..b4cdc06 100644 --- a/doc/Makefile.am +++ b/doc/Makefile.am @@ -1,4 +1,4 @@ -## $Id: Makefile.am,v 1.22 2003-09-05 10:50:33 adam Exp $ +## $Id: Makefile.am,v 1.23 2004-05-10 08:42:56 adam Exp $ docdir=$(datadir)/doc/@PACKAGE@ SUPPORTFILES = \ @@ -80,9 +80,22 @@ 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 "$$h not found in HTMLFILES"; \ + exit 1; \ + fi \ + done + +