diff options
author | Matthias Andree <matthias.andree@gmx.de> | 2005-12-20 08:38:56 +0000 |
---|---|---|
committer | Matthias Andree <matthias.andree@gmx.de> | 2005-12-20 08:38:56 +0000 |
commit | 651539fdefdd2db0959b4f0454f8071d548b5bc0 (patch) | |
tree | 84cfbe5fb44e0accfacae080eb6a335bbb2e4b41 /Makefile.am | |
parent | 505c187c7ed7ee0eda5788336c7a141d17de4f3b (diff) | |
download | fetchmail-651539fdefdd2db0959b4f0454f8071d548b5bc0.tar.gz fetchmail-651539fdefdd2db0959b4f0454f8071d548b5bc0.tar.bz2 fetchmail-651539fdefdd2db0959b4f0454f8071d548b5bc0.zip |
Ship html2txt and manServer.pl in the tarball
and make generated documents depend on their generators, too.
svn path=/branches/BRANCH_6-3/; revision=4585
Diffstat (limited to 'Makefile.am')
-rw-r--r-- | Makefile.am | 14 |
1 files changed, 8 insertions, 6 deletions
diff --git a/Makefile.am b/Makefile.am index dc0c365f..0d12ec82 100644 --- a/Makefile.am +++ b/Makefile.am @@ -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 ; } |