X-Git-Url: http://www.privoxy.org/gitweb/?a=blobdiff_plain;f=GNUmakefile.in;h=8edb54ecca260e93b6556c87173464f68c0abf50;hb=7ecdaff4e6e989eaa70d1ffec88c0e5dfbeb19bb;hp=c9ead67c34c5dafd894bdf8420f02a69daffef08;hpb=85f8cce0137b39c68b99bc1790aa0ccc6c8b15c6;p=privoxy.git diff --git a/GNUmakefile.in b/GNUmakefile.in index c9ead67c..8edb54ec 100644 --- a/GNUmakefile.in +++ b/GNUmakefile.in @@ -1,8 +1,6 @@ # Note: GNUmakefile is built automatically from GNUmakefile.in # -# $Id: GNUmakefile.in,v 1.262 2017/05/25 11:15:34 fabiankeil Exp $ -# -# Written by and Copyright (C) 2001-2017 members of the +# Written by and Copyright (C) 2001-2018 members of the # Privoxy team. https://www.privoxy.org/ # # Based on the Internet Junkbuster originally written @@ -145,7 +143,7 @@ PERL = perl DOC_DIR = doc/source DOC_TMP = $(DOC_DIR)/tmp DOC_STATUS = @DOC_STATUS@ -TIDY = tidy -modify -indent -wrap 78 --tidy-mark no +TIDY = tidy -modify -indent -wrap 120 --tidy-mark no RSYNC = rsync -av -c --chmod=D755,F644 # Program to do LF->CRLF @@ -659,6 +657,10 @@ web-faq: @$(ECHO) Updating the FAQ on the webserver ... @$(RSYNC) doc/webserver/faq/*.html shell.sourceforge.net:$(WWW_ROOT)/htdocs/faq +web-sponsors: + @$(ECHO) "Updating the sponsor page (index.html) only ..." + @$(RSYNC) doc/webserver/sponsors/index.html shell.sourceforge.net:$(WWW_ROOT)/htdocs/sponsors/ + web-user-manual: @$(ECHO) Updating the user manual on the webserver (do not use in case of version changes) ... @$(RSYNC) doc/webserver/user-manual/*.html shell.sourceforge.net:$(WWW_ROOT)/htdocs/user-manual/ @@ -675,6 +677,7 @@ web-user-manual: ############################################################################# dok-tidy: for html_file in `find doc/webserver -name "*.html"`; do \ + $(ECHO) "------ begin processing $$html_file" >&2 ; \ $(TIDY) $$html_file || $(TIDY) $$html_file; \ $(PERL) -i'' -e 's@^\s*
\s*$$@@; s@ +$$@@;' -n -p $$html_file; \ done