diff options
author | Daniel Stenberg <daniel@haxx.se> | 2003-11-05 15:51:25 +0000 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2003-11-05 15:51:25 +0000 |
commit | 7ffb8c6aeeda1d739fe8ab16bc524740fffe8f36 (patch) | |
tree | 2d35f0aa9cc7a8a6c55cf9f34f916a4631a131fa /docs | |
parent | 344c3789969bcf35759f5fc09a216bbc64245a32 (diff) |
use roffit to make HTML from man pages
http://daniel.haxx.se/projects/roffit/
Diffstat (limited to 'docs')
-rw-r--r-- | docs/Makefile.am | 2 | ||||
-rw-r--r-- | docs/libcurl/Makefile.am | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/docs/Makefile.am b/docs/Makefile.am index d23a39558..a5e62fb59 100644 --- a/docs/Makefile.am +++ b/docs/Makefile.am @@ -24,7 +24,7 @@ EXTRA_DIST = MANUAL BUGS CONTRIBUTE FAQ FEATURES INTERNALS SSLCERTS \ VERSIONS KNOWN_BUGS BINDINGS $(man_MANS) $(HTMLPAGES) \ HISTORY INSTALL libcurl-the-guide $(PDFPAGES) -MAN2HTML= $(NROFF) -man $< | man2html >$@ +MAN2HTML= roffit < $< >$@ SUFFIXES = .1 .html .pdf diff --git a/docs/libcurl/Makefile.am b/docs/libcurl/Makefile.am index 41e4838b6..9ef967d0a 100644 --- a/docs/libcurl/Makefile.am +++ b/docs/libcurl/Makefile.am @@ -122,7 +122,7 @@ CLEANFILES = $(HTMLPAGES) $(PDFPAGES) EXTRA_DIST = $(man_MANS) $(HTMLPAGES) index.html $(PDFPAGES) -MAN2HTML= $(NROFF) -man $< | man2html >$@ +MAN2HTML= roffit < $< >$@ SUFFIXES = .3 .html |