diff options
author | Matthias Andree <matthias.andree@gmx.de> | 2005-11-27 21:03:18 +0000 |
---|---|---|
committer | Matthias Andree <matthias.andree@gmx.de> | 2005-11-27 21:03:18 +0000 |
commit | fb1fbc030b5ae784703a56235c7b7d63d7577c0c (patch) | |
tree | af18595e5aca5b73202a56a579ccb2181ccb7e8e /Makefile.am | |
parent | f1f94d2808cb35063f77acf34cb542ec913c8b46 (diff) | |
download | fetchmail-fb1fbc030b5ae784703a56235c7b7d63d7577c0c.tar.gz fetchmail-fb1fbc030b5ae784703a56235c7b7d63d7577c0c.tar.bz2 fetchmail-fb1fbc030b5ae784703a56235c7b7d63d7577c0c.zip |
Add PDF FAQ, formatted for duplex printing on ISO A4.
svn path=/trunk/; revision=4485
Diffstat (limited to 'Makefile.am')
-rw-r--r-- | Makefile.am | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/Makefile.am b/Makefile.am index 474ecc44..cc55605d 100644 --- a/Makefile.am +++ b/Makefile.am @@ -96,9 +96,10 @@ fetchmail.spec: Makefile.in specgen.sh $(srcdir)/specgen.sh $(VERSION) >fetchmail.spec DISTDOCS= BUGS FAQ FEATURES NOTES OLDNEWS fetchmail-man.html \ - fetchmail-FAQ.html design-notes.html esrs-design-notes.html todo.html \ + design-notes.html esrs-design-notes.html todo.html \ fetchmail-features.html README.SSL README.NTLM \ README.packaging \ + fetchmail-FAQ.book fetchmail-FAQ.pdf fetchmail-FAQ.html \ fetchmail-SA-2005-01.txt \ fetchmail-SA-2005-02.txt @@ -119,6 +120,11 @@ fetchmailconf: FAQ: fetchmail-FAQ.html 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 + $(AWK) '/^[ \t]*<h1/ {sec++; } {if (sec < 2 || sec > 3) print $0;}' <$(srcdir)/fetchmail-FAQ.html >fetchmail-FAQ-print.html + htmldoc --logoimage $(srcdir)/bighand.png --batch $(srcdir)/fetchmail-FAQ.book + rm -f fetchmail-FAQ-print.html + FEATURES: fetchmail-features.html AWK=$(AWK) $(SHELL) $(srcdir)/dist-tools/html2txt $(srcdir)/fetchmail-features.html >$@ || { rm -f $@ ; exit 1 ; } |