we want a html man file on the webserver
[privoxy.git] / GNUmakefile.in
index 1e697f2..a122acd 100644 (file)
@@ -1,6 +1,6 @@
 # Note:  Makefile is built automatically from Makefile.in
 #
-# $Id: GNUmakefile.in,v 1.31 2002/03/26 14:00:18 swa Exp $
+# $Id: GNUmakefile.in,v 1.33 2002/03/27 03:05:35 hal9 Exp $
 #
 # Written by and Copyright (C) 2001 the SourceForge
 # Privoxy team. http://www.privoxy.org/
@@ -75,6 +75,7 @@ JADEBIN    = @JADEBIN@
 DB         = $(JADEBIN) -t sgml -ihtml -D.. -d ldpOK.dsl\#html
 DB2HTML    = @DB2HTML@
 DKPREFIX   = @DKPREFIX@
+MAN2HTML   = @MAN2HTML@
 
 # Program to do LF->CRLF
 #
@@ -397,7 +398,7 @@ tarball-clean:
 # converts doc/source/*.sgml into html, text and man pages
 #
 #############################################################################
-dok: doc/source/ldpOK.dsl
+dok: doc/source/ldpOK.dsl man2html-swa
        mkdir -p doc/text doc/man
 #  user manual
        rm -rf doc/webserver/user-manual
@@ -412,7 +413,16 @@ dok: doc/source/ldpOK.dsl
        cd doc/source && $(DB2HTML) -s ldpOK.dsl faq.sgml && mv faq ../webserver
        cd doc/source && $(DB2HTML) -s ldpOK.dsl --nochunks faq.sgml > tmp.html && lynx -dump tmp.html > ../text/faq.txt && rm -rf tmp.html faq
 
-redhat-dok: doc/source/ldpOK.dsl
+man2html-swa:
+       if [ "$(MAN2HTML)" != "false" ]; then \
+               mkdir -p doc/webserver/man-page; \
+               $(ECHO) "<html><head><title>Privoxy|Doc/Man page</title><link rel=\"stylesheet\" type=\"text/css\" href=\"../p_web.css\"></head><body><H2>NAME</H2>" > doc/webserver/man-page/privoxy-man-page.html; \
+               man ./privoxy.1 | $(MAN2HTML) -bare \
+                >> doc/webserver/man-page/privoxy-man-page.html; \
+               $(ECHO) "</body></html>" >> doc/webserver/man-page/privoxy-man-page.html; \
+       fi
+
+redhat-dok: doc/source/ldpOK.dsl man2html
        mkdir -p doc/text doc/man doc/source/user-manual \
           doc/source/developer-manual doc/source/faq
 ##  user manual
@@ -442,6 +452,11 @@ doc/source/ldpOK.dsl:
                cp doc/source/ldp.dsl doc/source/ldpOK.dsl; \
        fi
 
+man2html:
+       if [ "$(MAN2HTML)" != "false" ]; then \
+               $(MAN2HTML) privoxy.1 |grep -v "^Content-type" > doc/webserver/man-page/privoxy-man-page.html; \
+       fi
+
 #############################################################################
 #
 # Webserver
@@ -557,6 +572,12 @@ install: all
 ## end:
 
 # $Log: GNUmakefile.in,v $
+# Revision 1.33  2002/03/27 03:05:35  hal9
+# Added man2html target for docs (redhat-dok only for now)
+#
+# Revision 1.32  2002/03/26 22:29:54  swa
+# we have a new homepage!
+#
 # Revision 1.31  2002/03/26 14:00:18  swa
 # fixed make tarball, tarball-dist, tarball-clean
 #