diff options
author | Eric S. Raymond <esr@thyrsus.com> | 1999-08-01 05:25:49 +0000 |
---|---|---|
committer | Eric S. Raymond <esr@thyrsus.com> | 1999-08-01 05:25:49 +0000 |
commit | f8e4182b743c3869a1a0ba1503a7c0351b3fc9ff (patch) | |
tree | a6a1a3417b0dc7d3413b83fed0e18a4dfae9eb93 | |
parent | 31f0b4baea96d69d4d065e761b314afdfc2db89e (diff) | |
download | fetchmail-f8e4182b743c3869a1a0ba1503a7c0351b3fc9ff.tar.gz fetchmail-f8e4182b743c3869a1a0ba1503a7c0351b3fc9ff.tar.bz2 fetchmail-f8e4182b743c3869a1a0ba1503a7c0351b3fc9ff.zip |
Added web-ized manual page.
svn path=/trunk/; revision=2525
-rw-r--r-- | Makefile.in | 12 |
1 files changed, 10 insertions, 2 deletions
diff --git a/Makefile.in b/Makefile.in index 423498a9..9b3a5f85 100644 --- a/Makefile.in +++ b/Makefile.in @@ -168,7 +168,7 @@ clean: -rm -f fetchmail *.o core fetchmail.dvi \ rcfile_l.c rcfile_y.h rcfile_y.c \ fetchmail.tar fetchmail.tar.gz \ - netrc rfc822 unmime + netrc rfc822 unmime fetchmail-man.html distclean: clean @POMAKE@ distclean @@ -253,8 +253,16 @@ NOTES: design-notes.html echo " (This document was generated from design-notes.html)" >NOTES lynx -dump -nolist design-notes.html | grep -v "Back to " >NOTES +# man2html chokes and dies on this man page +fetchmail-man.html: fetchmail.man + echo "<pre>" >fetchmail-man.html + groff -man -Tascii -P-b -P-u fetchmail.man >>fetchmail-man.html + echo "</pre>" >>fetchmail-man.html + # Make distribution, update LSM with proper size, remake distribution -dist: Makefile.in +# (Making fetchmail-man.html is a kluge to ensure that it will be +# available when I upload the distribution.) +dist: Makefile.in fetchmail-man.html rm -f MANIFEST; make MANIFEST; touch fetchmail.lsm make fetchmail-$(VERSION).tar.gz |