]> Pileus Git - ~andy/fetchmail/commitdiff
Ship html2txt and manServer.pl in the tarball
authorMatthias Andree <matthias.andree@gmx.de>
Tue, 20 Dec 2005 08:38:56 +0000 (08:38 -0000)
committerMatthias Andree <matthias.andree@gmx.de>
Tue, 20 Dec 2005 08:38:56 +0000 (08:38 -0000)
and make generated documents depend on their generators, too.

svn path=/branches/BRANCH_6-3/; revision=4585

Makefile.am

index dc0c365f3d8b893b63aff76596211f299f321dc2..0d12ec82e65ff09a53c4dac2c02f648a401ae99f 100644 (file)
@@ -113,12 +113,14 @@ EXTRA_DIST+=      $(DISTDOCS) fetchmail.spec $(distdirs) ucs/README.svn \
                m4-local/ac-archive-license.txt \
                m4-local/ac_ma_search_package.m4 \
                m4-local/autobuild.m4 \
-               t.smoke t.rc
+               t.smoke t.rc \
+               dist-tools/html2txt \
+               dist-tools/manServer.pl
 
 fetchmailconf:
        ( echo '#! /bin/sh' && echo 'exec @PYTHON@ @pythondir@/fetchmailconf.py "$$@"' ) >$@ || { rm -f $@ ; exit 1; }
 
-FAQ: fetchmail-FAQ.html
+FAQ: fetchmail-FAQ.html $(srcdir)/dist-tools/html2txt
        AWK=$(AWK) $(SHELL) $(srcdir)/dist-tools/html2txt $(srcdir)/fetchmail-FAQ.html >$@ || { rm -f $@ ; exit 1 ; }
 
 fetchmail-FAQ.pdf: fetchmail-FAQ.html fetchmail-FAQ.book bighand.png
@@ -126,10 +128,10 @@ fetchmail-FAQ.pdf: fetchmail-FAQ.html fetchmail-FAQ.book bighand.png
        htmldoc --logoimage $(srcdir)/bighand.png --batch $(srcdir)/fetchmail-FAQ.book
        rm -f fetchmail-FAQ-print.html
 
-FEATURES: fetchmail-features.html
+FEATURES: fetchmail-features.html $(srcdir)/dist-tools/html2txt
        AWK=$(AWK) $(SHELL) $(srcdir)/dist-tools/html2txt $(srcdir)/fetchmail-features.html >$@ || { rm -f $@ ; exit 1 ; }
 
-NOTES: design-notes.html esrs-design-notes.html
+NOTES: design-notes.html esrs-design-notes.html $(srcdir)/dist-tools/html2txt
           echo "This file contains two articles reformatted from HTML." > $@ \
        && echo "------------------------------------------------------" >> $@ \
        && echo "" >> $@ \
@@ -137,10 +139,10 @@ NOTES: design-notes.html esrs-design-notes.html
        && AWK=$(AWK) $(SHELL) $(srcdir)/dist-tools/html2txt $(srcdir)/esrs-design-notes.html >>$@ \
        || { rm -f $@ ; exit 1 ; }
 
-TODO: todo.html
+TODO: todo.html $(srcdir)/dist-tools/html2txt
        AWK=$(AWK) $(SHELL) $(srcdir)/dist-tools/html2txt $(srcdir)/todo.html >$@ || { rm -f $@ ; exit 1 ; }
 
-fetchmail-man.html: fetchmail.man
+fetchmail-man.html: fetchmail.man $(srcdir)/dist-tools/manServer.pl
        env - PATH=$$PATH $(srcdir)/dist-tools/manServer.pl $(srcdir)/fetchmail.man >$@ \
        || { rm -f $@ ; exit 1 ; }