Move previously inline'd Perl code for the config-file target
[privoxy.git] / GNUmakefile.in
1 # Note:  Makefile is built automatically from Makefile.in
2 #
3 # $Id: GNUmakefile.in,v 1.170 2008/06/12 16:38:50 fabiankeil Exp $
4 #
5 # Written by and Copyright (C) 2001 - 2007 the SourceForge
6 # Privoxy team. http://www.privoxy.org/
7 #
8 # Based on the Internet Junkbuster originally written
9 # by and Copyright (C) 1997 Anonymous Coders and 
10 # Junkbusters Corporation.  http://www.junkbusters.com
11 #
12 # This program is free software; you can redistribute it 
13 # and/or modify it under the terms of the GNU General
14 # Public License as published by the Free Software
15 # Foundation; either version 2 of the License, or (at
16 # your option) any later version.
17 #
18 # This program is distributed in the hope that it will
19 # be useful, but WITHOUT ANY WARRANTY; without even the
20 # implied warranty of MERCHANTABILITY or FITNESS FOR A
21 # PARTICULAR PURPOSE.  See the GNU General Public
22 # License for more details.
23 #
24 # The GNU General Public License should be included with
25 # this file.  If not, you can view it at
26 # http://www.gnu.org/copyleft/gpl.html
27 # or write to the Free Software Foundation, Inc., 59
28 # Temple Place - Suite 330, Boston, MA  02111-1307, USA.
29 #
30
31 #############################################################################
32 # Set make command correctly
33 #############################################################################
34 @SET_MAKE@
35
36 #############################################################################
37 # Version number (for RPM)
38 #############################################################################
39
40 VERSION_MAJOR = @VERSION_MAJOR@
41 VERSION_MINOR = @VERSION_MINOR@
42 VERSION_POINT = @VERSION_POINT@
43 CODE_STATUS   = @CODE_STATUS@
44 VERSION       = $(VERSION_MAJOR).$(VERSION_MINOR).$(VERSION_POINT)
45 RPM_VERSION   = $(VERSION)
46 RPM_PACKAGEV  = ""
47 SNAPVERSION   = $(RPM_VERSION)-$(shell date "+%Y%m%d")
48
49
50 #############################################################################
51 # "make install" directories and variables
52 #############################################################################
53
54 #User Group paras
55 USER         = @USER@
56 GROUP      = @GROUP@
57
58 datarootdir  = @datarootdir@
59 prefix       = @prefix@
60 exec_prefix  = @exec_prefix@
61 CONF_BASE    = @sysconfdir@
62 SBIN_DEST    = @sbindir@
63 MAN_DIR      = @mandir@
64 MAN_DEST     = $(MAN_DIR)/man1
65 SHARE_DEST   = @datadir@
66 DOC_DEST     = $(SHARE_DEST)/doc/privoxy
67 VAR_DEST     = @localstatedir@
68 LOGS_DEST    = $(VAR_DEST)/log/privoxy
69 PIDS_DEST    = $(VAR_DEST)/run
70
71 # if $prefix = /usr/local then the default CONFDEST change from 
72 # CONF_DEST = $(CONF_BASE) to CONF_DEST = $(CONF_BASE)/privoxy  
73 # by the target rule CONF_DEST
74 #
75 # also if the $prefix is /usr/local and there is no
76 # $(SHARE_DEST)/doc, it checks for $prefix/doc and installs there
77 # instead in this situation
78 #
79 # finally if $prefix=/usr/local and VAR_DEST=$prefix/var it 
80 # changes this to /var for storing the logs and pidfile
81
82 # used in source dir only, the install goes to $share_dest/doc/privoxy
83 DOK_WEB = doc/webserver/
84
85 # Install usage should be compatible with install-sh.
86 INSTALL    = @INSTALL@
87 # Binaries
88 BIN_MODE         = 0755
89 # Support files, docs, etc.
90 RA_MODE   = 0664
91 # Directory
92 DIR_MODE   = 0755
93 # Files daemon writes to.
94 RWD_MODE   = 0660
95 INSTALL_P  = -m $(BIN_MODE)  
96 INSTALL_T  = -m $(RA_MODE)
97 INSTALL_D  = -m $(DIR_MODE) -d
98 INSTALL_R  = -m $(RWD_MODE)
99
100 # install options for superuser install
101 #INSTALL_S  = -g @GROUP@ -o @USER@ 
102
103 #############################################################################
104 # Build tools
105 #############################################################################
106
107 PROGRAM    = privoxy@EXEEXT@
108 CC         = @CC@
109 ECHO       = echo
110 GZIP_PROG  = gzip
111
112 # id -u is not universal. FIXME: need to set from configure. Breaks on
113 # Solaris.
114 #ID         = id -u
115 ID         = id
116 LD         = @CC@
117 RM         = rm -f
118 CP         = cp -f
119 RMDIR      = rmdir
120 MKDIR      = ./mkinstalldirs
121 STRIP_PROG = strip
122 SED           = sed
123 GREP       = grep
124 CAT        = cat
125 RPM        = rpm
126 RPMBUILD   = rpmbuild
127 MV            = mv
128 TAR        = tar
129 LN         = ln
130 TOUCH      = touch
131 KILL       = kill
132 CHMOD      = chmod
133 CHOWN      = chown
134 CHGRP      = chgrp
135 GROUPS     = groups
136 WDUMP      = @WDUMP@ -dump
137 JADECAT    = @JADECAT@
138 JADEBIN    = @JADEBIN@
139 DB         = $(JADEBIN) $(JADECAT) -ihtml -t sgml  -D.. -d ldp.dsl\#html
140 DB2HTML    = @DB2HTML@
141 MAN2HTML   = @MAN2HTML@
142 G2H_CMD    = groff -mandoc -Thtml
143 TARGET_OS  = @host@
144 PERL       = perl
145 DOC_DIR  = doc/source
146 DOC_TMP    = $(DOC_DIR)/tmp
147 DOC_STATUS = @DOC_STATUS@
148
149 # Program to do LF->CRLF
150 #
151 # The sed version should be the most portable, but it doesn't for for me,
152 # the other two do.  FIXME.
153 #   - Jon
154 #DOSFILTER  = $(SED) -e $$'s,$$,\r,'
155 #DOSFILTER  = gawk -v ORS='\r\n' '{print $0;}'
156 DOSFILTER  = $(PERL) -p -e 's/\n/\r\n/'
157 CVSROOT    = :pserver:anonymous@ijbswa.cvs.sourceforge.net:/cvsroot/ijbswa
158 #TMPDIR     := $(shell mktemp -d /tmp/$(PROGRAM).XXXXXX)
159
160 #############################################################################
161 # Setup for make distribution rh and suse for now 
162 #############################################################################
163
164 TAR_ARCH = /tmp/privoxy-$(RPM_VERSION).tar.gz
165 RPM_BASE = @RPM_BASE@
166
167 #############################################################################
168 # We include these files in our distributions
169 #############################################################################
170 CONFIGS = config trust default.action standard.action user.action default.filter user.filter
171 # take care that no CVS .cvsignore or other crappy files
172 # are included here
173 # and escape every '#' in the find. doh.
174 CONFIG_FILES = $(CONFIGS) \
175                 `find templates/ -type f | grep -v "CVS" | grep -v "\.\#" | grep -v ".*~" | grep -v ".cvsignore" | grep -v "TAGS"`
176
177 DOC_FILES = AUTHORS LICENSE README ChangeLog INSTALL \
178                 `find doc/text/ -type f | grep -v "CVS" | grep -v "\.\#" | grep -v ".*~" | grep -v ".cvsignore" | grep -v "TAGS"` \
179                 `find doc/webserver/ -name "*.html" | grep -v "\(webserver\|team\)\/index\.html"` \
180                 `find doc/webserver/ -name "*.css"` \
181                 privoxy.1 \
182                 doc/pdf/*.pdf
183
184 #############################################################################
185 # Filenames and libraries
186 #############################################################################
187
188 C_SRC  = actions.c cgi.c cgiedit.c cgisimple.c deanimate.c encode.c \
189          errlog.c filters.c gateway.c jbsockets.c jcc.c \
190          list.c loadcfg.c loaders.c miscutil.c parsers.c ssplit.c \
191          urlmatch.c
192
193 C_OBJS = $(C_SRC:.c=.@OBJEXT@)
194 C_HDRS = $(C_SRC:.c=.h) project.h actionlist.h
195
196 W32_SRC   = @WIN_ONLY@w32log.c w32taskbar.c win32.c w32svrapi.c
197 W32_FILES = @WIN_ONLY@w32.res
198 W32_OBJS  = @WIN_ONLY@$(W32_SRC:.c=.@OBJEXT@) $(W32_FILES)
199 W32_HDRS  = @WIN_ONLY@w32log.h w32taskbar.h win32.h w32res.h w32svrapi.h
200 W32_LIB   = @WIN_ONLY@-lwsock32 -lcomctl32
201 W32_INIS  = @WIN_ONLY@config.txt trust.txt
202
203 PCRS_SRC     = @STATIC_PCRS_ONLY@pcrs.c
204 PCRS_OBJS    = @STATIC_PCRS_ONLY@$(PCRS_SRC:.c=.@OBJEXT@)
205 PCRS_HDRS    = @STATIC_PCRS_ONLY@$(PCRS_SRC:.c=.h)
206
207 PCRE_SRC     = @STATIC_PCRE_ONLY@pcre/get.c pcre/maketables.c pcre/study.c pcre/pcre.c
208 PCRE_OBJS    = @STATIC_PCRE_ONLY@$(PCRE_SRC:.c=.@OBJEXT@)
209 PCRE_HDRS    = @STATIC_PCRE_ONLY@pcre/config.h pcre/chartables.c pcre/internal.h pcre/pcre.h
210
211 # No REGEX (maybe because dynamically linked pcreposix):
212 REGEX_SRC    =
213 @STATIC_PCRE_ONLY@REGEX_SRC = pcre/pcreposix.c
214
215 REGEX_OBJS   = $(REGEX_SRC:.c=.@OBJEXT@)
216 REGEX_HDRS   = $(REGEX_SRC:.c=.h)
217
218 # Dependencies introduced by #include "project.h".
219 PROJECT_H_DEPS = project.h $(REGEX_HDRS) $(PCRS_HDRS) @STATIC_PCRE_ONLY@pcre/pcre.h
220
221 # Socket libraries for platforms that need them explicitly defined
222 SOCKET_LIB   = @SOCKET_LIB@
223
224 # PThreads library, if needed.
225 PTHREAD_LIB  = @PTHREAD_ONLY@@PTHREAD_LIB@
226
227 SRCS         = $(C_SRC)  $(W32_SRC)  $(PCRS_SRC)  $(PCRE_SRC)  $(REGEX_SRC)
228 OBJS         = $(C_OBJS) $(W32_OBJS) $(PCRS_OBJS) $(PCRE_OBJS) $(REGEX_OBJS)
229 HDRS         = $(C_HDRS) $(W32_HDRS) $(PCRS_HDRS) $(PCRE_OBJS) $(REGEX_HDRS)
230 LIBS         = @LIBS@ $(W32_LIB) $(SOCKET_LIB) $(PTHREAD_LIB)
231
232
233 #############################################################################
234 # Compiler switches
235 #############################################################################
236
237 # The flag "-mno-win32" can be used by Cygwin to emulate a un?x type build.
238 # The flag "-mwindows -mno-cygwin" will cause Cygwin to use MingW32 for a
239 # Win32 GUI build.
240 # The flag "-pthread" is required if using Pthreads under Linux (and
241 # possibly other OSs).
242 SPECIAL_CFLAGS = @SPECIAL_CFLAGS@
243
244 # Add your flags here 
245 OTHER_CFLAGS =   
246
247 CFLAGS = @CFLAGS@ @CPPFLAGS@ $(OTHER_CFLAGS) $(SPECIAL_CFLAGS) -Wall \
248          @STATIC_PCRE_ONLY@ -Ipcre 
249
250 LDFLAGS = @LDFLAGS@ $(DEBUG_CFLAGS) $(SPECIAL_CFLAGS)
251
252
253 #############################################################################
254 # Build section.
255 #
256 # There should NOT be any targets above this line.
257 #############################################################################
258 all: $(PROGRAM) default.action
259
260
261 #############################################################################
262 # Phony targets
263 #############################################################################
264 .PHONY: all inifiles redhat-dist redhat-upload solaris-dist suse-dist \
265 suse-upload win-dist tarball-dist dok redhat-dok webserver clean clobber tags \
266 install conectiva-spec conectiva-dist conectiva-upload CONF_DEST LOG_DEST \
267 PID_DEST check_doc install-strip uninstall GROUP_T
268
269 #############################################################################
270 # Define this explicitly because Solaris is broken!
271 #############################################################################
272 %.o: %.c
273         $(CC) -c $(CFLAGS) $(CPPFLAGS) $< -o $@
274
275
276 #############################################################################
277 # Strip master copy comments from default.action:
278 #############################################################################
279 default.action: default.action.master
280         $(GREP) -v '^#MASTER#' $< > $@
281
282 #############################################################################
283 # Win32 config files
284 #############################################################################
285
286 inifiles: $(W32_INIS)
287
288 config.txt: config
289         $(SED) -e 's!\trustfile trust!trustfile trust.txt!' \
290                -e 's!\jarfile jarfile!jarfile jar.log!' \
291                -e 's!\logfile logfile!logfile privoxy.log!' \
292                -e 's!#Win32-only: !!' \
293                < $< | \
294                $(DOSFILTER) > $@
295         # LF to CRLF in default.action
296         $(DOSFILTER) <default.action >default.action.txt && mv default.action.txt default.action
297         # LF to CRLF in default.filter
298         $(DOSFILTER) <default.filter >default.filter.txt && mv default.filter.txt default.filter
299
300 trust.txt: trust
301         $(DOSFILTER) < $< > $@ 
302
303 #############################################################################
304 # Pre-dist check:
305 #############################################################################
306 dist-check:
307         @if [ -d CVS ]; then \
308            $(ECHO) "***************************************************"; \
309            $(ECHO) "***                                             ***"; \
310            $(ECHO) "***                  WARNING                    ***"; \
311            $(ECHO) "***                                             ***"; \
312            $(ECHO) "*** The presence of a CVS subdirectory suggests ***"; \
313            $(ECHO) "*** that you are trying to build a distribution ***"; \
314            $(ECHO) "*** package based on a checked out, not an      ***"; \
315            $(ECHO) "*** exported copy of the source tree. Please    ***"; \
316            $(ECHO) "*** see \"Releasing a new version\" in the        ***"; \
317            $(ECHO) "*** developer manual.                           ***"; \
318            $(ECHO) "***                                             ***"; \
319            $(ECHO) "***************************************************"; \
320            $(ECHO) "Type \"yes i am sure\" if you are sure that you"; \
321            $(ECHO) -n "really want to proceed: "; \
322            read answer; \
323            if [ "$$answer" != "yes i am sure" ]; then exit 1; fi \
324          fi;
325
326
327 #############################################################################
328 # create tar.gz from CVS:
329 # This make-target is usually called through 'create-archive'. If you 
330 # run 'make create-snapshot' without setting SNAPVERSION, you'll get a
331 # tar.gz with the current date in the name and as a releasenumber in the 
332 # spec-file. But the main usage is to run it as follows (Red Hat example):
333 # make SNAPVERSION=1.6x create-snapshot
334 # This creates a tar.gz and spec-file for a Red Hat 6.x version.
335 #############################################################################
336 create-snapshot:
337         @tag=`cvs -d $(CVSROOT) status Makefile | awk ' /Sticky Tag/ { print $$3 } '` 2> /dev/null; \
338         [ x"$$tag" = x"(none)" ] && tag=HEAD; \
339         echo "*** Creating package from $$tag!"; \
340         TMPDIR=$(shell mktemp -d /tmp/$(PROGRAM).XXXXXX); \
341         cd $$TMPDIR ; cvs -Q -d $(CVSROOT) export -r $$tag current || echo "Um... export aborted."; \
342         cd $$TMPDIR/current; \
343         TMPFILE=$$(mktemp -q /tmp/$(PROGRAM).XXXXXX); \
344         if $(SED) -e 's/^\(Version:\).*/\1 $(RPM_VERSION)/g' \
345                 -e 's/^\(Release:\).*/\1 $(SNAPVERSION)/g' \
346                 privoxy-rh.spec > $$TMPFILE ; then \
347                         $(MV) -f $$TMPFILE privoxy-rh.spec; \
348         else \
349                 $(ECHO) "Could not set version info in specfile."; \
350                 exit 1;\
351         fi;\
352         if $(SED) -e 's/^\(Version:\).*/\1 $(RPM_VERSION)/g' \
353              -e 's/^\(Release:\).*/\1 $(SNAPVERSION)/g' \
354               privoxy-suse.spec > $$TMPFILE ; then \
355                         $(MV) -f $$TMPFILE privoxy-suse.spec; \
356         else \
357                 $(ECHO) "Could not set version info in specfile."; \
358                 exit 1;\
359         fi; \
360         $(RM) $$TMPFILE; \
361         cd $$TMPDIR/current; \
362         $(TAR) --exclude ".cvsignore" --exclude "CVS" \
363                 -czf /tmp/$(PROGRAM)-$(VERSION).tar.gz .; \
364         $(RM) -rf $$TMPDIR
365         @echo "Resulting file is /tmp/$(PROGRAM)-$(VERSION).tar.gz"
366
367
368 #############################################################################
369 # looks at the version of Makefile and exports a corresponding source-tree
370 # example: if the Makefile has the sticky tag v_2_9_13, you'll get 
371 # privoxy-*-2.4.13.tar.gz. Two different tar files will be written, one for
372 # Red Hat and one for SuSe (different spec-files)
373 #############################################################################
374 create-archive:
375         make SNAPVERSION=$(SNAPVERSION) create-snapshot
376
377 #############################################################################
378 # RPM specifice stuff (SuSE or Redhat, ..)
379 #############################################################################
380 rpm-stuff: dist-check clean clobber 
381         for dir in RPMS SRPMS BUILD SOURCES SPECS; do \
382                 if [ ! -w $(RPM_BASE)/$$dir ]; then \
383                         $(ECHO) "$(RPM_BASE)/$$dir is not writable for you. Maybe try as root."; \
384                         $(ECHO) "Or add a suitable path to .rpmmacros like."; \
385                         $(ECHO) "%_topdir /home/foo/rpm-build"; \
386                         exit 1; \
387                 fi; \
388         done; \
389
390 check-release:
391         @if [ "$(RPM_PACKAGEV)" = "" ]; then \
392                 echo ; \
393                 echo "  ERROR: NO RPM_PACKAGEV VALUE"; \
394                 echo "  No value given for RPM_PACKAGEV. Please use:"; \
395                 echo "  make dist-upload RPM_PACKAGEV=release"; \
396                 echo "  where \"release\" is the release number you want to and"; \
397                 echo "  where \"dist\" is the name of the distro (redhat or suse)"; \
398                 echo ; \
399                 echo "  Ex: make redhat-upload RPM_PACKAGEV=1"; \
400                 echo ""; \
401                 echo "ATTENTION: If your distribution use a specific tag on the"; \
402                 echo "           release field (like \"cl\" for Conectiva, and"; \
403                 echo "           \"mdk\" for Mandrake), DO NOT put it on the value"; \
404                 echo "           given to RPM_PACKAGEV. It will be added automaticaly."; \
405                 echo "           Do it like you would do for a redhat package,"; \
406                 echo "           (i.e. just the number)."; \
407                 echo ; \
408                 exit 1; \
409         fi
410
411
412 #############################################################################
413 # Create Conectiva specfile from RedHat specfile
414 #############################################################################
415 conectiva-spec:
416         $(RM) privoxy-cl.spec
417         chmod a+x genclspec.sh
418         ./genclspec.sh
419
420 #############################################################################
421 # Conectiva distribution for x86
422 #############################################################################
423 conectiva-dist: rpm-stuff conectiva-spec
424
425         $(TAR) --exclude ".cvsignore" --exclude "CVS" --exclude "privoxy-suse.spec" --exclude "privoxy-rh.spec" --exclude "PACKAGERS" -czf $(TAR_ARCH) .
426         $(RPMBUILD) --clean -ta  $(TAR_ARCH)
427         if [ -f $(TAR_ARCH) ]; then  $(RM) $(TAR_ARCH); fi
428
429 conectiva-upload: check-release
430         make redhat-upload RPM_PACKAGEV=$(RPM_PACKAGEV)cl
431
432 #############################################################################
433 # redhat distribution alpha and x86
434 #############################################################################
435 redhat-dist: rpm-stuff
436         echo $(CONFIG_FILES)
437         $(TAR) --exclude ".cvsignore" --exclude "CVS" --exclude "privoxy-suse.spec" --exclude "privoxy-cl.spec" --exclude "PACKAGERS" -czf $(TAR_ARCH) .
438         $(RPMBUILD) --clean -ta  $(TAR_ARCH)
439         if [ -f $(TAR_ARCH) ]; then  $(RM) $(TAR_ARCH); fi
440
441 # For testing build issues only! Use redhat-dist for official releases.
442 redhat-test: 
443         echo $(CONFIG_FILES)
444         $(TAR) --exclude ".cvsignore" --exclude "CVS" --exclude "privoxy-suse.spec" --exclude "privoxy-cl.spec" --exclude "PACKAGERS" -czf $(TAR_ARCH) .
445         $(RPMBUILD) --clean -tb  $(TAR_ARCH)
446         if [ -f $(TAR_ARCH) ]; then  $(RM) $(TAR_ARCH); fi
447         @echo "WARNING: This target is only for testing. Use redhat-dist for releases!!!"
448
449 # anonymously ncftps the rpms to sourceforge
450 redhat-upload: check-release
451         ncftpput -u anonymous -p ijbswa-developers@lists.sourceforge.net upload.sourceforge.net /incoming $(RPM_BASE)/SRPMS/privoxy-$(RPM_VERSION)-$(RPM_PACKAGEV).src.rpm
452 # better should use `arch` here instead of ix86 to support other platforms too
453         ncftpput -u anonymous -p ijbswa-developers@lists.sourceforge.net upload.sourceforge.net /incoming $(RPM_BASE)/RPMS/*/privoxy-$(RPM_VERSION)-$(RPM_PACKAGEV).*.rpm
454         @$(ECHO) -------------------------------------------------------
455         @$(ECHO) Now goto
456         @$(ECHO) https://sourceforge.net/project/admin/editpackages.php?group_id=11118
457         @$(ECHO) ... and release the files.
458         @$(ECHO) -------------------------------------------------------
459      # w3m http://sourceforge.net/project/admin/editpackages.php?group_id=11118
460
461
462 #############################################################################
463 # Creates a Red Hat sourcepackage from CVS (not from the current sources
464 # on disk)
465 #############################################################################
466 redhat-srpm: 
467         make create-archive
468         $(RPMBUILD) -ts --nodeps $(PROGRAM)-$(VERSION).tar.gz
469
470
471 #############################################################################
472 # suse distribution. works fine. no need to be root. 
473 #############################################################################
474 suse-dist: rpm-stuff
475 #       TMPFILE=$$(mktemp -q /tmp/$(PROGRAM).XXXXXX); \
476 #       if $(SED) -e 's/^\(Version:\).*/\1 $(RPM_VERSION)/g' \
477 #              -e 's/^\(Release:\).*/\1 $(RPM_PACKAGEV)/g' \
478 #               privoxy-suse.spec > $$TMPFILE ; then \
479 #       $(MV) -f $$TMPFILE privoxy-suse.spec; \
480 #       else \
481 #               $(ECHO) "Could not set version info in specfile."; \
482 #       exit 1;\
483 #       fi
484
485         $(TAR) --exclude ".cvsignore" --exclude "CVS" --exclude "privoxy-rh.spec" --exclude "privoxy-cl.spec" --exclude "PACKAGERS" -czf $(TAR_ARCH) .
486         $(RPMBUILD) --clean -ta  $(TAR_ARCH)
487         if [ -f $(TAR_ARCH) ]; then  $(RM) $(TAR_ARCH); fi
488
489 # anonymously ncftps the rpms to sourceforge
490 suse-upload: check-release
491         ncftpput -u anonymous -p ijbswa-developers@lists.sourceforge.net upload.sourceforge.net /incoming $(RPM_BASE)/SRPMS/privoxy-suse-$(RPM_VERSION)-$(RPM_PACKAGEV).src.rpm
492 # better should use `arch` here instead of ix86 to support other platforms too
493         ncftpput -u anonymous -p ijbswa-developers@lists.sourceforge.net upload.sourceforge.net /incoming $(RPM_BASE)/RPMS/*/privoxy-suse-$(RPM_VERSION)-$(RPM_PACKAGEV).*.rpm
494         @$(ECHO) -------------------------------------------------------
495         @$(ECHO) Now goto
496         @$(ECHO) https://sourceforge.net/project/admin/editpackages.php?group_id=11118
497         @$(ECHO) ... and release the files.
498         @$(ECHO) -------------------------------------------------------
499
500 # handle with care. use with root.
501 suse-clean:
502         $(RPM) -e junkbuster-suse || true
503         $(RM) -r /etc/junkbuster
504         $(RM) -r /etc/rc.d/junkbuster*
505         $(RM) -r /var/run/junkbuster.pid 
506         $(RM) -r /var/log/junkbuster
507         $(RM) /etc/init.d/junkbuster
508         $(RM) /usr/sbin/junkbuster
509         $(RM) /usr/sbin/rcjunkbuster
510         $(RM) /usr/share/man/man1/junkbuster.1.gz
511         $(RPM) -e privoxy-suse || true
512         $(RM) -r /etc/privoxy
513         $(RM) -r /etc/rc.d/privoxy*
514         $(RM) -r /var/run/privoxy.pid 
515         $(RM) -r /var/log/privoxy
516         $(RM) /etc/init.d/privoxy
517         $(RM) /usr/sbin/privoxy
518         $(RM) /usr/sbin/rcprivoxy
519         $(RM) /usr/share/man/man1/privoxy.1.gz
520
521 #############################################################################
522 # generic distribution
523 #############################################################################
524 gen-dist: dist-check
525         @$(ECHO) ""
526         @$(ECHO) "You have run autoconf && autoheader && ./configure right?"
527         @$(ECHO) ""
528         $(MAKE) $(PROGRAM)
529         $(STRIP_PROG) $(PROGRAM)
530         $(LN) -s current ../privoxy-$(VERSION)-$(CODE_STATUS)
531 # add program
532         (cd .. && $(TAR) -cvhf --exclude "PACKAGERS" privoxy-$(TARGET_OS)-$(VERSION)-$(CODE_STATUS)-src.tar privoxy-$(VERSION)-$(CODE_STATUS)/$(PROGRAM))
533 # add config files
534         for foo in $(CONFIG_FILES); do \
535                 (cd .. && $(TAR) -uvhf --exclude "PACKAGERS" privoxy-$(TARGET_OS)-$(VERSION)-$(CODE_STATUS)-src.tar privoxy-$(VERSION)-$(CODE_STATUS)/$$foo;) \
536         done; 
537 # add documentation
538         for foo in $(DOC_FILES); do \
539                 (cd .. && $(TAR) -uvhf --exclude "PACKAGERS" privoxy-$(TARGET_OS)-$(VERSION)-$(CODE_STATUS)-src.tar privoxy-$(VERSION)-$(CODE_STATUS)/$$foo;) \
540         done;
541 # and zip the archive
542         $(RM) ../privoxy-$(VERSION)-$(CODE_STATUS)
543         $(GZIP_PROG) ../privoxy-$(TARGET_OS)-$(VERSION)-$(CODE_STATUS)-src.tar
544         @$(ECHO) Distribution with binary created.
545
546 # anonymously ncftps the package to sourceforge
547 gen-upload:
548         ncftpput -u anonymous -p ijbswa-developers@lists.sourceforge.net upload.sourceforge.net /incoming ../privoxy-$(TARGET_OS)-$(VERSION)-$(CODE_STATUS)-src.tar.gz
549         @$(ECHO) -------------------------------------------------------
550         @$(ECHO) Now goto
551         @$(ECHO) https://sourceforge.net/project/admin/editpackages.php?group_id=11118
552         @$(ECHO) ... and release the files.
553         @$(ECHO) -------------------------------------------------------
554
555 # use with care
556 gen-clean:
557         $(RM) privoxy-$(TARGET_OS)-$(VERSION)-$(CODE_STATUS)-src.tar*
558
559 #############################################################################
560 # solaris distribution. verified on SF machines by swa.
561 #############################################################################
562 solaris-dist: gen-dist
563         @$(ECHO) Done.
564 # anonymously ncftps the package to sourceforge
565 solaris-upload: gen-upload
566         @$(ECHO) Done.
567 # use with care
568 solaris-clean: gen-clean
569         @$(ECHO) Done.
570
571 #############################################################################
572 # hpux distribution
573 #############################################################################
574 hpux-dist:
575         @$(ECHO) coming soon. 
576 hpux-upload:
577         @$(ECHO) coming soon. 
578
579 #############################################################################
580 # debian distribution
581 #############################################################################
582 debian-dist:
583         @$(ECHO) coming soon. 
584 debian-upload:
585         @$(ECHO) coming soon. 
586
587 #############################################################################
588 # macosx distribution
589 #############################################################################
590 macosx-dist:
591         @$(ECHO) coming soon. 
592 macosx-upload:
593         @$(ECHO) coming soon. 
594
595 #############################################################################
596 # amiga distribution
597 #############################################################################
598 amiga-dist:
599         @$(ECHO) coming soon. 
600 amiga-upload:
601         @$(ECHO) coming soon. 
602
603 #############################################################################
604 # freebsd distribution. verified on SF machines by swa.
605 #############################################################################
606 freebsd-dist: gen-dist
607         @$(ECHO) Done.
608 # anonymously ncftps the package to sourceforge
609 freebsd-upload: gen-upload
610         @$(ECHO) Done.
611 # use with care
612 freebsd-clean: gen-clean
613         @$(ECHO) Done.
614
615 #############################################################################
616 # Windows distribution
617 #############################################################################
618 win-dist:
619         $(ECHO) Not implemented.
620
621
622 #############################################################################
623 # Tarball distribution: No CVS dirs, dotfiles, debian build dir,
624 # (FIXME:) only parts of the static / generated docs mix in doc/webserver
625 #############################################################################
626
627 tarball-dist: dist-check clean clobber
628         $(LN) -s current ../privoxy-$(VERSION)-$(CODE_STATUS)
629
630         for i in `find . -type f -a -not \( -path "*/CVS*" -o -name ".*" \
631         -o -path "*/debian/*" -o -path "*/actions/*" -o -name "*.php" -o \
632         -name "PACKAGERS" -o -path "*/pdf/*" \)`; do \
633            files="$$files privoxy-$(VERSION)-$(CODE_STATUS)/$$i"; \
634         done &&  \
635         cd .. && $(TAR) -cvhf privoxy-$(VERSION)-$(CODE_STATUS)-src.tar $$files ; \
636
637 # and zip the archive
638         $(RM) ../privoxy-$(VERSION)-$(CODE_STATUS) 
639         $(GZIP_PROG) ../privoxy-$(VERSION)-$(CODE_STATUS)-src.tar
640         @$(ECHO) Tarball distribution created.
641
642 # anonymously ncftps the tarball to sourceforge
643 tarball-upload:
644         ncftpput -u anonymous -p ijbswa-developers@lists.sourceforge.net upload.sourceforge.net /incoming ../privoxy-$(VERSION)-$(CODE_STATUS)-src.tar.gz
645         @$(ECHO) -------------------------------------------------------
646         @$(ECHO) Now goto
647         @$(ECHO) https://sourceforge.net/project/admin/editpackages.php?group_id=11118
648         @$(ECHO) ... and release the files.
649         @$(ECHO) -------------------------------------------------------
650
651 tarball-clean:
652         $(RM) ../privoxy-$(VERSION)-$(CODE_STATUS)-src.tar.gz
653
654 #############################################################################
655 #
656 # Documentation
657 #
658 # converts doc/source/*.sgml into html, text, pdf and man pages
659 #
660 #############################################################################
661
662 # developer manual
663 dok-devel: 
664         $(RM) doc/webserver/developer-manual/*.html
665         $(RM) -r doc/source/developer-manual
666         mkdir -p doc/text doc/source/developer-manual
667         cd doc/source/developer-manual && $(DB) ../developer-manual.sgml && cd .. && cp developer-manual/*.html ../webserver/developer-manual/
668         cd doc/source && $(DB) -V nochunks developer-manual.sgml > tmp.html && env -u LANG $(WDUMP) tmp.html > ../text/developer-manual.txt && $(RM) -r tmp.html developer-manual
669
670 # user manual
671 dok-user: 
672         $(RM) doc/webserver/user-manual/*.html
673         $(RM) -r doc/source/user-manual/
674         mkdir -p doc/text doc/source/user-manual
675         cd doc/source/user-manual && $(DB) -iuser-man ../user-manual.sgml && cd .. && cp user-manual/*.html ../webserver/user-manual/
676         # FIXME: temp fix so same stylesheet gets in more than one place so it works
677         # for all doc set-ups, including the 'user manual' config option in local
678         # system where it MUST be in same directory as html.
679         $(PERL) -pi.bak -e 's/<\/head/\n<LINK REL=\"STYLESHEET\" TYPE=\"text\/css\" HREF=\"p_doc.css\">\n<\/head/i' doc/webserver/user-manual/*html
680         cd doc/source && $(DB) -iuser-man -V nochunks user-manual.sgml > tmp.html && env -u LANG $(WDUMP) tmp.html > ../text/user-manual.txt && $(RM) -r tmp.html user-manual
681
682 # faq
683 dok-faq: 
684         $(RM) doc/webserver/faq/*.html
685         $(RM) -r doc/source/faq
686         mkdir -p doc/text doc/source/faq
687         cd doc/source/faq && $(DB) ../faq.sgml && cd .. && cp faq/*.html ../webserver/faq/
688         cd doc/source && $(DB) -V nochunks faq.sgml > tmp.html && env -u LANG $(WDUMP) tmp.html > ../text/faq.txt && $(RM) -r tmp.html faq
689
690 # man page, one variation. Try to use the next target, just 'make man'. 
691 dok-man: 
692         $(RM) doc/man/* doc/webserver/man-page/*.html
693 ifneq ($(MAN2HTML),false)
694         $(ECHO) "<html><head><title>Privoxy 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
695         man ./privoxy.1 | $(MAN2HTML) -bare >> doc/webserver/man-page/privoxy-man-page.html
696         $(ECHO) "</body></html>" >> doc/webserver/man-page/privoxy-man-page.html
697 else
698         $(MAKE) groff2html
699 endif
700
701 # Build man page from sgml. This requires the SGMLSpm perl module.
702 # See CPAN, or your favorite perl repository. This is the preferred 
703 # target for man page generation!
704 man: dok-release
705         mkdir -p doc/source/temp && cd doc/source/temp && $(RM) * ;\
706         nsgmls ../privoxy-man-page.sgml  | sgmlspl ../../../utils/docbook2man/docbook2man-spec.pl &&\
707         perl -pi.bak -e 's/ <URL:.*>//; s/\[ /\[/g' privoxy.1 ;\
708         $(DB) ../privoxy-man-page.sgml && $(MV) -f privoxy.1 ../../../privoxy.1
709
710 # For those with man2html ala RH7s.
711 man2html:
712         mkdir -p doc/webserver/man-page
713 ifneq ($(MAN2HTML),false)
714         $(MAN2HTML) privoxy.1 |grep -v "^Content-type" > tmp.html
715         $(PERL) -pi.bak -e 's/<A .*Contents<\/A>//; s/<A .*man2html<\/A>/man2html/' tmp.html
716         $(PERL) -pi.bak -e 's/(<\/HEAD>)/<LINK REL=\"STYLESHEET\" TYPE=\"text\/css\" HREF=\"..\/p_doc.css\"><\/HEAD>/' tmp.html
717 # Twice because my version of man2html is pulling in commas and periods in URLs.
718         $(PERL) -pi.bak -e 's/(<A.*),(">)/$$1$$2/g' tmp.html
719         $(PERL) -pi.bak -e 's,\.">,">,g' tmp.html
720 # Get rid of spurious \a from conversion. (How to do this with perl?)
721         $(SED) -e 's/\a//g' tmp.html > doc/webserver/man-page/privoxy-man-page.html && $(RM) tmp.*
722 else
723         $(MAKE) groff2html
724 endif
725
726
727 # Otherwise we get plain groff conversion.
728 groff2html:
729         $(G2H_CMD) ./privoxy.1 | $(SED) -e 's@</head>@<link REL="STYLESHEET" TYPE="text/css" HREF="../p_doc.css"></head>@' > doc/webserver/man-page/privoxy-man-page.html
730
731
732 # readme page and INSTALL file
733 dok-readme: dok-release
734         cd doc/source && $(DB)-notoc -V nochunks readme.sgml > tmp.html &&\
735         env -u LANG $(WDUMP) tmp.html > ../../README ;\
736         $(DB)-notoc -V nochunks install.sgml > tmp.html &&\
737         env -u LANG $(WDUMP) tmp.html > ../../INSTALL ;\
738         $(RM) tmp.*
739
740 # index.sgml is used to create both the Home Page, and a local index
741 # for documentation, etc.
742 #
743 # index.html for webserver:
744 dok-webserver: 
745         cd doc/source/webserver && $(DB)-notoc -ip-homepage -V nochunks index.sgml > ../../webserver/index.html
746         $(PERL) -pi.bak -e 's/..\/p_doc.css/p_doc.css/;\
747         s/<\/HEAD/\n<meta name=\"description\" content=\"Privoxy helps users to protect their privacy.\"><\/HEAD/;\
748         s/<\/HEAD/\n<meta name="MSSmartTagsPreventParsing" content="TRUE"><\/HEAD/;\
749         s/\.\d\. //;\
750         s/__copy/&copy;/'\
751      doc/webserver/index.html && $(RM) doc/webserver/*.bak
752
753 # privoxy-index.html for local documentation:
754 dok-index: 
755         cd doc/source/webserver && $(DB)-notoc -ip-index -V nochunks index.sgml > ../../webserver/privoxy-index.html
756         $(PERL) -pi.bak -e 's/..\/p_doc.css/p_doc.css/;\
757         s/<\/HEAD/\n<meta name=\"description\" content=\"Privoxy helps users to protect their privacy.\"><\/HEAD/;\
758         s/<\/HEAD/\n<meta name="MSSmartTagsPreventParsing" content="TRUE"><\/HEAD/;\
759         s/\.\d\. //;\
760         s/__copy/&copy;/' \
761      doc/webserver/privoxy-index.html && $(RM) doc/webserver/*.bak
762
763 # Main documentation target.
764 dok: dok-release dok-devel dok-user dok-faq dok-readme dok-webserver dok-authors dok-index
765         @$(ECHO) Documentation created.
766
767 #
768 # an alternative to the above dok. disabled man page creation for the moment
769 #
770 redhat-dok: dok-release dok-devel dok-user dok-faq redhat-readme dok-webserver dok-authors
771         @$(ECHO) Documentation created.
772
773 ## Make README
774 redhat-readme: 
775         cd doc/source && $(DB)-notoc -V nochunks readme.sgml > tmp.html && $(WDUMP) \
776           tmp.html > ../../README && $(RM) -r tmp.html
777
778 ## Make AUTHORS file
779 dok-authors: 
780         cd doc/source && $(DB) -V nochunks authors.sgml > tmp.html && env -u LANG $(WDUMP) \
781           tmp.html > ../../AUTHORS && $(RM) tmp.html
782
783 # Set doc entities for VERSION and CODE_STATUS in sgml docs. Toggle content
784 # exceptions accordingly. This needs to go before any doc building (doh).
785 dok-release:
786         @$(ECHO) Setting doc version and status to $(VERSION), $(CODE_STATUS)
787         @$(PERL) -pi.bak -e 's/<!entity +p-version.*>/<!entity p-version "$(VERSION)">/;\
788      s/<!entity +p-status.*>/<!entity p-status "$(CODE_STATUS)">/' \
789      doc/source/*sgml doc/source/*/*sgml
790         $(RM) -r doc/source/*bak doc/source/*/*bak
791 ifeq ($(CODE_STATUS),stable)
792         @$(ECHO) Setting docs to stable $(VERSION)
793         @$(PERL) -pi.bak -e 's/<!entity +% +p-stable.*>/<!entity % p-stable "INCLUDE">/;\
794      s/<!entity +% +p-not-stable.*>/<!entity % p-not-stable "IGNORE">/' \
795      doc/source/*sgml doc/source/*/*sgml
796         $(RM) -r doc/source/*bak doc/source/*/*bak
797 else
798         @$(ECHO) Setting docs to not stable $(VERSION)
799         @$(PERL) -pi.bak -e 's/<!entity +% +p-stable.*>/<!entity % p-stable "IGNORE">/;\
800      s/<!entity +% +p-not-stable.*>/<!entity % p-not-stable "INCLUDE">/' \
801      doc/source/*sgml doc/source/*/*sgml
802         $(RM) -r doc/source/*bak doc/source/*/*bak
803 endif
804
805 # Generate single page html. Used only for creating pdf docs (ATM).
806 # Currently using: See http://www.easysw.com/htmldoc/pdf-o-matic.php.
807 # If using this generator, remember U-M has a couple of graphics in 
808 # a parallel directory.
809 #
810 dok-shtml: dok-release 
811         mkdir -p doc/source/temp # this directory not in cvs
812         cd doc/source && $(DB) -iuser-man -V nochunks user-manual.sgml > temp/privoxy-user-manual.html
813         cd doc/source && $(DB) -V nochunks developer-manual.sgml > temp/privoxy-developer-manual.html
814         cd doc/source && $(DB) -V nochunks faq.sgml > temp/privoxy-faq.html
815 # one could use html2ps and ps2pdf. well, that does not work. htmlps produces incorrect output.
816
817 # Make pdf docs from single page html. Requires htmldoc, see
818 # (http://www.easysw.com/htmldoc/). Note: 1.8.20 has a TOC bug.
819 # PDF docs are uploaded to webserver as zip archive.
820 dok-pdf: dok-shtml
821         @$(ECHO) -n "starting htmldoc version: ";
822         if htmldoc --version ; then : ; \
823            else $(ECHO) "WARNING: could not get htmldoc version" ; fi
824         cd utils/ldp_print && $(RM) *html *bak *jpg *tmp *pdf *zip
825         cp -f doc/source/temp/*html doc/webserver/user-manual/*jpg utils/ldp_print
826         cd utils/ldp_print ;\
827         $(PERL) -pi.bak -e 's/\.\.\/images\///; s/(<\/?)SUB/$$1small/i;\
828                             s/\.\.\/user-manual\/index\.html/privoxy-user-manual.pdf/;\
829                                         s/\.\.\/developer-manual\/index\.html/privoxy-developer-manual.pdf/;\
830                                         s/\.\.\/faq\/index\.html/privoxy-faq.pdf/' *.html ;\
831         for i in developer-manual user-manual faq; do \
832                 ./ldp_print privoxy-$$i.html ;\
833                 $(ECHO) DONE: privoxy-$$i.pdf ;\
834         done ;\
835         $(MV) *.pdf  ../../doc/pdf ;\
836         $(RM) -r *html *bak *jpg *pdf *zip ../../doc/source/temp
837
838 # Create release announcement in text and html, with short and long versions.
839 # This is a standalone target, and must be invoked directly.
840 # announce: dok-release
841 #       mkdir -p $(DOC_TMP)
842 #       cd $(DOC_TMP) && cp -f ../announce.sgml . && $(DB) -iannounce-big announce.sgml &&\
843 #       mv -f index.html announce.html && $(WDUMP) announce.html > announce.txt
844 #       cd $(DOC_TMP) && $(DB) announce.sgml &&\
845 #       mv -f index.html announce-mini.html && $(WDUMP) announce-mini.html > announce-mini.txt &&\
846 #       mv -f *html *txt ../../.. 
847 #       rm -fr $(DOC_TMP)
848
849 # The main Privoxy config file, generated from sgml sources. 
850 # NOTE: This will require some hand editing. The new file is outputted 
851 # as config.new so that problem sections can be compared to previous
852 # version. This is hardcored to w3m for html/text conversion. Also, 
853 # requires the shell util 'fmt'.
854 config-file: dok-release
855         cd doc/source && $(DB)-notoc -iconfig-file -V nochunks config.sgml > __tmp.html &&\
856         env -u LANG w3m -dump __tmp.html | fmt -w 70 > ../../config.new && $(RM) -r __tmp.*
857         $(PERL) -i.bak utils/prepare-configfile.pl config.new
858
859         $(RM) *.bak
860         @$(ECHO)  "****************************************************"
861         @$(ECHO)  "The output file is config.new."
862         @$(ECHO)  "Now -- you need to hand edit the results!!!"
863         @$(ECHO)  "In particular, check the Debug levels, the"
864         @$(ECHO)  "permit-access, forward & socks examples and the"
865         @$(ECHO)  "various user-manual examples, which all"
866         @$(ECHO)  "probably got hammered."
867         @$(ECHO)  "****************************************************"
868
869 # config file, alternate version using lynx (perl stuff unfinished). Lynx
870 # does not do so good a job.
871 config-file-alt: 
872         cd doc/source && $(ECHO) -e ".h2 JUSTIFY\\nJUSTIFY:FALSE" > __tmp.lynx_cfg &&\
873         $(DB)-notoc -iconfig-file -V nochunks config.sgml > __tmp.html &&\
874         lynx -cfg=__tmp.lynx_cfg -width=78 -dump __tmp.html > ../../config.new && $(RM) -r __tmp.*
875         $(PERL) -pi -e 's/^(   )//;\
876                         s/:$\/:\n/' config.new
877
878 #############################################################################
879 #
880 # Webserver
881 #
882 # moves dokumentation to webserver
883 #
884 #############################################################################
885 webserver: tidy
886         @$(ECHO) -------------------------------------------------------
887         @$(ECHO) You have run make dok/redhat-dok before, right?
888         @$(ECHO) Note that this command scps all stuff to the webserver,
889         @$(ECHO) it will not remove obsolete documents.
890         @$(ECHO) -------------------------------------------------------
891
892         @$(ECHO) Uploading html
893         @cd doc/webserver; \
894           upload=`find . -type f -a -not \( -path "*/CVS*" -o -path "*/results*" \)`; \
895           $(TAR) c $$upload | ssh ijbswa.sourceforge.net 'cd /home/groups/i/ij/ijbswa/htdocs/; tar xvm 2>&1 | grep -v timestamp'
896
897         @$(ECHO) Uploading pdf
898         @cd doc/pdf;\
899           zip privoxy-pdf-docs *.pdf  ;\
900                 scp -q privoxy-pdf-docs.zip ijbswa.sourceforge.net:/home/groups/i/ij/ijbswa/htdocs/pdf
901
902         @$(ECHO) Fixing permissions
903         @ssh ijbswa.sourceforge.net 'chmod -R 775 /home/groups/i/ij/ijbswa/htdocs 2>/dev/null; true'
904         @ssh ijbswa.sourceforge.net 'find /home/groups/i/ij/ijbswa/htdocs/ -type f | xargs chmod 664 2>/dev/null; true'
905         @ssh ijbswa.sourceforge.net 'chmod 666 /home/groups/i/ij/ijbswa/htdocs/actions/results/actions-feedback.txt 2>/dev/null; true'
906
907
908 web-actions: tidy
909         @$(ECHO) Uploading 
910         @cd doc/webserver/actions; \
911           upload=`find . -type f -a -not \( -path "*/CVS*" -o -path "*/results*" \)`; \
912           $(TAR) c $$upload | ssh ijbswa.sourceforge.net 'cd /home/groups/i/ij/ijbswa/htdocs/actions; tar xvm'
913
914         @$(ECHO) Fixing permissions
915         @ssh ijbswa.sourceforge.net 'find /home/groups/i/ij/ijbswa/htdocs/actions/ -type f | xargs chmod 664 2>/dev/null'
916         @ssh ijbswa.sourceforge.net 'chmod 666 /home/groups/i/ij/ijbswa/htdocs/actions/results/actions-feedback.txt 2>/dev/null'
917
918 ## 
919 dok-put:
920         tar --exclude ".cvsignore" --exclude "CVS" --exclude "source" --exclude ".htaccess" \
921              --exclude "obsolete" --exclude "actions" --exclude "*.zip" --exclude "robots.txt"\
922                 doc/* INSTALL LICENSE AUTHORS README \
923                 -czf $(DOC_FILE) ;\
924                 $(ECHO) "Uploading doc package ..." ;\
925                 scp $(DOC_FILE) ijbswa.sourceforge.net:/home/groups/i/ij/ijbswa/htdocs/docs/
926                 @ssh ijbswa.sourceforge.net 'chmod 775 /home/groups/i/ij/ijbswa/htdocs/docs/*gz 2>/dev/null; true'
927                 $(RM) $(DOC_FILE)
928
929 dok-get:
930         cd /tmp ;\
931         $(WGET) http://www.privoxy.org/docs/$(DOC_FILE) ;\
932         $(TAR) -zxvf $(DOC_FILE)
933
934
935 #############################################################################
936 # Source file dependencies
937 #############################################################################
938
939 actions.@OBJEXT@:   actions.c   actions.h   config.h $(PROJECT_H_DEPS) errlog.h jcc.h list.h loaders.h miscutil.h actionlist.h ssplit.h
940 cgi.@OBJEXT@:       cgi.c       cgi.h       config.h $(PROJECT_H_DEPS) cgiedit.h cgisimple.h jbsockets.h list.h pcrs.h encode.h ssplit.h jcc.h filters.h actions.h errlog.h miscutil.h
941 cgiedit.@OBJEXT@:   cgiedit.c   cgiedit.h   config.h $(PROJECT_H_DEPS) cgi.h list.h pcrs.h encode.h ssplit.h jcc.h filters.h actionlist.h actions.h errlog.h miscutil.h
942 cgisimple.@OBJEXT@: cgisimple.c cgisimple.h config.h $(PROJECT_H_DEPS) cgi.h list.h pcrs.h encode.h ssplit.h jcc.h filters.h actions.h errlog.h miscutil.h urlmatch.h
943 deanimate.@OBJEXT@: deanimate.c deanimate.h config.h $(PROJECT_H_DEPS)
944 encode.@OBJEXT@:    encode.c    encode.h    config.h
945 errlog.@OBJEXT@:    errlog.c    errlog.h    config.h $(PROJECT_H_DEPS) @WIN_ONLY@w32log.h
946 filters.@OBJEXT@:   filters.c   filters.h   config.h $(PROJECT_H_DEPS) errlog.h encode.h gateway.h jbsockets.h jcc.h loadcfg.h parsers.h ssplit.h cgi.h deanimate.h urlmatch.h @WIN_ONLY@win32.h 
947 gateway.@OBJEXT@:   gateway.c   gateway.h   config.h $(PROJECT_H_DEPS) errlog.h jbsockets.h jcc.h loadcfg.h
948 jbsockets.@OBJEXT@: jbsockets.c jbsockets.h config.h $(PROJECT_H_DEPS) filters.h
949 jcc.@OBJEXT@:       jcc.c       jcc.h       config.h $(PROJECT_H_DEPS) errlog.h filters.h gateway.h jbsockets.h loadcfg.h loaders.h miscutil.h parsers.h @WIN_ONLY@w32log.h win32.h w32svrapi.h cgi.h
950 list.@OBJEXT@:      list.c      list.h      config.h $(PROJECT_H_DEPS) list.h miscutil.h
951 loadcfg.@OBJEXT@:   loadcfg.c   loadcfg.h   config.h $(PROJECT_H_DEPS) errlog.h filters.h gateway.h jbsockets.h jcc.h loaders.h miscutil.h parsers.h @WIN_ONLY@w32log.h win32.h
952 loaders.@OBJEXT@:   loaders.c   loaders.h   config.h $(PROJECT_H_DEPS) errlog.h encode.h filters.h gateway.h jcc.h loadcfg.h miscutil.h parsers.h ssplit.h
953 miscutil.@OBJEXT@:  miscutil.c  miscutil.h  config.h
954 parsers.@OBJEXT@:   parsers.c   parsers.h   config.h $(PROJECT_H_DEPS) errlog.h filters.h jbsockets.h jcc.h loadcfg.h loaders.h miscutil.h ssplit.h
955 ssplit.@OBJEXT@:    ssplit.c    ssplit.h    config.h miscutil.h
956 urlmatch.@OBJEXT@:  urlmatch.c  urlmatch.h  config.h $(PROJECT_H_DEPS) errlog.h miscutil.h ssplit.h
957
958 # GNU regex
959 gnu_regex.@OBJEXT@: gnu_regex.c gnu_regex.h config.h
960
961 # PCRS
962 pcrs.@OBJEXT@: pcrs.c pcrs.h config.h pcre/pcre.h 
963
964 # PCRE
965 pcre/get.@OBJEXT@:        pcre/get.c        pcre/config.h pcre/internal.h pcre/pcre.h
966 pcre/maketables.@OBJEXT@: pcre/maketables.c pcre/config.h pcre/internal.h pcre/pcre.h
967 pcre/pcre.@OBJEXT@:       pcre/pcre.c       pcre/config.h pcre/internal.h pcre/pcre.h pcre/chartables.c 
968 pcre/pcreposix.@OBJEXT@:  pcre/pcreposix.c  pcre/config.h pcre/internal.h pcre/pcre.h pcre/pcreposix.h
969 pcre/study.@OBJEXT@:      pcre/study.c      pcre/config.h pcre/internal.h pcre/pcre.h
970
971 # An auxiliary program makes the PCRE default character table source
972
973 pcre/chartables.c:   pcre/dftables@EXEEXT@
974                 pcre/dftables@EXEEXT@ >pcre/chartables.c
975
976 pcre/dftables@EXEEXT@:       pcre/dftables.c pcre/maketables.c pcre/pcre.h pcre/internal.h pcre/config.h
977                 $(CC) -o pcre/dftables@EXEEXT@ $(CFLAGS) pcre/dftables.c
978
979 # Win32
980 w32log.@OBJEXT@: w32log.c errlog.h config.h jcc.h loadcfg.h miscutil.h pcre/pcre.h pcre/pcreposix.h pcrs.h project.h w32log.h w32taskbar.h win32.h
981 w32taskbar.@OBJEXT@: w32taskbar.c config.h w32log.h w32taskbar.h
982 win32.@OBJEXT@: win32.c config.h jcc.h loadcfg.h pcre/pcre.h pcre/pcreposix.h pcrs.h project.h w32log.h win32.h w32svrapi.h
983
984 w32.res: w32.rc w32res.h icons/ico00001.ico icons/ico00002.ico icons/ico00003.ico icons/ico00004.ico icons/ico00005.ico icons/ico00006.ico icons/ico00007.ico icons/ico00008.ico icons/idle.ico icons/privoxy.ico config.h
985         windres -D__MINGW32__=0.2 -O coff -i $< -o $@
986
987 # AmigaOS
988 @AMIGAOS_ONLY@OBJS += amiga.o
989 @AMIGAOS_ONLY@ifeq ($(shell $(CC) -dumpmachine), m68k-amigaos)
990 @AMIGAOS_ONLY@CFLAGS += -D__AMIGAVERSION__=\"$(VERSION_MAJOR).$(VERSION_MINOR)$(VERSION_POINT)\" -D__AMIGADATE__=\"`date +%d.%m.%Y`\" -W -m68020 -noixemul -fbaserel -msmall-code
991 @AMIGAOS_ONLY@LDFLAGS += -m68020 -noixemul -fbaserel
992 @AMIGAOS_ONLY@LIBS = -lm /gg/lib/libb/libm020/libnix/swapstack.o
993 @AMIGAOS_ONLY@else
994 @AMIGAOS_ONLY@CFLAGS += -D__AMIGAVERSION__=\"$(VERSION_MAJOR).$(VERSION_MINOR)$(VERSION_POINT)\" -D__AMIGADATE__=\"`date +%d.%m.%Y`\" -Wextra -D__USE_INLINE__ -D__NO_INTUITION_RJ_MACROS
995 @AMIGAOS_ONLY@endif
996 @AMIGAOS_ONLY@amiga.o: amiga.c amiga.h config.h
997
998
999 $(PROGRAM): $(OBJS) $(W32_FILES)
1000         $(LD) $(LDFLAGS) -o $(PROGRAM) $(OBJS) $(LIBS)
1001
1002 clean:
1003         $(RM) a.out $(OBJS) $(W32_FILES) $(W32_INIS) $(PROGRAM) default.action `find . -name TAGS -o -name tags` config.base config.tmp
1004
1005 tidy:
1006         $(RM) `find . -name "*~"`
1007         $(RM) `find . -name "#*#"` # Emacs backup files
1008         $(RM) `find . -name ".\#*"`
1009
1010 clobber: tidy
1011         $(RM) GNUmakefile configure config.h.in config.h config.cache config.status config.log logfile \
1012               privoxy.log core *.tar.gz *.tar privoxy-cl.spec doc/source/ldp.dsl config.new
1013         $(RM) -r autom4te.cache
1014
1015 #
1016 # FIXME: What is all this? 
1017 #
1018         $(RM) cscope.*  *.pdb *.lib *.exp 
1019
1020 distclean: clobber
1021
1022 tags: $(SRCS) $(HDRS)
1023         etags $(SRCS) $(HDRS)
1024
1025 CONF_DEST:=$(shell if [ "$(prefix)" = "/usr/local" ] && [ "$(CONF_BASE)" = "$(prefix)/etc" ];then \
1026                 $(ECHO) "$(CONF_BASE)/privoxy";\
1027          else\
1028                  $(ECHO) "$(CONF_BASE)";\
1029          fi)
1030
1031 LOG_DEST:=$(shell if [ "$(prefix)" = "/usr/local" ] && [ "$(LOGS_DEST)" = "$(prefix)/var/log/privoxy" ];then \
1032                 $(ECHO) "/var/log/privoxy" ;\
1033          else\
1034                  $(ECHO) "$(LOGS_DEST)";\
1035          fi)
1036
1037 PID_DEST:=$(shell if [ "$(prefix)" = "/usr/local" ] && [ "$(PIDS_DEST)" = "$(prefix)/var/run" ];then \
1038                 $(ECHO) "/var/run" ;\
1039          else\
1040                  $(ECHO) "$(PIDS_DEST)";\
1041          fi)
1042
1043 check_doc:=$(shell if [ ! -d "$(SHARE_DEST)/doc" ] && [ "$(prefix)" = "/usr/local" ]  && [ -d "$(prefix)/doc" ];then \
1044                 $(ECHO) "1";\
1045          else\
1046                  $(ECHO) "0";\
1047          fi)
1048
1049 # If USER is specified but no GROUP, assume there is a GROUP of same name.
1050 GROUP_T:=$(shell if [ x$(GROUP) = x ] && [ x$(USER) != x ];then \
1051                 $(ECHO) "$(USER)" ;\
1052          else\
1053                  $(ECHO) "$(GROUP)";\
1054          fi)
1055
1056 install-strip:
1057         $(MAKE) install STRIP=-s
1058
1059 # FIXME: Test USER and GROUP on Slack to make sure this works as 
1060 # intended.
1061 #
1062 # FIXME: id handling needs help, probably via configure, since 'id -u' is not 
1063 # universally reliable (eg Solaris). Group handling could be better. 
1064 # Perhaps the whole user/group validation should be done here, and simplified.
1065 PROGRAM_V = Privoxy $(VERSION) $(CODE_STATUS)
1066 install: CONF_DEST LOG_DEST PID_DEST check_doc GROUP_T
1067         @# Quick test for valid USER.
1068         @if [ -n "$(USER)" ]; then \
1069                 $(ID) $(USER) >/dev/null || exit 1;\
1070         fi
1071         @# Test for valid group. FIXME. USER does not have to belong to GROUP 
1072         @# for file ownership purposes.
1073 #       if [ -n "$(GROUP_T)" ] && [ -n "$(USER)" ] && ! $(GROUPS) $(USER) | $(GREP) "\<$(GROUP_T)\>" >/dev/null; then \
1074 #               $(ECHO) Group $(GROUP_T) for User $(USER) is invalid && exit 1 ;\
1075 #       fi
1076
1077         @$(ECHO) "Creating directories, and preparing $(PROGRAM_V) installation"
1078         $(CHMOD) $(DIR_MODE) $(MKDIR)
1079         @$(MKDIR) $(DESTDIR)$(SBIN_DEST) $(DESTDIR)$(prefix) $(DESTDIR)$(CONF_DEST) \
1080                 $(DESTDIR)$(CONF_DEST)/templates $(DESTDIR)$(SHARE_DEST) \
1081                 $(DESTDIR)$(LOG_DEST) $(DESTDIR)$(PID_DEST)
1082         @# Install the executable binary, strip if invoked as install-strip
1083         @test -n "$(STRIP)" &&\
1084         $(ECHO) Installing $(PROGRAM) stripped executable to $(SBIN_DEST) ||\
1085         $(ECHO) Installing $(PROGRAM) executable to $(DESTDIR)$(SBIN_DEST)
1086         $(INSTALL) $(INSTALL_P) $(STRIP) $(PROGRAM) $(DESTDIR)$(SBIN_DEST)
1087
1088         @# Install the DOCS and man page. install-sh only does one file at a time.
1089         @# FIXME: only handles jpegs.
1090         -@if [ $(check_doc) = 0 ]; then \
1091                 DOC=$(DOC_DEST) ;\
1092         else \
1093                 DOC=$(prefix)/doc/privoxy ;\
1094         fi;\
1095         $(MKDIR) $(DESTDIR)$$DOC $(DESTDIR)$$DOC/user-manual $(DESTDIR)$$DOC/faq $(DESTDIR)$$DOC/developer-manual \
1096              $(DESTDIR)$$DOC/man-page $(DESTDIR)$$DOC/images $(DESTDIR)$(MAN_DEST) ;\
1097         if [ -d "$(DOK_WEB)" ]; then \
1098                 $(ECHO) Installing FAQ, Manual, and other docs to $(DESTDIR)$$DOC;\
1099           for i in user-manual developer-manual faq; do \
1100                for ii in $(DOK_WEB)/$$i/*html; do \
1101                     $(INSTALL) $(INSTALL_T) $$ii $(DESTDIR)$$DOC/$$i;\
1102                done ;\
1103           done ;\
1104                 for i in $(DOK_WEB)/user-manual/*jpg; do \
1105                $(INSTALL) $(INSTALL_T) $$i $(DESTDIR)$$DOC/user-manual;\
1106           done ;\
1107                 $(INSTALL) $(INSTALL_T) $(DOK_WEB)/man-page/*html $(DESTDIR)$$DOC/man-page;\
1108                 $(INSTALL) $(INSTALL_T) $(DOK_WEB)/privoxy-index.html $(DESTDIR)$$DOC/index.html;\
1109                 $(INSTALL) $(INSTALL_T) AUTHORS $(DESTDIR)$$DOC;\
1110                 $(INSTALL) $(INSTALL_T) LICENSE $(DESTDIR)$$DOC;\
1111                 $(INSTALL) $(INSTALL_T) README $(DESTDIR)$$DOC;\
1112                 $(INSTALL) $(INSTALL_T) ChangeLog $(DESTDIR)$$DOC;\
1113                 $(INSTALL) $(INSTALL_T) $(DOK_WEB)/p_doc.css $(DESTDIR)$$DOC;\
1114                 $(INSTALL) $(INSTALL_T) $(DOK_WEB)/p_doc.css $(DESTDIR)$$DOC/user-manual;\
1115         fi
1116         @# Not all platforms support gzipped man pages.
1117         @$(ECHO) Installing man page to $(DESTDIR)$(MAN_DEST)/privoxy.1
1118         -$(INSTALL) $(INSTALL_T) privoxy.1  $(DESTDIR)$(MAN_DEST)/privoxy.1
1119
1120         @# Change the config file default directories according to the configured ones
1121         @$(ECHO) Rewriting config for this installation
1122         @if [ -f config.base ] ; then \
1123                 $(CAT) config >config~ ;\
1124                 $(MV) config.base config ;\
1125         fi
1126         $(SED) 's+^confdir \.+confdir $(CONF_DEST)+' config | \
1127         $(SED) 's+^logdir \.+logdir $(LOG_DEST)+' >config.tmp
1128         -@if [ $(check_doc) = 0 ]; then \
1129       $(SED) 's+^#\?user-manual .*+user-manual $(DOC_DEST)/user-manual/+' config.tmp >config.updated ;\
1130         else \
1131       $(SED) 's+^#\?user-manual .*+user-manual $(prefix)/doc/privoxy/user-manual/+' config.tmp >config.updated ;\
1132         fi;\
1133         $(MV) config config.base
1134         $(MV) config.updated config 
1135
1136         @# Install the config support files. Test for root install, and abort 
1137         @# if there is no privoxy user, and no other user was enabled during 
1138         @# configure. Later, install init script if appropriate.
1139         @$(ECHO) Installing templates to $(DESTDIR)$(CONF_DEST)/templates
1140         @for i in `find templates -type f`; do \
1141                 $(INSTALL) $(INSTALL_T) $$i $(DESTDIR)$(CONF_DEST)/templates ;\
1142         done
1143
1144         @# FIXME: group/user validation is overly convoluted.
1145         @# If superuser install ... we require a minimum of group ownership
1146         @# of those files the daemon writes to, to be non-root owned.
1147         @if [ "`$(ID) |sed 's/(.*//' |sed 's/.*=//'`" = "0" ] ;then\
1148                 if [ x$(USER) = x ] || [ $(USER) = root ]; then \
1149                         if [ x$(GROUP) = x ] || [ $(GROUP) = root ]; then \
1150                                 if [ "`$(ID) privoxy`" ] && \
1151                                         $(GROUPS) privoxy | $(SED) 's/^.*://' |$(GREP) "\<privoxy\>" >/dev/null; then \
1152                                         $(ECHO) "Warning: Setting group owner to privoxy";\
1153                                         GROUP_T=privoxy ;\
1154                                 else \
1155                                         $(ECHO)  "******************************************************************" ;\
1156                                         $(ECHO)  " WARNING! WARNING! installing config files as root!" ;\
1157                                         $(ECHO)  " It is strongly recommended to run $(PROGRAM) as a non-root user," ;\
1158                                         $(ECHO)  " and to install the config files as that user and/or group!" ;\
1159                                         $(ECHO)  " Please read INSTALL, and create a privoxy user and group!" ;\
1160                                         $(ECHO)  "*******************************************************************" ;\
1161                                         exit 1 ;\
1162                                 fi ;\
1163                         else \
1164                                 GROUP_T=$(GROUP) ;\
1165                         fi ;\
1166                         INSTALL_CONF="$(INSTALL_R) -g $$GROUP_T " ;\
1167                 else \
1168                         $(ECHO) "Superuser install, installing config files as $(USER):$(GROUP_T)" ;\
1169                         INSTALL_CONF="$(INSTALL_R) -o $(USER) -g $(GROUP_T)" ;\
1170                         GROUP_T=$(GROUP_T) ;\
1171                 fi ;\
1172         else \
1173                 if [ ! "`id $(USER)`" = "`id`" ] ;then \
1174                         $(ECHO) "** WARNING ** current install user different from configured user!!" ;\
1175                         $(ECHO) "Edit may fail." ;\
1176                 fi ;\
1177                 INSTALL_CONF="$(INSTALL_R)" ;\
1178         fi ;\
1179         $(ECHO) Installing configuration files to $(DESTDIR)$(CONF_DEST);\
1180         for i in $(CONFIGS); do \
1181                 if [ "$$i" = "default.action" ] || [ "$$i" = "default.filter" ] || [ "$$i" = "standard.action" ]; then \
1182                         $(RM) $(DESTDIR)$(CONF_DEST)/$$i ;\
1183                         $(ECHO) Installing fresh $$i;\
1184                         $(INSTALL) $$INSTALL_CONF $$i $(DESTDIR)$(CONF_DEST) || exit 1;\
1185                 elif [ -s "$(CONF_DEST)/$$i" ]; then \
1186                         $(ECHO) Installing $$i as $$i.new ;\
1187                         $(INSTALL) $$INSTALL_CONF $$i $(DESTDIR)$(CONF_DEST)/$$i.new || exit 1;\
1188                         NEW=1;\
1189                 else \
1190                         $(INSTALL) $$INSTALL_CONF $$i $(DESTDIR)$(CONF_DEST) || exit 1;\
1191                 fi ;\
1192         done ;\
1193         if [ -n "$$NEW" ]; then \
1194                 $(CHMOD) $(RWD_MODE) $(DESTDIR)$(CONF_DEST)/*.new || exit 1 ;\
1195                 $(ECHO) "Warning: Older config files are preserved. Check new versions for changes!" ;\
1196         fi ;\
1197         [ ! -f $(DESTDIR)$(LOG_DEST)/logfile ] && $(ECHO) Creating logfiles in $(DESTDIR)$(LOG_DEST) || \
1198                 $(ECHO) Checking logfiles in $(DESTDIR)$(LOG_DEST) ;\
1199                 $(TOUCH) $(DESTDIR)$(LOG_DEST)/logfile $(DESTDIR)$(LOG_DEST)/jarfile || exit 1 ;\
1200         if [ x$$USER != x ]; then \
1201                 $(CHOWN) $$USER $(DESTDIR)$(LOG_DEST)/logfile $(DESTDIR)$(LOG_DEST)/jarfile || \
1202                 $(ECHO) "** WARNING ** current install user different from configured user. Logging may fail!!" ;\
1203         fi ;\
1204         if [ x$$GROUP_T != x ]; then \
1205                 $(CHGRP) $$GROUP_T $(DESTDIR)$(LOG_DEST)/logfile $(DESTDIR)$(LOG_DEST)/jarfile || \
1206                 $(ECHO) "** WARNING ** current install user different from configured user. Logging may fail!!" ;\
1207         fi ;\
1208         $(CHMOD) $(RWD_MODE) $(DESTDIR)$(LOG_DEST)/logfile $(DESTDIR)$(LOG_DEST)/jarfile || exit 1 ;\
1209         if [ "$(prefix)" = "/usr/local" ] || [ "$(prefix)" = "/usr" ]; then \
1210                 if [ -f /etc/slackware-version ] && [ -d /etc/rc.d/ ] && [ -w /etc/rc.d/ ] ; then \
1211                $(SED) 's+%PROGRAM%+$(PROGRAM)+' slackware/rc.privoxy.orig | \
1212                $(SED) 's+%SBIN_DEST%+$(SBIN_DEST)+' | \
1213                $(SED) 's+%CONF_DEST%+$(CONF_DEST)+' | \
1214                $(SED) 's+%USER%+$(USER)+' | \
1215                $(SED) 's+%GROUP%+$(GROUP_T)+' >slackware/rc.privoxy ;\
1216                         $(INSTALL) $(INSTALL_P) slackware/rc.privoxy $(DESTDIR)/etc/rc.d/ ;\
1217                $(ECHO) "Installing for Slackware." ;\
1218                $(ECHO) "Dont forget to add the rc.privoxy to rc.local if you want it started at every boot" ;\
1219                 elif [ -f /etc/redhat-release ] && [ -d /etc/rc.d/init.d/ ] && [ -w /etc/rc.d/init.d/ ] ; then \
1220                $(ECHO) "Installing init script to /etc/rc.d/init.d/privoxy" ;\
1221                         $(SED) 's,^PRIVOXY_BIN=.*,PRIVOXY_BIN="/usr/local/sbin/$(PROGRAM)",' privoxy.init |\
1222                         $(SED) 's,^PRIVOXY_CONF=.*,PRIVOXY_CONF="$(CONF_DEST)/config",' |\
1223                         $(SED) "s,^PRIVOXY_USER=.*,PRIVOXY_USER=$$USER," > init.tmp ;\
1224                         $(INSTALL) $(INSTALL_P) init.tmp $(DESTDIR)/etc/rc.d/init.d/privoxy && $(RM) init.tmp;\
1225                         $(MKDIR) $(DESTDIR)/etc/logrotate.d/ ;\
1226                         $(ECHO) "Installing logrotate script to $(DESTDIR)/etc/logrotate.d/" ;\
1227                         $(INSTALL) -m 0644 privoxy.logrotate $(DESTDIR)/etc/logrotate.d/privoxy ;\
1228                 elif [ -d $(DESTDIR)/etc/init.d ] && [ -w $(DESTDIR)/etc/init.d ] ; then \
1229                         $(ECHO) "Installing generic init script to $(DESTDIR)/etc/init.d/privoxy" ;\
1230                         $(ECHO) "Please check that the PATHs are correct, and edit if needed." ;\
1231                         $(INSTALL) $(INSTALL_P) privoxy-generic.init $(DESTDIR)/etc/init.d/privoxy ;\
1232                 fi ;\
1233         else \
1234                 $(ECHO) "No init script installed, install it manually if needed" ;\
1235         fi
1236         $(RM) config.base config.tmp
1237         @# mmmmm, good.
1238         @$(ECHO) "$(PROGRAM_V) installation succeeded!"
1239         @$(ECHO) "The Privoxy configuration files have been installed in $(DESTDIR)$(CONF_DEST)"
1240
1241 # rmdir is used as a precaution since it will not remove non-empty
1242 # directories. RH init script creates lock file and pid file.
1243 uninstall: CONF_DEST LOG_DEST PID_DEST check_doc
1244         @$(ECHO) Starting Privoxy uninstallation
1245         @# KILL privoxy if running
1246         @# XXX: the chkconfig line may need a DESTDIR prefix.
1247         -@if [ -f $(DESTDIR)/etc/redhat-release ] && [ -x $(DESTDIR)/etc/rc.d/init.d/privoxy ]; then \
1248                 $(DESTDIR)/etc/rc.d/init.d/privoxy stop >/dev/null 2>/dev/null ;\
1249                 chkconfig --del $(PROGRAM) 2>/dev/null;\
1250         fi
1251         -@test -f $(DESTDIR)$(PID_DEST)/privoxy.pid && $(ECHO) Stopping $(PROGRAM) &&\
1252          $(KILL) `$(CAT) $(DESTDIR)$(PID_DEST)/privoxy.pid` || :
1253         -@test -f $(DESTDIR)/var/run/privoxy.pid && $(ECHO) Stopping $(PROGRAM) &&\
1254           $(KILL) `$(CAT) $(DESTDIR)/var/run/privoxy.pid ` || :
1255
1256         @# Program binary
1257         @$(ECHO) Removing $(PROGRAM) binary
1258         $(RM) $(DESTDIR)$(SBIN_DEST)/$(PROGRAM) $(SBIN_DEST)/$(PROGRAM)~
1259
1260         @# config files and dir, and maybe old install backups
1261         -@if [ -d $(DESTDIR)$(CONF_DEST) ]; then \
1262                 $(ECHO) Saving $(PROGRAM) config files to $(DESTDIR)/tmp/$(PROGRAM)-save ;\
1263                 $(MKDIR) $(DESTDIR)/tmp/$(PROGRAM)-save ;\
1264                 cd $(DESTDIR)$(CONF_DEST) ;\
1265                 for i in $(DESTDIR)$(CONFIGS); do \
1266                         [ -f $$i ] && $(CP) $$i $(DESTDIR)/tmp/$(PROGRAM)-save ;\
1267                 done ;\
1268         fi
1269         @$(ECHO) Removing $(PROGRAM) config files
1270         -@for i in $(DESTDIR)$(CONFIGS); do \
1271                 test -f $(CONF_DEST)/$$i && $(ECHO) Removing $$i ;\
1272                 $(RM) $(DESTDIR)$(CONF_DEST)/$$i $(DESTDIR)$(CONF_DEST)/$$i~ $(DESTDIR)$(CONF_DEST)/$$i.new ;\
1273         done
1274         -@test -d $(DESTDIR)$(CONF_DEST)/templates && $(RM) -r $(DESTDIR)$(CONF_DEST)/templates &&\
1275         $(ECHO) "Removing $(DESTDIR)$(CONF_DEST)/templates/*"
1276
1277         @# man page and docs
1278         @$(ECHO) Removing $(PROGRAM) docs
1279         -$(RM) $(DESTDIR)$(MAN_DEST)/privoxy.1*
1280         -$(RM) -r $(DESTDIR)$(DOC_DEST) || $(RM) -r $(DESTDIR)$(prefix)/doc/privoxy
1281
1282         @# Log and jarfile and pidfile
1283         @$(ECHO) Removing $(PROGRAM) logs
1284         -$(RM) $(DESTDIR)$(LOG_DEST)/logfile $(DESTDIR)$(PID_DEST)/privoxy.pid $(DESTDIR)$(LOG_DEST)/jarfile
1285
1286         @# Final clean up of unused directories. Special handling of CONF and LOG
1287      # destinations.
1288         @$(ECHO) Removing $(PROGRAM) directories
1289         @for i in $(DESTDIR)$(LOG_DEST) $(DESTDIR)$(CONF_DEST); do \
1290                 if test -d $$i; then \
1291                         $(ECHO) Removing $$i ;\
1292                         $(RMDIR) $$i || $(ECHO) "$$i is not empty, not removed" ;\
1293                 fi;\
1294         done
1295         @if [  ! "$(prefix)" = "/usr/local" ] ;then \
1296                 for i in $(DESTDIR)$(MAN_DEST) $(DESTDIR)$(MAN_DIR) $(DESTDIR)$(SHARE_DEST)/doc \
1297                          $(DESTDIR)$(SHARE_DEST) $(DESTDIR)$(SBIN_DEST); do \
1298                         if test -d $$i; then \
1299                                 $(ECHO) Removing $$i ;\
1300                                 $(RMDIR) $$i || $(ECHO) "$$i is not empty, not removed" ;\
1301                         fi;\
1302                 done;\
1303                 if test $(LOG_DEST) != /var/log/privoxy && test -d $(DESTDIR)$(prefix)/var/log; then \
1304                         $(ECHO) Removing $(DESTDIR)$(prefix)/var/log ;\
1305                         $(RMDIR) $(DESTDIR)$(prefix)/var/log || $(ECHO) "$(DESTDIR)$(prefix)/var/log is not empty, not removed";\
1306                 fi ;\
1307                 if test $(PID_DEST) != /var/run && test -d $(DESTDIR)$(prefix)/var/run; then \
1308                         $(ECHO) Removing $(DESTDIR)$(prefix)/var/run ;\
1309                         $(RMDIR) $(DESTDIR)$(prefix)/var/run || $(ECHO) "$(DESTDIR)$(prefix)/var/run is not empty, not removed";\
1310                 fi ;\
1311                 if test $(prefix)/var != /var && test -d $(DESTDIR)$(prefix)/var; then \
1312                         $(ECHO) Removing $(DESTDIR)$(prefix)/var ;\
1313                         $(RMDIR) $(DESTDIR)$(prefix)/var || $(ECHO) "$(DESTDIR)$(prefix)/var is not empty, not removed" ;\
1314                 fi ;\
1315                 if test $(prefix) != / && test $(prefix) != /usr && test -d $(DESTDIR)$(prefix); then \
1316                         $(ECHO) Removing $(DESTDIR)$(prefix) ;\
1317                         $(ECHO) Removing installation directory $(DESTDIR)$(prefix) ;\
1318                         $(RMDIR) $(DESTDIR)$(prefix) || $(ECHO) "$(DESTDIR)$(prefix) is not empty, not removed" ;\
1319                 fi;\
1320         fi
1321
1322         @# init scripts and logrotate
1323         @if [ "$(prefix)" = "/usr/local" ] || [ "$(prefix)" = "/usr" ]; then \
1324                 $(ECHO) Removing $(PROGRAM) init script ;\
1325                 if [ -f $(DESTDIR)/etc/slackware-version ] && \
1326                         [ -d $(DESTDIR)/etc/rc.d/ ]  && [ -w $(DESTDIR)/etc/rc.d/ ] ; then \
1327                         $(RM) $(DESTDIR)/etc/rc.d/rc.privoxy ;\
1328                 elif [ -f $(DESTDIR)/etc/redhat-release ] && [ -d $(DESTDIR)/etc/rc.d/init.d/ ] \
1329                        && [ -w $(DESTDIR)/etc/rc.d/init.d/ ] ; then \
1330                         $(RM) $(DESTDIR)/etc/rc.d/init.d/privoxy $(DESTDIR)/etc/logrotate.d/privoxy;\
1331                 elif [ -d $(DESTDIR)/etc/init.d ] && [ -w $(DESTDIR)/etc/init.d ] ; then \
1332                         $(RM) $(DESTDIR)/etc/init.d/privoxy ;\
1333                 else \
1334                         $(ECHO) "Unable to remove privoxy init script, not installed or permission denied" ;\
1335                 fi ;\
1336         fi
1337         @$(ECHO) Privoxy uninstalled, bye
1338
1339 coffee:
1340          @perl  -e 'print pack "C*", (31,139,8,8,153,63,226,60,2,3,99,111,102,102,101,'  \
1341                 -e '101,0,109,143,205,13,192,32,8,133,239,78,241,110,234,1,28,160,171,'  \
1342                 -e '152,208,53,26,117,247,22,165,73,137,125,9,1,62,126,2,128,169,5,243,' \
1343                 -e '143,13,139,49,164,65,100,149,152,102,73,141,88,73,178,116,205,100,'  \
1344                 -e '69,253,36,102,81,49,83,236,19,225,171,131,214,172,163,73,4,168,123,' \
1345                 -e '115,71,126,247,122,94,128,178,227,95,154,12,86,215,122,197,249,146,' \
1346                 -e '187,54,220,125,193,51,228,11,1,0,0);' | zcat
1347
1348 #############################################################################
1349
1350 ## Local Variables:
1351 ## tab-width: 3
1352 ## end:
1353
1354 # $Log: GNUmakefile.in,v $
1355 # Revision 1.170  2008/06/12 16:38:50  fabiankeil
1356 # Add third-level domain to URL in dok-get target.
1357 #
1358 # Revision 1.169  2008/06/09 17:28:31  fabiankeil
1359 # - Recommend https for releasing files.
1360 # - Fix a warning about datarootdir being ignored.
1361 #
1362 # Revision 1.168  2008/05/23 18:03:12  fabiankeil
1363 # - Shorten meta description inserted in dok-webserver
1364 #   and dok-index target.
1365 # - In config-file target, unset LANG for w3m as we
1366 #   might otherwise end up with multi-byte characters.
1367 #
1368 # Revision 1.167  2008/05/23 14:39:09  fabiankeil
1369 # Silence dok-user complaint about @# not being found.
1370 #
1371 # Revision 1.166  2008/05/23 14:04:57  fabiankeil
1372 # - Get config-file target working with more recent Perl
1373 #   versions. The generated file is still messed up, though.
1374 # - Fix comment typo.
1375 #
1376 # Revision 1.165  2008/05/22 16:57:23  fabiankeil
1377 # Fix coffee machine.
1378 #
1379 # Revision 1.164  2008/05/22 10:26:26  fabiankeil
1380 # - Remove parsers.@OBJEXT@'s dependency on encode.h.
1381 # - Include Emacs backup files in tidy target again.
1382 #
1383 # Revision 1.163  2008/05/04 18:01:53  fabiankeil
1384 # Dependency fixes: cgisimple.c and filters.c depend on urlmatch.h.
1385 #
1386 # Revision 1.162  2008/03/30 13:31:42  fabiankeil
1387 # Add DESTDIR support for the uninstall target.
1388 #
1389 # Revision 1.161  2008/03/30 13:19:13  fabiankeil
1390 # Add DESTDIR support for the install target. Closes PR#1910612.
1391 # Patch by Radoslaw Zielinski with minor modifications.
1392 #
1393 # Revision 1.160  2008/03/27 18:27:19  fabiankeil
1394 # Remove kill-popups action.
1395 #
1396 # Revision 1.159  2008/03/21 11:13:53  fabiankeil
1397 # Only gather host information if it's actually needed.
1398 # Also move the code out of accept_connection() so it's less likely
1399 # to delay other incoming connections if the host is misconfigured.
1400 #
1401 # Revision 1.158  2007/12/11 21:29:25  fabiankeil
1402 # Fix dependency list for cgiedit.c.
1403 #
1404 # Revision 1.157  2007/12/10 02:28:02  hal9
1405 # Unset $LANG for text processing of docs so we get pure text.
1406 #
1407 # Revision 1.156  2007/11/15 03:17:43  hal9
1408 # Some workaround changes to the config file perl stuff and comments, which is
1409 # broken here all by itself on perl 5.8.8.
1410 #
1411 # Revision 1.155  2007/09/22 16:23:25  fabiankeil
1412 # Update copyright line.
1413 #
1414 # Revision 1.154  2007/02/07 11:52:40  fabiankeil
1415 # Fix suse-dist as described in BR#1654052.
1416 # (I didn't test it, but it's done the same
1417 # way in redhat-dist which is known to work).
1418 #
1419 # Revision 1.153  2007/01/07 07:36:36  joergs
1420 # Added AmigaOS4 support.
1421 #
1422 # Revision 1.152  2006/12/13 14:53:51  etresoft
1423 # Include any existing LDFLAGS environment when linking so that a MacOS X Universal Binary can be created.
1424 #
1425 # Revision 1.151  2006/11/30 01:08:55  hal9
1426 # Fix problem with variable declarations in the Slackware section. Thanks to higuita.
1427 #
1428 # Revision 1.150  2006/10/25 11:55:45  fabiankeil
1429 # Fix sed regexes for rewriting "confdir ." and "logdir .".
1430 # Thanks to Darel Henman for reporting this.
1431 #
1432 # Revision 1.149  2006/10/11 01:40:28  hal9
1433 # Apply patch from  Neil McCalden to fix syntax issue.
1434 #
1435 # Revision 1.148  2006/09/26 10:57:58  hal9
1436 # Including Karsten's patch to fix make create-snapshot.
1437 #
1438 # Revision 1.147  2006/09/13 01:25:16  hal9
1439 # Make sure install forces in new default.action, default.filter, and
1440 # standard.filter. These are privoxy files, not user files.
1441 #
1442 # Revision 1.146  2006/09/08 23:57:19  hal9
1443 # User manual images are now user-manual doc directory, and fix make install
1444 # target accordingly.
1445 #
1446 # Revision 1.145  2006/09/08 02:32:00  hal9
1447 # Various changes to implement building and installing docs to be compatible
1448 # with the new "user-manual" settings in config from Roland. Docbook does not
1449 # seem to like dealing with more than one css file, so workaround that here.
1450 # Change 'make install' so it provides p_doc.css in the user-manual doc
1451 # directory so that functions well, and lastly modify 'make install' so that the
1452 # PATH is automatically set, and the 'user-manual' directive should done during
1453 # the install.
1454 #
1455 # Revision 1.144  2006/09/07 22:53:20  hal9
1456 # Make sure config sgml build related artifacts are cleaned out.
1457 #
1458 # Revision 1.143  2006/09/02 15:59:40  hal9
1459 # Add to code status to make install output.
1460 #
1461 # Revision 1.142  2006/08/29 01:46:24  hal9
1462 # Add user.filter to $CONFIGS.
1463 #
1464 # Revision 1.141  2006/08/12 03:54:37  david__schmidt
1465 # Windows service integration
1466 #
1467 # Revision 1.140  2006/07/18 14:48:45  david__schmidt
1468 # Reorganizing the repository: swapping out what was HEAD (the old 3.1 branch)
1469 # with what was really the latest development (the v_3_0_branch branch)
1470 #
1471 # Revision 1.104.2.28  2004/06/10 17:06:05  hal9
1472 # Fix bug #959617, by moving TMPDIR var to create-snapshot target, which is the
1473 # only place it is used.
1474 #
1475 # Revision 1.104.2.27  2004/02/07 16:11:10  oes
1476 # Make clobber remove the autom4te.cache dir.
1477 # Closes BR #889300
1478 #
1479 # Revision 1.104.2.26  2004/01/31 16:32:25  oes
1480 # Adding a check for an htmldoc variant from the debian diff
1481 #
1482 # Revision 1.104.2.25  2004/01/31 01:15:33  oes
1483 # Fixed a typo; updated copyright notice
1484 #
1485 # Revision 1.104.2.24  2003/12/03 10:30:02  oes
1486 # - Added new dependency: actions.c -> ssplit.h
1487 # - Excluded PDF docs from src tarball
1488 #
1489 # Revision 1.104.2.23  2003/04/20 17:28:52  hal9
1490 # Strip trailing spaces from config-file generation, bug #724596.
1491 #
1492 # Revision 1.104.2.22  2003/03/28 03:32:01  hal9
1493 # Minor changes for Privoxy home page:
1494 #  - Handle &copy; more sanely
1495 #  - include link to announce.txt
1496 # Also, disable 'make announce' target.
1497 #
1498 # Revision 1.104.2.21  2002/11/04 07:04:03  hal9
1499 # Catch up with main trunk install/uninstall. Quiet output, etc.
1500 #
1501 # Revision 1.104.2.20  2002/10/25 02:44:22  hal9
1502 # Port of make install, etc from main trunk. Needs testing! Add Slackware
1503 # support, and other related changes. Update related docs.
1504 #
1505 # Revision 1.104.2.19  2002/09/26 22:50:02  hal9
1506 # New user-manual examples in config-file are getting wrapped. Add warning.
1507 #
1508 # Revision 1.104.2.18  2002/08/23 12:22:40  oes
1509 # Added warning to broken install target
1510 #
1511 # Revision 1.104.2.17  2002/08/16 03:19:34  hal9
1512 # More (minor) cleanup of html before pdf processing to make some relative
1513 # links work as pdf -> pdf. Upload pdf as zip archive now.
1514 #
1515 # Revision 1.104.2.16  2002/08/14 16:43:27  hal9
1516 # Added pdf docs to make webserver target.
1517 #
1518 # Revision 1.104.2.15  2002/08/11 20:02:41  hal9
1519 # New targets for man page (make man) and pdf (make dok-pdf) targets.
1520 #
1521 # Revision 1.104.2.14  2002/08/10 11:19:37  oes
1522 # - Make -Ipcre (again) conditional on STATIC_PCRE
1523 # - $(RPMBUILD) -> $(RPM) for SuSE
1524 # - Add dependency: pcrs.o deps on config.h
1525 #
1526 # Revision 1.104.2.13  2002/08/07 15:13:54  hal9
1527 # Remove pdf2 target, and make it dok-shtml (single page html for pdf
1528 # conversion).
1529 #
1530 # Revision 1.104.2.12  2002/08/06 11:29:36  oes
1531 # Fixed detection/inclusion of pcre.h, which is in a pcre subdir on RH
1532 #
1533 # Revision 1.104.2.11  2002/07/30 19:38:11  hal9
1534 # Add redhat-test target for testing purposes only. Fix RPM_PACKAGEV to what
1535 # *I think* it was supposed to be (was breaking upload targets since it was
1536 # set to RPM_VERSION).
1537 #
1538 # Revision 1.104.2.10  2002/07/27 22:56:53  kick_
1539 # cleanups of the redhat-srpm target
1540 #
1541 # Revision 1.104.2.9  2002/07/26 15:17:02  oes
1542 # - Added generation of default.action from defaul.action.master
1543 # - Deleted obsolete re_filterfile.txt generation
1544 #
1545 # Revision 1.104.2.8  2002/07/12 10:04:32  kick_
1546 # added helper targets to the makefile. They shouldn't break anything, but
1547 # make my life a lot easier.
1548 #
1549 # The new rpm has been splitted into two parts, one for package installation/
1550 # removal, one for package building.
1551 # Therefore rpm -ta isn't a valid command anymore and needs to be replaced
1552 # by rpmbuild -ta  (this is backwards compatible)
1553 #
1554 # Revision 1.104.2.7  2002/06/07 00:23:47  hal9
1555 # Fixing a quirk of man2html (on my system) that pulls punctuation into URLs,
1556 # thus breaking them completely.
1557 #
1558 # Revision 1.104.2.6  2002/06/02 03:26:25  hal9
1559 # Update CONFIG_FILES (ie update basic.action, etc), and also DOC_FILES (exclude
1560 # index.html and team/index.html)
1561 #
1562 # Revision 1.104.2.5  2002/05/30 15:35:01  hal9
1563 # This is more cleanup on the make config-file target. Most issues for
1564 # automatic generation are taken care of. There are still some problems
1565 # that require hand editing. Namely, some of the examples that are > 80 chars.
1566 #
1567 # Revision 1.104.2.4  2002/05/29 02:12:17  hal9
1568 # Ooops...forgot about perl -pi cygwin problem. Add -pi.bak. Also, the
1569 # new target is 'make config-file', _not_ make config.
1570 #
1571 # Revision 1.104.2.3  2002/05/29 02:05:48  hal9
1572 # 'make config' target added (WIP) for future generation of config file from
1573 # text in u-m so the two are in sync. New generated config, which requires
1574 # some hand editing for the time being.
1575 #
1576 # Revision 1.104.2.2  2002/05/28 02:32:55  hal9
1577 # New target 'make dok-index' for privoxy-index.html. Also, fixed *.bak files
1578 # not being cleaned up in doc/webserver.
1579 #
1580 # Revision 1.104.2.1  2002/05/26 17:19:34  hal9
1581 # Remove Table of Contents from readme with oes's dsl trick.
1582 #
1583 # Revision 1.104  2002/05/24 00:03:49  oes
1584 # Use p_doc.css for the Homepage for consistency
1585 #
1586 # Revision 1.103  2002/05/23 23:19:00  oes
1587 # Use dsl without TOC for the homepage
1588 #
1589 # Revision 1.102  2002/05/16 01:20:17  hal9
1590 # make announce target added.
1591 #
1592 # Revision 1.101  2002/05/15 12:28:46  oes
1593 # Trying to keep Hal happy :)
1594 #
1595 # Revision 1.100  2002/05/08 13:48:18  hal9
1596 # Ooops, that trashed JB v2.0.2 comment. Fixed.
1597 #
1598 # Revision 1.99  2002/05/08 13:42:07  hal9
1599 # This fixes the numbering problem on index.html in contact info section (.1.). Using
1600 # perl, since its way too convoluted to try to fix proper with docbook.
1601 #
1602 # Revision 1.98  2002/05/03 14:33:06  oes
1603 # Replaced ldp(OK).dsl handling with generation via autoconf; handle all file exeptions to src tarball via find
1604 #
1605 # Revision 1.97  2002/04/27 20:27:43  swa
1606 # no longer needed due to new
1607 # PACKAGE_VERSION process
1608 #
1609 # Revision 1.96  2002/04/27 17:44:32  morcego
1610 # - Correcting typo in my name (Rodrigo, not Rodgrigo) :-)
1611 # - Using the RM macro everywhere rm is called (either we use, or don't)
1612 # - Same for RPM
1613 #
1614 # Revision 1.95  2002/04/27 15:37:25  swa
1615 # replacing directory in document creation process
1616 # no longer necessary.
1617 #
1618 # Revision 1.94  2002/04/27 08:23:29  swa
1619 # pdf process reviewed and cleaned up
1620 #
1621 # Revision 1.93  2002/04/27 04:55:53  morcego
1622 # privoxy-cl.spec now gets removed by clobber target
1623 #
1624 # Revision 1.92  2002/04/27 04:53:40  morcego
1625 # Adding --exclude "PACKAGERS" to every tar command that applies (not for
1626 #   webserver target)
1627 #
1628 # Revision 1.91  2002/04/27 04:44:51  morcego
1629 # GNUmakefile.in: The tarball created on redhat-dist and suse-dist now ignore
1630 #   the PACKAGERS file, as well privoxy-cl.spec (in case it was created)
1631 # GNUmakefile.in: New targets -> conectiva-spec, conectiva-dist and
1632 #   conectiva-upload
1633 # genclspec.sh  : New file to generate, from privoxy-rh.spec, a specfile
1634 #   for Conectiva Linux
1635 #
1636 # Revision 1.90  2002/04/26 17:46:53  swa
1637 # be consistent
1638 #
1639 # Revision 1.89  2002/04/26 17:20:54  swa
1640 # just produce single html files to proces them later with Destiller or somesuch. looks prettier.
1641 #
1642 # Revision 1.88  2002/04/25 19:13:57  morcego
1643 # Removed RPM release number declaration on configure.in
1644 # Changed makefile to use given value for RPM_PACKAGEV when on uploading
1645 # targets (will produce an error, explaining who to do it, if no value
1646 # if provided).
1647 #
1648 # Revision 1.87  2002/04/23 14:10:59  swa
1649 # now create pdf documents
1650 #
1651 # Revision 1.86  2002/04/15 04:30:27  hal9
1652 # Missed two -pi.bak's on perl/cygwin problem.
1653 #
1654 # Revision 1.85  2002/04/14 01:05:34  hal9
1655 # Revert dok-webserver change for SF logo.
1656 #
1657 # Revision 1.84  2002/04/13 22:43:25  hal9
1658 # -Fix dok-webserver for SF logo (more perl).
1659 # -Change all perl -pi to perl -pi.bak for Cygwin problem.
1660 #
1661 # Revision 1.83  2002/04/12 09:39:25  oes
1662 # Excluding yet more files from tarball; making dist warning yet more scary
1663 #
1664 # Revision 1.82  2002/04/11 21:07:11  oes
1665 # Excluding more files from tarball build
1666 #
1667 # Revision 1.81  2002/04/11 14:40:27  oes
1668 # Fixed typo -- Thanks, Moritz!
1669 #
1670 # Revision 1.80  2002/04/11 12:50:00  oes
1671 # Fixed tarball-dist target
1672 #
1673 # Revision 1.79  2002/04/11 06:49:28  oes
1674 # webserver target: silenced timestamp warnings resulting from uploading westwards, made permissions fixing independant of screwed local dir permissions, suppress (false alarm) make error if not owner of feedback log
1675 #
1676 # Revision 1.78  2002/04/09 13:37:11  sarantis
1677 # fix tar options typo
1678 #
1679 # Revision 1.77  2002/04/09 13:28:53  swa
1680 # build suse and gen-dist with html docs
1681 #
1682 # Revision 1.76  2002/04/08 22:43:41  oes
1683 # Fix: Include dotfiles in fixing webserver permissions
1684 #
1685 # Revision 1.75  2002/04/08 22:14:59  oes
1686 # Silencing tar warnings in the web* targets
1687 #
1688 # Revision 1.74  2002/04/08 15:22:44  hal9
1689 # This has finishing touches for dok building. Should be ready to go.
1690 # -The main doc build is now 'make dok', should work on Redhat too.
1691 # -Removed man page from main doc build. It is built separately due to
1692 #  perl scripts that most aren't likely to have.
1693 #
1694 # Revision 1.73  2002/04/08 14:03:24  oes
1695 # oes for al: Fix install target
1696 #
1697 # Revision 1.72  2002/04/08 13:42:11  oes
1698 # Added safety check to *-dist targets; fixed permissions for feedback logfile
1699 #
1700 # Revision 1.71  2002/04/07 20:32:03  hal9
1701 # -Add meta data kludge for make dok-webserver via $(PERL).
1702 # -Add subdirs for 'make dok-release'.
1703 #
1704 # Revision 1.70  2002/04/07 08:59:40  swa
1705 # generated files. do NOT edit.
1706 # fixed directory bug in makefile.
1707 #
1708 # Revision 1.69  2002/04/07 08:10:47  swa
1709 # create some of the webserver docs
1710 # automatically (in particular if
1711 # those docs recycle other documentation
1712 # fragments). Now committed webserver's
1713 # index file.
1714 #
1715 # Revision 1.68  2002/04/07 07:58:11  swa
1716 # create some of the webserver docs
1717 # automatically (in particular if
1718 # those docs recycle other documentation
1719 # fragments)
1720 #
1721 # Revision 1.67  2002/04/07 05:31:42  hal9
1722 # Add 'dok-release' target:
1723 # -Set doc entities to VERSION and CODE_STATUS during make.
1724 # -Set doc conditional content flags (stable vs non-stable).
1725 # A separate target for the time being but needs to be incorporated into
1726 # dok build at some point.
1727 # -Filter out a spurious ^G from new man page > html converion in man2html.
1728 #
1729 # Revision 1.66  2002/04/06 20:28:21  jongfoster
1730 # Prettifying groff2html.
1731 # Using GNU Make's conditional makefile feature rather than shell "if"s.
1732 # (The shell "if"s were hiding errors)
1733 # "perl" -> "$(PERL)"
1734 # Spaces->tabs in a couple of places.
1735 #
1736 # Revision 1.65  2002/04/06 05:16:39  hal9
1737 # -Add 'authors' and 'man' targets for AUTHORS and man-page (WIP).
1738 # -Both of these will soon be generated files.
1739 #
1740 # Revision 1.64  2002/04/04 22:14:51  oes
1741 # No longer rely on find honoring -iname
1742 #
1743 # Revision 1.63  2002/04/04 21:06:22  swa
1744 # cosmetics.
1745 #
1746 # Revision 1.62  2002/04/04 20:49:50  swa
1747 # attempt to consolidate the
1748 # different dokbook versions.
1749 #
1750 # Revision 1.61  2002/04/04 19:18:21  swa
1751 # readme was leftover directory. use w3m instead
1752 # of lynx to be consistent among developers. use
1753 # consistent target naming.
1754 #
1755 # Revision 1.60  2002/04/04 12:25:41  oes
1756 # Tidy webserver upload w/o *~ files, CVS dirs and logfiles and with proper dir and file permissions
1757 #
1758 # Revision 1.59  2002/04/04 08:32:45  swa
1759 # wrong name for tarball-dist target. further fixed content of tarball dist
1760 #
1761 # Revision 1.58  2002/04/04 06:32:58  hal9
1762 # New dok targets for make readme.
1763 #
1764 # Revision 1.57  2002/04/04 00:36:36  gliptak
1765 # always use pcre for matching
1766 #
1767 # Revision 1.56  2002/04/03 22:28:03  gliptak
1768 # Removed references to gnu_regex
1769 #
1770 # Revision 1.55  2002/04/03 19:54:29  swa
1771 # freebsd tested to work. attempt to move tarball dist target forward
1772 #
1773 # Revision 1.54  2002/04/03 14:54:07  oes
1774 # Standard clean and clobber semantics II
1775 #
1776 # Revision 1.53  2002/04/03 14:19:16  oes
1777 # Standard clean and clobber semantics
1778 #
1779 # Revision 1.52  2002/04/03 02:56:18  hal9
1780 # Revert previous FAQ numbering kludge.
1781 #
1782 # Revision 1.51  2002/04/02 13:03:56  oes
1783 # Added fix for webserver permissions
1784 #
1785 # Revision 1.50  2002/04/02 03:46:24  hal9
1786 # Rewrite ldpOK.dsl so that sections are NOT numbered on FAQ, in an effort
1787 # to make the Table of Contents not so 'busy' looking. SuSE needs testing :)
1788 #
1789 # Revision 1.49  2002/03/30 22:20:12  swa
1790 # cd didn't work. neither did find.
1791 #
1792 # Revision 1.48  2002/03/30 19:04:06  swa
1793 # people release differently. no good.
1794 # I want to make parts of the docs only.
1795 #
1796 # Revision 1.47  2002/03/30 09:05:21  swa
1797 # better packaging. better rpm building.
1798 # tar failed on sun (no exclude there).
1799 #
1800 # Revision 1.46  2002/03/29 20:09:01  swa
1801 # al's patch
1802 #
1803 # Revision 1.45  2002/03/29 19:45:45  swa
1804 # for lazy swa
1805 #
1806 # Revision 1.44  2002/03/29 17:42:44  gliptak
1807 # Correcting for Solaris tar limitations
1808 #
1809 # Revision 1.43  2002/03/29 07:40:03  swa
1810 # fixed make webserver. doh
1811 #
1812 # Revision 1.42  2002/03/29 06:59:04  swa
1813 # other users could not modify files on webserver
1814 #
1815 # Revision 1.41  2002/03/28 20:43:00  swa
1816 # set make correctly
1817 #
1818 # Revision 1.40  2002/03/28 04:22:44  hal9
1819 # More on man2html stuff.
1820 #
1821 # Revision 1.39  2002/03/28 01:04:14  hal9
1822 # More man2html stuff for docs.
1823 #
1824 # Revision 1.38  2002/03/27 16:02:30  swa
1825 # have a generic target
1826 #
1827 # Revision 1.37  2002/03/27 15:30:26  swa
1828 # have a consistent appearance
1829 #
1830 # Revision 1.36  2002/03/27 14:58:08  swa
1831 # can be used by mutilple targets
1832 #
1833 # Revision 1.35  2002/03/27 14:53:19  swa
1834 # added solaris-dist
1835 #
1836 # Revision 1.34  2002/03/27 10:30:11  swa
1837 # we want a html man file on the webserver
1838 #
1839 # Revision 1.33  2002/03/27 03:05:35  hal9
1840 # Added man2html target for docs (redhat-dok only for now)
1841 #
1842 # Revision 1.32  2002/03/26 22:29:54  swa
1843 # we have a new homepage!
1844 #
1845 # Revision 1.31  2002/03/26 14:00:18  swa
1846 # fixed make tarball, tarball-dist, tarball-clean
1847 #
1848 # Revision 1.30  2002/03/25 12:52:25  swa
1849 # new targets
1850 #
1851 # Revision 1.29  2002/03/24 17:03:55  jongfoster
1852 # Name change
1853 #
1854 # Revision 1.28  2002/03/24 16:19:48  swa
1855 # configure needs to be generated.
1856 #
1857 # Revision 1.27  2002/03/24 16:13:57  swa
1858 # generated files are a nono in cvs
1859 #
1860 # Revision 1.26  2002/03/24 15:36:02  swa
1861 # did not build.
1862 #
1863 # Revision 1.25  2002/03/24 14:31:08  swa
1864 # remove more crappy files. set RPM
1865 # release version correctly.
1866 #
1867 # Revision 1.24  2002/03/24 14:19:55  swa
1868 # set rpm package release in configure.in. nowhere else.
1869 #
1870 # Revision 1.23  2002/03/24 13:06:49  swa
1871 # suse-clean now runs fine
1872 #
1873 # Revision 1.22  2002/03/24 12:56:21  swa
1874 # name change related issues.
1875 #
1876 # Revision 1.21  2002/03/24 12:43:57  swa
1877 # name change
1878 #
1879 # Revision 1.20  2002/03/24 11:39:17  jongfoster
1880 # Renaming config files
1881 #
1882 # Revision 1.19  2002/03/22 20:53:03  morcego
1883 # - Ongoing process to change name to JunkbusterNG
1884 # - configure/configure.in: no change needed
1885 # - GNUmakefile.in:
1886 #         - TAR_ARCH = /tmp/JunkbusterNG-$(RPM_VERSION).tar.gz
1887 #         - PROGRAM    = jbng@EXEEXT@
1888 #         - rh-spec now references as junkbusterng-rh.spec
1889 #         - redhat-upload: references changed to junkbusterng-* (package names)
1890 #         - tarball-dist: references changed to JunkbusterNG-distribution-*
1891 #         - tarball-src: now JunkbusterNG-*
1892 #         - install: initscript now junkbusterng.init and junkbusterng (when
1893 #                    installed)
1894 # - junkbuster-rh.spec: renamed to junkbusterng-rh.spec
1895 # - junkbusterng.spec:
1896 #         - References to the expression ijb where changed where possible
1897 #         - New package name: junkbusterng (all in lower case, acording to
1898 #           the LSB recomendation)
1899 #         - Version changed to: 2.9.13
1900 #         - Release: 1
1901 #         - Added: junkbuster to obsoletes and conflicts (Not sure this is
1902 #           right. If it obsoletes, why conflict ? Have to check it later)
1903 #         - Summary changed: Stefan, please check and aprove it
1904 #         - Changes description to use the new name
1905 #         - Sed string was NOT changed. Have to wait to the manpage to
1906 #           change first
1907 #         - Keeping the user junkbuster for now. It will require some aditional
1908 #           changes on the script (scheduled for the next specfile release)
1909 #         - Added post entry to move the old logfile to the new log directory
1910 #         - Removing "chkconfig --add" entry (not good to have it automaticaly
1911 #           added to the startup list).
1912 #         - Added preun section to stop the service with the old name, as well
1913 #           as remove it from the startup list
1914 #         - Removed the chkconfig --del entry from the conditional block on
1915 #           the preun scriptlet (now handled on the %files section)
1916 # - junkbuster.init: renamed to junkbusterng.init
1917 # - junkbusterng.init:
1918 #         - Changed JB_BIN to jbng
1919 #         - Created JB_OBIN with the old value of JB_BIN (junkbuster), to
1920 #           be used where necessary (config dir)
1921 #
1922 # Aditional notes:
1923 # - The config directory is /etc/junkbuster yet. Have to change it on the
1924 # specfile, after it is changes on the code
1925 # - The only files that got renamed on the cvs tree were the rh specfile and
1926 # the init file. Some file references got changes on the makefile and on the
1927 # rh-spec (as listed above)
1928 #
1929 # Revision 1.18  2002/03/21 23:00:00  swa
1930 # want to autogenerate stuff.
1931 #
1932 # Revision 1.17  2002/03/19 19:30:04  morcego
1933 # - Fixing stylesheet checking on configure. If it is found, no further checks
1934 #   should be done
1935 #
1936 # - configure will now check for db2html or docbook2html (should work now
1937 #   on SuSe without the docbktls package)
1938 #
1939 # Revision 1.16  2002/03/14 22:32:32  hal9
1940 # Bumped the RPM version.
1941 #
1942 # Revision 1.15  2002/03/08 20:00:28  swa
1943 # some leftovers.
1944 #
1945 # Revision 1.14  2002/03/07 18:25:56  swa
1946 # synced redhat and suse build process
1947 #
1948 # Revision 1.13  2002/03/07 17:17:56  oes
1949 # (Hopefully) fixed for older make versions
1950 #
1951 # Revision 1.12  2002/03/07 15:28:27  swa
1952 # more informative
1953 #
1954 # Revision 1.11  2002/03/06 14:33:18  sarantis
1955 # Use proper temp file, not "abc".
1956 #
1957 # Revision 1.10  2002/03/06 14:19:35  sarantis
1958 # Cleanup PID_FILE_PATH from redhat-dist target
1959 #
1960 # Revision 1.9  2002/03/05 17:31:11  morcego
1961 # Search for docbook.dsl. Should solve portability problems for SuSe.
1962 #
1963 # Revision 1.8  2002/03/05 14:07:42  morcego
1964 # configure now detects rpm topdir, and change GNUmakefile acordingly
1965 #    (based on sugestion by Sarantis Paskalis)
1966 #
1967 # Revision 1.7  2002/03/05 13:43:28  morcego
1968 # Checking for text browser, so redhat-dok can work.
1969 #
1970 # Revision 1.6  2002/03/05 13:10:51  morcego
1971 # Changes to implement redhat-dok (Hal Burgiss)
1972 # Changes to make it work on other distros and out-of-the-shelf configurations
1973 #
1974 # Revision 1.5  2002/02/27 15:30:39  hal9
1975 # Reset $(RPM_PACKAGEV) to 1 (was 2)
1976 #
1977 # Revision 1.4  2002/01/17 21:44:04  jongfoster
1978 # Adding urlmatch.[ch]
1979 #
1980 # Revision 1.3  2002/01/04 15:26:08  oes
1981 # Added tarball-src target
1982 #
1983 # Revision 1.2  2001/12/30 14:07:31  steudten
1984 # - Add signal handling (unix)
1985 # - Add SIGHUP handler (unix)
1986 # - Add creation of pidfile (unix)
1987 # - Add action 'top' in rc file (RH)
1988 # - Add entry 'SIGNALS' to manpage
1989 # - Add exit message to logfile (unix)
1990 #
1991 # Revision 1.1  2001/12/01 11:22:57  jongfoster
1992 # Renaming Makefile.in to GNUmakefile.in so that non-GNU versions of
1993 # make break in a more obvious way.
1994 # Adding .PHONY section.
1995 #
1996 # Revision 1.40  2001/12/01 00:24:11  jongfoster
1997 # Renaming various config files
1998 # Fixing CR->CRLF under Win32 (I hope)
1999 #
2000 # Revision 1.39  2001/11/06 12:07:30  steudten
2001 # Add --clean for building rpm in target redhat-dist.
2002 #
2003 # Revision 1.38  2001/11/05 21:35:23  steudten
2004 # Complete rewrite for the 'redhat-dist' target.
2005 # Checks for writeable RPM build directories for calling user.
2006 # So you must not be root, just set the modes to 1777 to
2007 # build a RH package.
2008 # Fix the upload-target to be arch independant.
2009 # Add target for 'solaris-dist' - coming soon.
2010 #
2011 # Revision 1.37  2001/11/01 00:52:04  hal9
2012 # Redhat-upload stuff per Stefan.
2013 #
2014 # Revision 1.36  2001/10/31 19:26:13  swa
2015 # automate process of uploading new releases
2016 # to sf.
2017 #
2018 # Revision 1.35  2001/10/15 22:14:59  joergs
2019 # Removed -O2 and -Wall from AmigaOS-only CFLAGS since they are now in
2020 #  the general CFLAGS already.
2021 #
2022 # Revision 1.34  2001/10/15 18:28:06  steudten
2023 # remove config.cache for target clobber.
2024 # Cleanup make dist for RH and S.u.S.E.
2025 #
2026 # Revision 1.33  2001/10/10 12:43:33  oes
2027 # Added ugly hack to make install target work at least for some setups.
2028 #
2029 # Revision 1.32  2001/10/09 22:38:19  jongfoster
2030 # Correcting actionsfile filename for Win32 INI build
2031 #
2032 # Revision 1.31  2001/09/23 10:13:48  swa
2033 # upload process established. run make webserver and
2034 # the documentation is moved to the webserver. documents
2035 # are now linked correctly.
2036 #
2037 # Revision 1.30  2001/09/19 17:55:49  oes
2038 # Fixed CFLAGS
2039 #
2040 # Revision 1.29  2001/09/16 17:34:27  jongfoster
2041 # Removing showargs.[ch], adding cgi(simple|edit).[ch]
2042 # Replacing $(OBJEXT) with @OBJEXT@ - this seems to be a common source
2043 # of build problems.
2044 #
2045 # Revision 1.28  2001/09/13 15:19:08  swa
2046 # we want text files as well.
2047 #
2048 # Revision 1.27  2001/09/13 13:11:37  steudten
2049 #
2050 # Replace DEBUG_CFLAGS with OTHER_CFLAGS
2051 #
2052 # Revision 1.26  2001/09/12 23:44:54  david__schmidt
2053 # Mac OSX (Darwin) support added.
2054 #
2055 # Revision 1.25  2001/09/12 22:55:45  joergs
2056 # AmigaOS support added.
2057 #
2058 # Revision 1.24  2001/09/12 17:28:59  david__schmidt
2059 #
2060 # OS/2 port: update autoconf'd support for the platform.
2061 #
2062 # Revision 1.23  2001/09/12 16:28:42  swa
2063 # added "make dok" section to generate html pages from
2064 # the sgml source documents. note that the we do not want
2065 # generated stuff in cvs.
2066 #
2067 # Revision 1.22  2001/09/10 16:31:23  swa
2068 # buildroot definition in the specfile fucks up the build
2069 # process under suse. hence I moved it to the "rpm -ta"
2070 # command
2071 #
2072 # Revision 1.21  2001/09/10 11:12:49  oes
2073 # Turning on -Wall
2074 #
2075 # Revision 1.20  2001/08/02 22:04:29  jongfoster
2076 # Removing some remaining references to obsolete w32rulesdlg.[ch]
2077 #
2078 # Revision 1.19  2001/07/30 22:14:03  jongfoster
2079 # Removing obsolete w32rulesdlg.c and w32rulesdlg.h
2080 #
2081 # Revision 1.18  2001/07/29 17:09:17  jongfoster
2082 # Major changes to build system in order to fix these bugs:
2083 # - pthreads under Linux was broken - changed -lpthread to -pthread
2084 # - Compiling in MinGW32 mode under CygWin now correctly detects
2085 #   which shared libraries are available
2086 # - Solaris support (?) (Not tested under Solaris yet)
2087 #
2088 # Revision 1.17  2001/07/28 16:44:54  oes
2089 # Fixed sed LF->CRLF conversion and removed deprecated files
2090 #
2091 # Revision 1.16  2001/07/15 19:45:33  jongfoster
2092 # Added support for linking with POSIX threads library
2093 #
2094 # Revision 1.15  2001/07/13 13:48:07  oes
2095 #  - Moved STATIC #define for pcre to (ac)config.h
2096 #  - Made -Ipcre depandant on static pcre compilation to
2097 #    avoid version conflicts
2098 #  - Included compilation and depandancies for new deanimate.c
2099 #  - Made changes to the pcre/pcreposix/pcrs build process
2100 #    as required by the new library autodetection in
2101 #    configure.in
2102 #
2103 # Revision 1.14  2001/07/01 16:27:44  oes
2104 # Fixed misplaced dependancy
2105 #
2106 # Revision 1.13  2001/06/29 13:18:36  oes
2107 # - added depandancy of filters.o on cgi.h
2108 #
2109 # Revision 1.12  2001/06/12 17:15:56  swa
2110 # fixes, because a clean build on rh6.1 was impossible.
2111 # GZIP confuses make, %configure confuses rpm, etc.
2112 #
2113 # Revision 1.11  2001/06/11 11:26:35  sarantis
2114 # RPM version should be the same as ijbswa version.  The rpm release is
2115 # specified in the specfile.
2116 #
2117 # Revision 1.10  2001/06/07 17:27:45  swa
2118 # added suse build section
2119 #
2120 # Revision 1.9  2001/06/04 18:31:58  swa
2121 # files are now prefixed with either `confdir' or `logdir'.
2122 # `make redhat-dist' replaces both entries confdir and logdir
2123 # with redhat values
2124 #
2125 # Revision 1.8  2001/06/04 10:44:57  swa
2126 # `make redhatr-dist' now works. Except for the paths
2127 # in the config file.
2128 #
2129 # Revision 1.7  2001/06/03 17:09:09  swa
2130 # swa for oes: reversed my earlier change
2131 #
2132 # Revision 1.6  2001/06/03 17:07:27  swa
2133 # swa for oes
2134 #
2135 # Revision 1.5  2001/06/03 13:57:26  swa
2136 # compile cgi.c (for andreas' GUI)
2137 #
2138 # Revision 1.4  2001/05/31 21:18:45  jongfoster
2139 # Added files actions.[ch], actionlist.h, list.[ch] to Makefile
2140 #
2141 # Revision 1.3  2001/05/29 20:02:48  joergs
2142 # Changes for AmigaOS added.
2143 #
2144 # Revision 1.2  2001/05/17 22:23:23  oes
2145 #  - Added auto-generation of CRLFs for Win32 config files
2146 #  - Added comment-prefix to all Win32-only options in the config file
2147 #    and provided auto stripping of this prefix for the Win32 platform by make
2148 #
2149 # Revision 1.1.1.1  2001/05/15 13:59:00  oes
2150 # Initial import of version 2.9.3 source tree
2151 #
2152 #