diff options
author | Eric S. Raymond <esr@thyrsus.com> | 1997-07-08 21:23:46 +0000 |
---|---|---|
committer | Eric S. Raymond <esr@thyrsus.com> | 1997-07-08 21:23:46 +0000 |
commit | c93b1bc93b6827eedaaa94751efeff1fafd5e9d5 (patch) | |
tree | e7d30e61a3d463831b676106b18ffcc13eff5ccb /Makefile.in | |
parent | 9aeed581a9d0ca957fb56a2844e3cb3b5ab86333 (diff) | |
download | fetchmail-c93b1bc93b6827eedaaa94751efeff1fafd5e9d5.tar.gz fetchmail-c93b1bc93b6827eedaaa94751efeff1fafd5e9d5.tar.bz2 fetchmail-c93b1bc93b6827eedaaa94751efeff1fafd5e9d5.zip |
HTMLize the design notes.
svn path=/trunk/; revision=1160
Diffstat (limited to 'Makefile.in')
-rw-r--r-- | Makefile.in | 13 |
1 files changed, 10 insertions, 3 deletions
diff --git a/Makefile.in b/Makefile.in index 10eb7ba5..0904dcb5 100644 --- a/Makefile.in +++ b/Makefile.in @@ -204,7 +204,8 @@ headers = $(srcdir)/fetchmail.h $(srcdir)/socket.h $(srcdir)/smtp.h \ extra = $(srcdir)/alloca.c $(srcdir)/getopt.[ch] $(srcdir)/getopt1.c \ $(srcdir)/strcasecmp.c docs = $(srcdir)/COPYING $(srcdir)/FEATURES $(srcdir)/fetchmail-features.html \ - $(srcdir)/INSTALL $(srcdir)/NEWS $(srcdir)/NOTES $(srcdir)/README \ + $(srcdir)/design-notes.html $(srcdir)/NOTES \ + $(srcdir)/INSTALL $(srcdir)/NEWS $(srcdir)/README \ $(srcdir)/fetchmail.lsm $(srcdir)/sample.rcfile \ $(srcdir)/*.man $(srcdir)/FAQ $(srcdir)/fetchmail.FAQ.html config = $(srcdir)/Makefile.in $(srcdir)/configure.in $(srcdir)/configure \ @@ -220,10 +221,16 @@ MANIFEST: $(srcdir) Makefile.in @wc -l MANIFEST FAQ: fetchmail.FAQ.html - lynx -dump -nolist fetchmail.FAQ.html >FAQ + echo "(This document was generated from fetchmail.FAQ.html)" >FAQ + lynx -dump -nolist fetchmail.FAQ.html >>FAQ FEATURES: fetchmail-features.html - lynx -dump -nolist fetchmail-features.html | grep -v "Back to " >FEATURES + echo "(This document was generated from fetchmail-features.html)" >FEATURES + lynx -dump -nolist fetchmail-features.html | grep -v "Back to " >>FEATURES + +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 # Make distribution, update LSM with proper size, remake distribution dist: Makefile.in |