Quote $$answer to avoid error on null value.
[privoxy.git] / GNUmakefile.in
1 # Note:  Makefile is built automatically from Makefile.in
2 #
3 # $Id: GNUmakefile.in,v 1.130 2002/10/22 05:49:14 hal9 Exp $
4 #
5 # Written by and Copyright (C) 2001 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 # Source directories
52 #############################################################################
53 DIR_PRIVOXY_ROOT     := .
54 DIR_PRIVOXY_SRC      := $(DIR_PRIVOXY_ROOT)/src
55 DIR_PRIVOXY_SRC_PCRE := $(DIR_PRIVOXY_ROOT)/pcre
56 DIR_PRIVOXY_OBJ      := $(DIR_PRIVOXY_ROOT)/obj
57
58 #############################################################################
59 # Directories for "make install"
60 #############################################################################
61
62 prefix       = @prefix@
63 exec_prefix  = @exec_prefix@
64 CONF_BASE    = @sysconfdir@
65 SBIN_DEST    = @sbindir@
66 MAN_DIR      = @mandir@
67 MAN_DEST     = $(MAN_DIR)/man1
68 SHARE_DEST   = @datadir@
69 DOC_DEST     = $(SHARE_DEST)/doc/privoxy
70 VAR_DEST     = @localstatedir@
71 LOGS_DEST    = $(VAR_DEST)/log/privoxy
72 PIDS_DEST    = $(VAR_DEST)/run
73
74 # if $prefix = /usr/local then the default CONFDEST change from 
75 # CONF_DEST = $(CONF_BASE) to CONF_DEST = $(CONF_BASE)/privoxy  
76 # by the target rule CONF_DEST
77 #
78 # also if the $prefix is /usr/local and there is no
79 # $(SHARE_DEST)/doc, it checks for $prefix/doc and installs there
80 # instead in this situation
81 #
82 # finally if $prefix=/usr/local and VAR_DEST=$prefix/var it 
83 # changes this to /var for storing the logs and pidfile
84
85 # used in source dir only, the install goes to $share_dest/doc/privoxy
86 DOK_WEB = doc/webserver/
87
88 #############################################################################
89 # Build tools
90 #############################################################################
91
92 PROGRAM    = privoxy@EXEEXT@
93 CC         = @CC@
94 ECHO       = echo
95 GZIP_PROG  = gzip
96 # Install usage should be compatible with install-sh.
97 INSTALL    = @INSTALL@
98 INSTALL_P  = -m 0755  
99 INSTALL_T  = -m 0664 
100 INSTALL_D  = -m 0755 -d
101 INSTALL_R  = 0660
102 # install options for superuser install
103 #INSTALL_S  = -g @GROUP@ -o @USER@ 
104 # id -u is not universal. FIXME: need to set from configure. Breaks on
105 # Solaris.
106 #ID         = id -u
107 LD         = @CC@
108 RM         = rm -f
109 RMDIR      = rmdir
110 MKDIR      = ./mkinstalldirs
111 STRIP_PROG = strip
112 SED           = sed
113 GREP       = grep
114 CAT        = cat
115 RPM        = rpm
116 MV            = mv
117 TAR        = tar
118 LN         = ln
119 TOUCH      = touch
120 KILL       = kill
121 CHMOD      = chmod
122 CHOWN      = chown
123 DOC_STATUS = @DOC_STATUS@
124 # Note: Please make sure that -d ldp.dsl\#html stays the last option to
125 #       $(JADEBIN), because for some targets "-notoc" will be appended
126 #       to it (--> "ldp.dsl\#html-notoc"). 
127 TARGET_OS  = @host@
128 PERL       = perl
129 DOC_DIR    = doc/source
130
131 #User Group paras
132 USER       = @USER@
133 GROUP    = @GROUP@
134
135 # Program to do LF->CRLF
136 #
137 # The sed version should be the most portable, but it doesn't work for me,
138 # the other two do.  FIXME.
139 #   - Jon
140 #DOSFILTER  = $(SED) -e $$'s,$$,\r,'
141 #DOSFILTER  = gawk -v ORS='\r\n' '{print $0;}'
142 DOSFILTER  = $(PERL) -p -e 's/\n/\r\n/'
143
144 #############################################################################
145 # Setup for make distribution rh and suse for now 
146 #############################################################################
147
148 TAR_ARCH = /tmp/privoxy-$(RPM_VERSION).tar.gz
149 RPM_BASE = @RPM_BASE@
150
151 #############################################################################
152 # We include these files in our distributions
153 #############################################################################
154 CONFIGS = config trust default.action standard.action user.action default.filter
155 # take care that no CVS .cvsignore or other crappy files
156 # are included here
157 # and escape every '#' in the find. doh.
158 CONFIG_FILES = $(CONFIGS) \
159                 `find templates/ -type f | grep -v "CVS" | grep -v "\.\#" | grep -v ".*~" | grep -v ".cvsignore" | grep -v "TAGS"`
160
161 DOC_FILES = AUTHORS LICENSE README ChangeLog INSTALL \
162                 `find doc/text/ -type f | grep -v "CVS" | grep -v "\.\#" | grep -v ".*~" | grep -v ".cvsignore" | grep -v "TAGS"` \
163                 `find doc/webserver/ -name "*.html" | grep -v "\(webserver\|team\)\/index\.html"` \
164                 `find doc/webserver/ -name "*.css"` \
165                 privoxy.1
166
167 #############################################################################
168 # Filenames and libraries
169 #############################################################################
170
171 C_SRC  =          \
172   $(DIR_PRIVOXY_SRC)/actions.c   \
173   $(DIR_PRIVOXY_SRC)/cgi.c       \
174   $(DIR_PRIVOXY_SRC)/cgiedit.c   \
175   $(DIR_PRIVOXY_SRC)/cgisimple.c \
176   $(DIR_PRIVOXY_SRC)/deanimate.c \
177   $(DIR_PRIVOXY_SRC)/encode.c    \
178   $(DIR_PRIVOXY_SRC)/errlog.c    \
179   $(DIR_PRIVOXY_SRC)/filters.c   \
180   $(DIR_PRIVOXY_SRC)/gateway.c   \
181   $(DIR_PRIVOXY_SRC)/jbsockets.c \
182   $(DIR_PRIVOXY_SRC)/jcc.c       \
183   $(DIR_PRIVOXY_SRC)/killpopup.c \
184   $(DIR_PRIVOXY_SRC)/list.c      \
185   $(DIR_PRIVOXY_SRC)/loadcfg.c   \
186   $(DIR_PRIVOXY_SRC)/loaders.c   \
187   $(DIR_PRIVOXY_SRC)/miscutil.c  \
188   $(DIR_PRIVOXY_SRC)/parsers.c   \
189   $(DIR_PRIVOXY_SRC)/ssplit.c    \
190   $(DIR_PRIVOXY_SRC)/urlmatch.c
191
192 C_OBJS = $(C_SRC:$(DIR_PRIVOXY_SRC)/%.c=$(DIR_PRIVOXY_OBJ)/%.@OBJEXT@)
193 C_HDRS = $(C_SRC:.c=.h) $(DIR_PRIVOXY_SRC)/project.h $(DIR_PRIVOXY_SRC)/actionlist.h
194
195 W32_SRC   = @WIN_ONLY@$(DIR_PRIVOXY_SRC)/w32log.c $(DIR_PRIVOXY_SRC)/w32taskbar.c $(DIR_PRIVOXY_SRC)/win32.c
196 W32_FILES = @WIN_ONLY@$(DIR_PRIVOXY_OBJ)/w32res.res
197 W32_OBJS  = @WIN_ONLY@$(W32_SRC:$(DIR_PRIVOXY_SRC)/%.c=$(DIR_PRIVOXY_OBJ)/%.@OBJEXT@) $(W32_FILES)
198 W32_HDRS  = @WIN_ONLY@$(DIR_PRIVOXY_SRC)/w32log.h $(DIR_PRIVOXY_SRC)/w32taskbar.h $(DIR_PRIVOXY_SRC)/win32.h $(DIR_PRIVOXY_SRC)/w32res.h
199 W32_LIB   = @WIN_ONLY@-lwsock32 -lcomctl32
200 W32_INIS  = @WIN_ONLY@config.txt trust.txt
201
202 PCRS_SRC     = @STATIC_PCRS_ONLY@$(DIR_PRIVOXY_SRC)/pcrs.c
203 PCRS_OBJS    = @STATIC_PCRS_ONLY@$(PCRS_SRC:$(DIR_PRIVOXY_SRC)/%.c=$(DIR_PRIVOXY_OBJ)/%.@OBJEXT@)
204 PCRS_HDRS    = @STATIC_PCRS_ONLY@$(PCRS_SRC:.c=.h)
205
206 PCRE_SRC     = @STATIC_PCRE_ONLY@$(DIR_PRIVOXY_SRC_PCRE)/get.c $(DIR_PRIVOXY_SRC_PCRE)/maketables.c $(DIR_PRIVOXY_SRC_PCRE)/study.c $(DIR_PRIVOXY_SRC_PCRE)/pcre.c
207 PCRE_OBJS    = @STATIC_PCRE_ONLY@$(PCRE_SRC:$(DIR_PRIVOXY_SRC_PCRE)/%.c=$(DIR_PRIVOXY_OBJ)/%.@OBJEXT@)
208 PCRE_HDRS    = @STATIC_PCRE_ONLY@$(DIR_PRIVOXY_SRC_PCRE)/config.h $(DIR_PRIVOXY_SRC_PCRE)/chartables.c $(DIR_PRIVOXY_SRC_PCRE)/internal.h $(DIR_PRIVOXY_SRC_PCRE)/pcre.h
209
210 # No REGEX (maybe because dynamically linked pcreposix):
211 REGEX_SRC    =
212 @STATIC_PCRE_ONLY@REGEX_SRC = $(DIR_PRIVOXY_SRC_PCRE)/pcreposix.c
213
214 REGEX_OBJS   = $(REGEX_SRC:$(DIR_PRIVOXY_SRC_PCRE)/%.c=$(DIR_PRIVOXY_OBJ)/%.@OBJEXT@)
215 REGEX_HDRS   = $(REGEX_SRC:.c=.h)
216
217 # Dependencies introduced by #include "project.h".
218 PROJECT_H_DEPS = $(DIR_PRIVOXY_SRC)/project.h $(REGEX_HDRS) $(PCRS_HDRS) @STATIC_PCRE_ONLY@$(DIR_PRIVOXY_SRC_PCRE)/pcre.h
219
220 # Socket libraries for platforms that need them explicitly defined
221 SOCKET_LIB   = @SOCKET_LIB@
222
223 # PThreads library, if needed.
224 PTHREAD_LIB  = @PTHREAD_ONLY@@PTHREAD_LIB@
225
226 SRCS         = $(C_SRC)  $(W32_SRC)  $(PCRS_SRC)  $(PCRE_SRC)  $(REGEX_SRC)
227 OBJS         = $(C_OBJS) $(W32_OBJS) $(PCRS_OBJS) $(PCRE_OBJS) $(REGEX_OBJS)
228 HDRS         = $(C_HDRS) $(W32_HDRS) $(PCRS_HDRS) $(PCRE_OBJS) $(REGEX_HDRS)
229 LIBS         = @LIBS@ $(W32_LIB) $(SOCKET_LIB) $(PTHREAD_LIB)
230
231
232 #############################################################################
233 # Compiler switches
234 #############################################################################
235
236 # The flag "-mno-win32" can be used by Cygwin to emulate a un?x type build.
237 # The flag "-mwindows -mno-cygwin" will cause Cygwin to use MingW32 for a
238 # Win32 GUI build.
239 # The flag "-pthread" is required if using Pthreads under Linux (and
240 # possibly other OSs).
241 SPECIAL_CFLAGS = @SPECIAL_CFLAGS@
242
243 # Add your flags here 
244 OTHER_CFLAGS =   
245
246 CFLAGS = @CFLAGS@ @CPPFLAGS@ $(OTHER_CFLAGS) $(SPECIAL_CFLAGS) -Wall \
247          @STATIC_PCRE_ONLY@ -Ipcre 
248
249 LDFLAGS = $(DEBUG_CFLAGS) $(SPECIAL_CFLAGS)
250
251
252 #############################################################################
253 # Build section.
254 #
255 # There should NOT be any targets above this line.
256 #############################################################################
257 all: $(PROGRAM) default.action
258
259
260 #############################################################################
261 # Phony targets
262 #############################################################################
263 .PHONY: all inifiles redhat-dist redhat-upload redhat-test solaris-dist suse-dist \
264 suse-upload win-dist tarball-dist dok redhat-dok webserver clean clobber tags \
265 install conectiva-spec conectiva-dist conectiva-upload debian-dist \
266 debian-upload ensure-wdump ensure-jadebin ensure-dkprefix CONF_DEST LOG_DEST \
267 PID_DEST check_doc install-strip uninstall GROUP_T
268
269
270 #############################################################################
271 # Compile command
272 #############################################################################
273 $(DIR_PRIVOXY_OBJ)/%.o: $(DIR_PRIVOXY_SRC)/%.c $(DIR_PRIVOXY_OBJ)
274         $(CC) -c $(CFLAGS) $(CPPFLAGS) $< -o $@
275
276 $(DIR_PRIVOXY_OBJ)/%.o: $(DIR_PRIVOXY_SRC_PCRE)/%.c $(DIR_PRIVOXY_OBJ)
277         $(CC) -c $(CFLAGS) $(CPPFLAGS) $< -o $@
278
279 $(DIR_PRIVOXY_OBJ):
280         $(CHMOD) 0755 $(MKDIR)
281         $(MKDIR) obj
282
283 #############################################################################
284 # Strip master copy comments from default.action:
285 #############################################################################
286 default.action: default.action.master
287         $(GREP) -v '^#MASTER#' $< > $@
288
289 #############################################################################
290 # Win32 config files
291 #############################################################################
292
293 inifiles: $(W32_INIS)
294
295 config.txt: config
296         $(SED) -e 's!\trustfile trust!trustfile trust.txt!' \
297                -e 's!\jarfile jarfile!jarfile jar.log!' \
298                -e 's!\logfile logfile!logfile privoxy.log!' \
299                -e 's!#Win32-only: !!' \
300                < $< | \
301                $(DOSFILTER) > $@
302         # LF to CRLF in default.action
303         $(DOSFILTER) <default.action >default.action.txt && mv default.action.txt default.action
304         # LF to CRLF in default.filter
305         $(DOSFILTER) <default.filter >default.filter.txt && mv default.filter.txt default.filter
306
307 trust.txt: trust
308         $(DOSFILTER) < $< > $@ 
309
310 #############################################################################
311 # Pre-dist check:
312 #############################################################################
313 dist-check:
314         @if [ -d CVS ]; then \
315            $(ECHO) "***************************************************"; \
316            $(ECHO) "***                                             ***"; \
317            $(ECHO) "***                  WARNING                    ***"; \
318            $(ECHO) "***                                             ***"; \
319            $(ECHO) "*** The presence of a CVS subdirectory suggests ***"; \
320            $(ECHO) "*** that you are trying to build a distribution ***"; \
321            $(ECHO) "*** package based on a checked out, not an      ***"; \
322            $(ECHO) "*** exported copy of the source tree. Please    ***"; \
323            $(ECHO) "*** see \"Releasing a new version\" in the        ***"; \
324            $(ECHO) "*** developer manual.                           ***"; \
325            $(ECHO) "***                                             ***"; \
326            $(ECHO) "***************************************************"; \
327            $(ECHO) "Type \"yes i am sure\" if you are sure that you"; \
328            $(ECHO) -n "really want to proceed: "; \
329            read answer; \
330            if [ "$$answer" != "yes i am sure" ]; then exit 1; fi \
331          fi;
332
333 #############################################################################
334 # create tar.gz from CVS:
335 # This make-target is usually called through 'create-archive'. If you 
336 # run 'make create-snapshot' without setting SNAPVERSION, you'll get a
337 # tar.gz with the current date in the name and as a releasenumber in the 
338 # spec-file. But the main usage is to run it as follows (Red Hat example):
339 # make SNAPVERSION=1.6x create-snapshot
340 # This creates a tar.gz and spec-file for a Red Hat 6.x version.
341 #############################################################################
342 create-snapshot:
343         @tag=`cvs -d $(CVSROOT) status Makefile | awk ' /Sticky Tag/ { print $$3 } '` 2> /dev/null; \
344         [ x"$$tag" = x"(none)" ] && tag=HEAD; \
345         echo "*** Creating package from $$tag!"; \
346         cd $(TMPDIR) ; cvs -Q -d $(CVSROOT) export -r $$tag current || echo "Um... export aborted."
347         @cd $(TMPDIR)/current; \
348         TMPFILE=$$(mktemp -q /tmp/$(PROGRAM).XXXXXX); \
349         if $(SED) -e 's/^\(Version:\).*/\1 $(RPM_VERSION)/g' \
350                 -e 's/^\(Release:\).*/\1 $(SNAPVERSION)/g' \
351                 privoxy-rh.spec > $$TMPFILE ; then \
352                         $(MV) -f $$TMPFILE privoxy-rh.spec; \
353         else \
354                 $(ECHO) "Could not set version info in specfile."; \
355                 exit 1;\
356         fi;\
357         if $(SED) -e 's/^\(Version:\).*/\1 $(RPM_VERSION)/g' \
358              -e 's/^\(Release:\).*/\1 $(SNAPVERSION)/g' \
359               privoxy-suse.spec > $$TMPFILE ; then \
360                         $(MV) -f $$TMPFILE privoxy-suse.spec; \
361         else \
362                 $(ECHO) "Could not set version info in specfile."; \
363                 exit 1;\
364         fi; \
365         $(RM) $(TMPFILE); \
366         cd $(TMPDIR)/current; \
367         $(TAR) --exclude ".cvsignore" --exclude "CVS" --exclude \
368                 "privoxy-suse.spec" -czf $(TMPDIR)/$(PROGRAM)-rh-$(VERSION).tar.gz .; \
369         $(TAR) --exclude ".cvsignore" --exclude "CVS" --exclude \
370                 "privoxy-rh.spec" -czf $(TMPDIR)/$(PROGRAM)-suse-$(VERSION).tar.gz .
371         @$(MV) -f $(TMPDIR)/$(PROGRAM)-rh-$(VERSION).tar.gz .
372         @$(MV) -f $(TMPDIR)/$(PROGRAM)-suse-$(VERSION).tar.gz .
373         @$(RM) -rf $(TMPDIR)
374         @echo "Resulting files are $(PROGRAM)-rh-$(VERSION).tar.gz and"
375         @echo "                    $(PROGRAM)-suse-$(VERSION).tar.gz"
376
377
378 #############################################################################
379 # looks at the version of Makefile and exports a corresponding source-tree
380 # example: if the Makefile has the sticky tag v_2_9_13, you'll get 
381 # privoxy-*-2.4.13.tar.gz. Two different tar files will be written, one for
382 # Red Hat and one for SuSe (different spec-files)
383 #############################################################################
384 create-archive:
385         make SNAPVERSION=$(SNAPVERSION) create-snapshot
386
387
388 #############################################################################
389 # RPM specific stuff (SuSE or Redhat, ..)
390 #############################################################################
391 rpm-stuff: dist-check clean clobber 
392         for dir in RPMS SRPMS BUILD SOURCES SPECS; do \
393                 if [ ! -w $(RPM_BASE)/$$dir ]; then \
394                         $(ECHO) "$(RPM_BASE)/$$dir is not writable for you. Maybe try as root."; \
395                         $(ECHO) "Or add a suitable path to .rpmmacros like."; \
396                         $(ECHO) "%_topdir /home/foo/rpm-build"; \
397                         exit 1; \
398                 fi; \
399         done; \
400
401 check-release:
402         @if [ "$(RPM_PACKAGEV)" = "" ]; then \
403                 echo ; \
404                 echo "  ERROR: NO RPM_PACKAGEV VALUE"; \
405                 echo "  No value given for RPM_PACKAGEV. Please use:"; \
406                 echo "  make dist-upload RPM_PACKAGEV=release"; \
407                 echo "  where \"release\" is the release number you want to and"; \
408                 echo "  where \"dist\" is the name of the distro (redhat or suse)"; \
409                 echo ; \
410                 echo "  Ex: make redhat-upload RPM_PACKAGEV=1"; \
411                 echo ""; \
412                 echo "ATTENTION: If your distribution use a specific tag on the"; \
413                 echo "           release field (like \"cl\" for Conectiva, and"; \
414                 echo "           \"mdk\" for Mandrake), DO NOT put it on the value"; \
415                 echo "           given to RPM_PACKAGEV. It will be added automaticaly."; \
416                 echo "           Do it like you would do for a redhat package,"; \
417                 echo "           (i.e. just the number)."; \
418                 echo ; \
419                 exit 1; \
420         fi
421
422
423 #############################################################################
424 # Create Conectiva specfile from RedHat specfile
425 #############################################################################
426 conectiva-spec:
427         $(RM) privoxy-cl.spec
428         chmod a+x genclspec.sh
429         ./genclspec.sh
430
431 #############################################################################
432 # Conectiva distribution for x86
433 #############################################################################
434 conectiva-dist: rpm-stuff conectiva-spec
435
436         $(TAR) --exclude ".cvsignore" --exclude "CVS" --exclude "privoxy-suse.spec" --exclude "privoxy-rh.spec" --exclude "PACKAGERS" -czf $(TAR_ARCH) .
437         $(RPM) --clean -ta  $(TAR_ARCH)
438         if [ -f $(TAR_ARCH) ]; then  $(RM) $(TAR_ARCH); fi
439
440 conectiva-upload: check-release
441         make redhat-upload RPM_PACKAGEV=$(RPM_PACKAGEV)cl
442
443 #############################################################################
444 # redhat distribution alpha and x86
445 #############################################################################
446 redhat-dist: rpm-stuff
447         echo $(CONFIG_FILES)
448         $(TAR) --exclude ".cvsignore" --exclude "CVS" --exclude "privoxy-suse.spec" --exclude "privoxy-cl.spec" --exclude "PACKAGERS" -czf $(TAR_ARCH) .
449         $(RPMBUILD) --clean -ta  $(TAR_ARCH)
450         if [ -f $(TAR_ARCH) ]; then  $(RM) $(TAR_ARCH); fi
451
452 # For testing build issues only! Use redhat-dist for official releases.
453 redhat-test: 
454         echo $(CONFIG_FILES)
455         $(TAR) --exclude ".cvsignore" --exclude "CVS" --exclude "privoxy-suse.spec" --exclude "privoxy-cl.spec" --exclude "PACKAGERS" -czf $(TAR_ARCH) .
456         $(RPMBUILD) --clean -tb  $(TAR_ARCH)
457         if [ -f $(TAR_ARCH) ]; then  $(RM) $(TAR_ARCH); fi
458         @echo "WARNING: This target is only for testing. Use redhat-dist for releases!!!"
459
460 # anonymously ncftps the rpms to sourceforge
461 redhat-upload: check-release
462         ncftpput -u anonymous -p ijbswa-developers@lists.sourceforge.net upload.sourceforge.net /incoming $(RPM_BASE)/SRPMS/privoxy-$(RPM_VERSION)-$(RPM_PACKAGEV).src.rpm
463 # better should use `arch` here instead of ix86 to support other platforms too
464         ncftpput -u anonymous -p ijbswa-developers@lists.sourceforge.net upload.sourceforge.net /incoming $(RPM_BASE)/RPMS/*/privoxy-$(RPM_VERSION)-$(RPM_PACKAGEV).*.rpm
465         @$(ECHO) -------------------------------------------------------
466         @$(ECHO) Now goto
467         @$(ECHO) http://sourceforge.net/project/admin/editpackages.php?group_id=11118
468         @$(ECHO) ... and release the files.
469         @$(ECHO) -------------------------------------------------------
470      # w3m http://sourceforge.net/project/admin/editpackages.php?group_id=11118
471
472 #############################################################################
473 # suse distribution. works fine. no need to be root. 
474 #############################################################################
475 suse-dist: rpm-stuff
476 #       TMPFILE=$$(mktemp -q /tmp/$(PROGRAM).XXXXXX); \
477 #       if $(SED) -e 's/^\(Version:\).*/\1 $(RPM_VERSION)/g' \
478 #              -e 's/^\(Release:\).*/\1 $(RPM_PACKAGEV)/g' \
479 #               privoxy-suse.spec > $$TMPFILE ; then \
480 #       $(MV) -f $$TMPFILE privoxy-suse.spec; \
481 #       else \
482 #               $(ECHO) "Could not set version info in specfile."; \
483 #       exit 1;\
484 #       fi
485
486         $(TAR) --exclude ".cvsignore" --exclude "CVS" --exclude "privoxy-rh.spec" --exclude "privoxy-cl.spec" --exclude "PACKAGERS" -czf $(TAR_ARCH) .
487         $(RPM) --clean -ta  $(TAR_ARCH)
488         if [ -f $(TAR_ARCH) ]; then  $(RM) $(TAR_ARCH); fi
489
490 # anonymously ncftps the rpms to sourceforge
491 suse-upload: check-release
492         ncftpput -u anonymous -p ijbswa-developers@lists.sourceforge.net upload.sourceforge.net /incoming $(RPM_BASE)/SRPMS/privoxy-suse-$(RPM_VERSION)-$(RPM_PACKAGEV).src.rpm
493 # better should use `arch` here instead of ix86 to support other platforms too
494         ncftpput -u anonymous -p ijbswa-developers@lists.sourceforge.net upload.sourceforge.net /incoming $(RPM_BASE)/RPMS/*/privoxy-suse-$(RPM_VERSION)-$(RPM_PACKAGEV).*.rpm
495         @$(ECHO) -------------------------------------------------------
496         @$(ECHO) Now goto
497         @$(ECHO) http://sourceforge.net/project/admin/editpackages.php?group_id=11118
498         @$(ECHO) ... and release the files.
499         @$(ECHO) -------------------------------------------------------
500
501 # handle with care. use with root.
502 suse-clean:
503         $(RPM) -e junkbuster-suse || true
504         $(RM) -r /etc/junkbuster
505         $(RM) -r /etc/rc.d/junkbuster*
506         $(RM) -r /var/run/junkbuster.pid 
507         $(RM) -r /var/log/junkbuster
508         $(RM) /etc/init.d/junkbuster
509         $(RM) /usr/sbin/junkbuster
510         $(RM) /usr/sbin/rcjunkbuster
511         $(RM) /usr/share/man/man1/junkbuster.1.gz
512         $(RPM) -e privoxy-suse || true
513         $(RM) -r /etc/privoxy
514         $(RM) -r /etc/rc.d/privoxy*
515         $(RM) -r /var/run/privoxy.pid 
516         $(RM) -r /var/log/privoxy
517         $(RM) /etc/init.d/privoxy
518         $(RM) /usr/sbin/privoxy
519         $(RM) /usr/sbin/rcprivoxy
520         $(RM) /usr/share/man/man1/privoxy.1.gz
521
522
523 #############################################################################
524 # generic distribution
525 #############################################################################
526 gen-dist: dist-check
527         @$(ECHO) ""
528         @$(ECHO) "You have run autoconf && autoheader && ./configure right?"
529         @$(ECHO) ""
530         $(MAKE) $(PROGRAM)
531         $(STRIP_PROG) $(PROGRAM)
532         $(LN) -s current ../privoxy-$(VERSION)-$(CODE_STATUS)
533 # add program
534         (cd .. && $(TAR) -cvhf --exclude "PACKAGERS" privoxy-$(TARGET_OS)-$(VERSION)-$(CODE_STATUS)-src.tar privoxy-$(VERSION)-$(CODE_STATUS)/$(PROGRAM))
535 # add config files
536         for foo in $(CONFIG_FILES); do \
537                 (cd .. && $(TAR) -uvhf --exclude "PACKAGERS" privoxy-$(TARGET_OS)-$(VERSION)-$(CODE_STATUS)-src.tar privoxy-$(VERSION)-$(CODE_STATUS)/$$foo;) \
538         done; 
539 # add documentation
540         for foo in $(DOC_FILES); do \
541                 (cd .. && $(TAR) -uvhf --exclude "PACKAGERS" privoxy-$(TARGET_OS)-$(VERSION)-$(CODE_STATUS)-src.tar privoxy-$(VERSION)-$(CODE_STATUS)/$$foo;) \
542         done;
543 # and zip the archive
544         $(RM) ../privoxy-$(VERSION)-$(CODE_STATUS)
545         $(GZIP_PROG) ../privoxy-$(TARGET_OS)-$(VERSION)-$(CODE_STATUS)-src.tar
546         @$(ECHO) Distribution with binary created.
547
548 # anonymously ncftps the package to sourceforge
549 gen-upload:
550         ncftpput -u anonymous -p ijbswa-developers@lists.sourceforge.net upload.sourceforge.net /incoming ../privoxy-$(TARGET_OS)-$(VERSION)-$(CODE_STATUS)-src.tar.gz
551         @$(ECHO) -------------------------------------------------------
552         @$(ECHO) Now goto
553         @$(ECHO) http://sourceforge.net/project/admin/editpackages.php?group_id=11118
554         @$(ECHO) ... and release the files.
555         @$(ECHO) -------------------------------------------------------
556
557 # use with care
558 gen-clean:
559         $(RM) privoxy-$(TARGET_OS)-$(VERSION)-$(CODE_STATUS)-src.tar*
560
561 #############################################################################
562 # solaris distribution. verified on SF machines by swa.
563 #############################################################################
564 solaris-dist: gen-dist
565         @$(ECHO) Done.
566 # anonymously ncftps the package to sourceforge
567 solaris-upload: gen-upload
568         @$(ECHO) Done.
569 # use with care
570 solaris-clean: gen-clean
571         @$(ECHO) Done.
572
573 #############################################################################
574 # hpux distribution
575 #############################################################################
576 hpux-dist:
577         @$(ECHO) coming soon. 
578 hpux-upload:
579         @$(ECHO) coming soon. 
580
581 #############################################################################
582 # debian distribution
583 #############################################################################
584 debian-dist:
585         @$(ECHO) Creating Debian package.  Will exist in parent directory.
586         dpkg-buildpackage -rfakeroot -us -uc
587 debian-upload:
588         ncftpput -u anonymous -p ijbswa-developers@lists.sourceforge.net upload.sourceforge.net /incoming ../privoxy_$(shell dpkg-parsechangelog | grep "Version" | sed "s/Version: //")_$(shell dpkg --print-architecture).deb
589         @$(ECHO) -------------------------------------------------------
590         @$(ECHO) Now goto
591         @$(ECHO) http://sourceforge.net/project/admin/editpackages.php?group_id=11118
592         @$(ECHO) ... and release the files.
593         @$(ECHO) -------------------------------------------------------
594
595
596 #############################################################################
597 # macosx distribution
598 #############################################################################
599 macosx-dist:
600         @$(ECHO) coming soon. 
601 macosx-upload:
602         @$(ECHO) coming soon. 
603
604 #############################################################################
605 # amiga distribution
606 #############################################################################
607 amiga-dist:
608         @$(ECHO) coming soon. 
609 amiga-upload:
610         @$(ECHO) coming soon. 
611
612 #############################################################################
613 # freebsd distribution. verified on SF machines by swa.
614 #############################################################################
615 freebsd-dist: gen-dist
616         @$(ECHO) Done.
617 # anonymously ncftps the package to sourceforge
618 freebsd-upload: gen-upload
619         @$(ECHO) Done.
620 # use with care
621 freebsd-clean: gen-clean
622         @$(ECHO) Done.
623
624 #############################################################################
625 # Windows distribution
626 #############################################################################
627 win-dist:
628         @$(ECHO) RTFM.  You shouldn't run configure before making
629         @$(ECHO) the Windows release, so you need to start again from
630         @$(ECHO) a clean CVS export.
631         @false
632
633
634 #############################################################################
635 # Tarball distribution: No CVS dirs, dotfiles, debian build dir,
636 # (FIXME:) only parts of the static / generated docs mix in doc/webserver
637 #############################################################################
638
639 tarball-dist: dist-check clean clobber
640         $(LN) -s current ../privoxy-$(VERSION)-$(CODE_STATUS)
641
642         for i in `find . -type f -a -not \( -path "*/CVS*" -o -name ".*" \
643         -o -path "*/debian/*" -o -path "*/actions/*" -o -name "*.php" -o -name "PACKAGERS" \)`; do \
644            files="$$files privoxy-$(VERSION)-$(CODE_STATUS)/$$i"; \
645         done &&  \
646         cd .. && $(TAR) -cvhf privoxy-$(VERSION)-$(CODE_STATUS)-src.tar $$files ; \
647
648 # and zip the archive
649         $(RM) ../privoxy-$(VERSION)-$(CODE_STATUS) 
650         $(GZIP_PROG) ../privoxy-$(VERSION)-$(CODE_STATUS)-src.tar
651         @$(ECHO) Tarball distribution created.
652
653 # anonymously ncftps the tarball to sourceforge
654 tarball-upload:
655         ncftpput -u anonymous -p ijbswa-developers@lists.sourceforge.net upload.sourceforge.net /incoming ../privoxy-$(VERSION)-$(CODE_STATUS)-src.tar.gz
656         @$(ECHO) -------------------------------------------------------
657         @$(ECHO) Now goto
658         @$(ECHO) http://sourceforge.net/project/admin/editpackages.php?group_id=11118
659         @$(ECHO) ... and release the files.
660         @$(ECHO) -------------------------------------------------------
661
662 tarball-clean:
663         $(RM) ../privoxy-$(VERSION)-$(CODE_STATUS)-src.tar.gz
664
665 #############################################################################
666 #
667 # Documentation
668 #
669 # converts doc/source/*.sgml into html, text and man pages
670 #
671 #############################################################################
672
673
674 dok:
675         cd $(DOC_DIR) && $(MAKE)
676
677 #############################################################################
678 #
679 # Webserver
680 #
681 # moves dokumentation to webserver
682 #
683 #############################################################################
684 webserver: tidy
685         @$(ECHO) -------------------------------------------------------
686         @$(ECHO) You have run make dok/redhat-dok before, right?
687         @$(ECHO) Note that this command scps all stuff to the webserver,
688         @$(ECHO) it will not remove obsolete documents.
689         @$(ECHO) -------------------------------------------------------
690
691         @$(ECHO) Uploading html
692         @cd doc/webserver; \
693           upload=`find . -type f -a -not \( -path "*/CVS*" -o -path "*/results*" \)`; \
694           $(TAR) c $$upload | ssh ijbswa.sourceforge.net 'cd /home/groups/i/ij/ijbswa/htdocs/; tar xvm 2>&1 | grep -v timestamp'
695
696         @$(ECHO) Uploading pdf
697         @cd doc/pdf;\
698           zip privoxy-pdf-docs *.pdf  ;\
699                 scp -q privoxy-pdf-docs.zip ijbswa.sourceforge.net:/home/groups/i/ij/ijbswa/htdocs/pdf
700
701         @$(ECHO) Fixing permissions
702         @ssh ijbswa.sourceforge.net 'chmod -R 775 /home/groups/i/ij/ijbswa/htdocs 2>/dev/null; true'
703         @ssh ijbswa.sourceforge.net 'find /home/groups/i/ij/ijbswa/htdocs/ -type f | xargs chmod 664 2>/dev/null; true'
704         @ssh ijbswa.sourceforge.net 'chmod 666 /home/groups/i/ij/ijbswa/htdocs/actions/results/actions-feedback.txt 2>/dev/null; true'
705
706
707 web-actions: tidy
708         @$(ECHO) Uploading 
709         @cd doc/webserver/actions; \
710           upload=`find . -type f -a -not \( -path "*/CVS*" -o -path "*/results*" \)`; \
711           $(TAR) c $$upload | ssh ijbswa.sourceforge.net 'cd /home/groups/i/ij/ijbswa/htdocs/actions; tar xvm'
712
713         @$(ECHO) Fixing permissions
714         @ssh ijbswa.sourceforge.net 'find /home/groups/i/ij/ijbswa/htdocs/actions/ -type f | xargs chmod 664 2>/dev/null'
715         @ssh ijbswa.sourceforge.net 'chmod 666 /home/groups/i/ij/ijbswa/htdocs/actions/results/actions-feedback.txt 2>/dev/null'
716
717 #############################################################################
718 # Source file dependencies
719 #############################################################################
720
721 $(DIR_PRIVOXY_OBJ)/actions.@OBJEXT@:   $(DIR_PRIVOXY_SRC)/actions.c   $(DIR_PRIVOXY_SRC)/actions.h   $(DIR_PRIVOXY_SRC)/config.h $(PROJECT_H_DEPS) $(DIR_PRIVOXY_SRC)/errlog.h  $(DIR_PRIVOXY_SRC)/jcc.h       $(DIR_PRIVOXY_SRC)/list.h    $(DIR_PRIVOXY_SRC)/loaders.h   $(DIR_PRIVOXY_SRC)/miscutil.h  $(DIR_PRIVOXY_SRC)/actionlist.h
722 $(DIR_PRIVOXY_OBJ)/cgi.@OBJEXT@:       $(DIR_PRIVOXY_SRC)/cgi.c       $(DIR_PRIVOXY_SRC)/cgi.h       $(DIR_PRIVOXY_SRC)/config.h $(PROJECT_H_DEPS) $(DIR_PRIVOXY_SRC)/cgiedit.h $(DIR_PRIVOXY_SRC)/cgisimple.h $(DIR_PRIVOXY_SRC)/list.h    $(DIR_PRIVOXY_SRC)/pcrs.h      $(DIR_PRIVOXY_SRC)/encode.h    $(DIR_PRIVOXY_SRC)/ssplit.h     $(DIR_PRIVOXY_SRC)/jcc.h      $(DIR_PRIVOXY_SRC)/filters.h  $(DIR_PRIVOXY_SRC)/actions.h $(DIR_PRIVOXY_SRC)/errlog.h    $(DIR_PRIVOXY_SRC)/miscutil.h
723 $(DIR_PRIVOXY_OBJ)/cgiedit.@OBJEXT@:   $(DIR_PRIVOXY_SRC)/cgiedit.c   $(DIR_PRIVOXY_SRC)/cgiedit.h   $(DIR_PRIVOXY_SRC)/config.h $(PROJECT_H_DEPS) $(DIR_PRIVOXY_SRC)/cgi.h     $(DIR_PRIVOXY_SRC)/list.h      $(DIR_PRIVOXY_SRC)/pcrs.h    $(DIR_PRIVOXY_SRC)/encode.h    $(DIR_PRIVOXY_SRC)/ssplit.h    $(DIR_PRIVOXY_SRC)/jcc.h        $(DIR_PRIVOXY_SRC)/filters.h  $(DIR_PRIVOXY_SRC)/actions.h  $(DIR_PRIVOXY_SRC)/errlog.h  $(DIR_PRIVOXY_SRC)/miscutil.h
724 $(DIR_PRIVOXY_OBJ)/cgisimple.@OBJEXT@: $(DIR_PRIVOXY_SRC)/cgisimple.c $(DIR_PRIVOXY_SRC)/cgisimple.h $(DIR_PRIVOXY_SRC)/config.h $(PROJECT_H_DEPS) $(DIR_PRIVOXY_SRC)/cgi.h     $(DIR_PRIVOXY_SRC)/list.h      $(DIR_PRIVOXY_SRC)/pcrs.h    $(DIR_PRIVOXY_SRC)/encode.h    $(DIR_PRIVOXY_SRC)/ssplit.h    $(DIR_PRIVOXY_SRC)/jcc.h        $(DIR_PRIVOXY_SRC)/filters.h  $(DIR_PRIVOXY_SRC)/actions.h  $(DIR_PRIVOXY_SRC)/errlog.h  $(DIR_PRIVOXY_SRC)/miscutil.h
725 $(DIR_PRIVOXY_OBJ)/deanimate.@OBJEXT@: $(DIR_PRIVOXY_SRC)/deanimate.c $(DIR_PRIVOXY_SRC)/deanimate.h $(DIR_PRIVOXY_SRC)/config.h $(PROJECT_H_DEPS)
726 $(DIR_PRIVOXY_OBJ)/encode.@OBJEXT@:    $(DIR_PRIVOXY_SRC)/encode.c    $(DIR_PRIVOXY_SRC)/encode.h    $(DIR_PRIVOXY_SRC)/config.h
727 $(DIR_PRIVOXY_OBJ)/errlog.@OBJEXT@:    $(DIR_PRIVOXY_SRC)/errlog.c    $(DIR_PRIVOXY_SRC)/errlog.h    $(DIR_PRIVOXY_SRC)/config.h $(PROJECT_H_DEPS) @WIN_ONLY@$(DIR_PRIVOXY_SRC)/w32log.h
728 $(DIR_PRIVOXY_OBJ)/filters.@OBJEXT@:   $(DIR_PRIVOXY_SRC)/filters.c   $(DIR_PRIVOXY_SRC)/filters.h   $(DIR_PRIVOXY_SRC)/config.h $(PROJECT_H_DEPS) $(DIR_PRIVOXY_SRC)/errlog.h  $(DIR_PRIVOXY_SRC)/encode.h    $(DIR_PRIVOXY_SRC)/gateway.h $(DIR_PRIVOXY_SRC)/jbsockets.h $(DIR_PRIVOXY_SRC)/jcc.h       $(DIR_PRIVOXY_SRC)/loadcfg.h    $(DIR_PRIVOXY_SRC)/parsers.h  $(DIR_PRIVOXY_SRC)/ssplit.h   $(DIR_PRIVOXY_SRC)/cgi.h     $(DIR_PRIVOXY_SRC)/deanimate.h @WIN_ONLY@$(DIR_PRIVOXY_SRC)/win32.h 
729 $(DIR_PRIVOXY_OBJ)/gateway.@OBJEXT@:   $(DIR_PRIVOXY_SRC)/gateway.c   $(DIR_PRIVOXY_SRC)/gateway.h   $(DIR_PRIVOXY_SRC)/config.h $(PROJECT_H_DEPS) $(DIR_PRIVOXY_SRC)/errlog.h  $(DIR_PRIVOXY_SRC)/jbsockets.h $(DIR_PRIVOXY_SRC)/jcc.h     $(DIR_PRIVOXY_SRC)/loadcfg.h
730 $(DIR_PRIVOXY_OBJ)/jbsockets.@OBJEXT@: $(DIR_PRIVOXY_SRC)/jbsockets.c $(DIR_PRIVOXY_SRC)/jbsockets.h $(DIR_PRIVOXY_SRC)/config.h $(PROJECT_H_DEPS) $(DIR_PRIVOXY_SRC)/filters.h
731 $(DIR_PRIVOXY_OBJ)/jcc.@OBJEXT@:       $(DIR_PRIVOXY_SRC)/jcc.c       $(DIR_PRIVOXY_SRC)/jcc.h       $(DIR_PRIVOXY_SRC)/config.h $(PROJECT_H_DEPS) $(DIR_PRIVOXY_SRC)/errlog.h  $(DIR_PRIVOXY_SRC)/filters.h   $(DIR_PRIVOXY_SRC)/gateway.h $(DIR_PRIVOXY_SRC)/jbsockets.h $(DIR_PRIVOXY_SRC)/killpopup.h $(DIR_PRIVOXY_SRC)/loadcfg.h    $(DIR_PRIVOXY_SRC)/loaders.h  $(DIR_PRIVOXY_SRC)/miscutil.h $(DIR_PRIVOXY_SRC)/parsers.h @WIN_ONLY@$(DIR_PRIVOXY_SRC)/w32log.h    $(DIR_PRIVOXY_SRC)/win32.h $(DIR_PRIVOXY_SRC)/cgi.h
732 $(DIR_PRIVOXY_OBJ)/killpopup.@OBJEXT@: $(DIR_PRIVOXY_SRC)/killpopup.c $(DIR_PRIVOXY_SRC)/killpopup.h $(DIR_PRIVOXY_SRC)/config.h $(PROJECT_H_DEPS) $(DIR_PRIVOXY_SRC)/jcc.h     $(DIR_PRIVOXY_SRC)/loadcfg.h
733 $(DIR_PRIVOXY_OBJ)/list.@OBJEXT@:      $(DIR_PRIVOXY_SRC)/list.c      $(DIR_PRIVOXY_SRC)/list.h      $(DIR_PRIVOXY_SRC)/config.h $(PROJECT_H_DEPS) $(DIR_PRIVOXY_SRC)/list.h    $(DIR_PRIVOXY_SRC)/miscutil.h
734 $(DIR_PRIVOXY_OBJ)/loadcfg.@OBJEXT@:   $(DIR_PRIVOXY_SRC)/loadcfg.c   $(DIR_PRIVOXY_SRC)/loadcfg.h   $(DIR_PRIVOXY_SRC)/config.h $(PROJECT_H_DEPS) $(DIR_PRIVOXY_SRC)/errlog.h  $(DIR_PRIVOXY_SRC)/filters.h   $(DIR_PRIVOXY_SRC)/gateway.h $(DIR_PRIVOXY_SRC)/jbsockets.h $(DIR_PRIVOXY_SRC)/jcc.h       $(DIR_PRIVOXY_SRC)/killpopup.h  $(DIR_PRIVOXY_SRC)/loaders.h  $(DIR_PRIVOXY_SRC)/miscutil.h $(DIR_PRIVOXY_SRC)/parsers.h @WIN_ONLY@$(DIR_PRIVOXY_SRC)/w32log.h    $(DIR_PRIVOXY_SRC)/win32.h
735 $(DIR_PRIVOXY_OBJ)/loaders.@OBJEXT@:   $(DIR_PRIVOXY_SRC)/loaders.c   $(DIR_PRIVOXY_SRC)/loaders.h   $(DIR_PRIVOXY_SRC)/config.h $(PROJECT_H_DEPS) $(DIR_PRIVOXY_SRC)/errlog.h  $(DIR_PRIVOXY_SRC)/encode.h    $(DIR_PRIVOXY_SRC)/filters.h $(DIR_PRIVOXY_SRC)/gateway.h   $(DIR_PRIVOXY_SRC)/jcc.h       $(DIR_PRIVOXY_SRC)/loadcfg.h    $(DIR_PRIVOXY_SRC)/miscutil.h $(DIR_PRIVOXY_SRC)/parsers.h  $(DIR_PRIVOXY_SRC)/ssplit.h
736 $(DIR_PRIVOXY_OBJ)/miscutil.@OBJEXT@:  $(DIR_PRIVOXY_SRC)/miscutil.c  $(DIR_PRIVOXY_SRC)/miscutil.h  $(DIR_PRIVOXY_SRC)/config.h
737 $(DIR_PRIVOXY_OBJ)/parsers.@OBJEXT@:   $(DIR_PRIVOXY_SRC)/parsers.c   $(DIR_PRIVOXY_SRC)/parsers.h   $(DIR_PRIVOXY_SRC)/config.h $(PROJECT_H_DEPS) $(DIR_PRIVOXY_SRC)/errlog.h  $(DIR_PRIVOXY_SRC)/encode.h    $(DIR_PRIVOXY_SRC)/filters.h $(DIR_PRIVOXY_SRC)/jbsockets.h $(DIR_PRIVOXY_SRC)/jcc.h       $(DIR_PRIVOXY_SRC)/loadcfg.h    $(DIR_PRIVOXY_SRC)/loaders.h  $(DIR_PRIVOXY_SRC)/miscutil.h $(DIR_PRIVOXY_SRC)/ssplit.h
738 $(DIR_PRIVOXY_OBJ)/ssplit.@OBJEXT@:    $(DIR_PRIVOXY_SRC)/ssplit.c    $(DIR_PRIVOXY_SRC)/ssplit.h    $(DIR_PRIVOXY_SRC)/config.h                   $(DIR_PRIVOXY_SRC)/miscutil.h
739 $(DIR_PRIVOXY_OBJ)/urlmatch.@OBJEXT@:  $(DIR_PRIVOXY_SRC)/urlmatch.c  $(DIR_PRIVOXY_SRC)/urlmatch.h  $(DIR_PRIVOXY_SRC)/config.h $(PROJECT_H_DEPS) $(DIR_PRIVOXY_SRC)/errlog.h  $(DIR_PRIVOXY_SRC)/miscutil.h  $(DIR_PRIVOXY_SRC)/ssplit.h
740
741 # PCRS
742 $(DIR_PRIVOXY_OBJ)/pcrs.@OBJEXT@: $(DIR_PRIVOXY_SRC)/pcrs.c $(DIR_PRIVOXY_SRC_PCRE)/pcre.h $(DIR_PRIVOXY_SRC)/pcrs.h $(DIR_PRIVOXY_SRC)/config.h
743
744 # PCRE
745 $(DIR_PRIVOXY_OBJ)/get.@OBJEXT@:        $(DIR_PRIVOXY_SRC_PCRE)/get.c        $(DIR_PRIVOXY_SRC_PCRE)/config.h $(DIR_PRIVOXY_SRC_PCRE)/internal.h $(DIR_PRIVOXY_SRC_PCRE)/pcre.h
746 $(DIR_PRIVOXY_OBJ)/maketables.@OBJEXT@: $(DIR_PRIVOXY_SRC_PCRE)/maketables.c $(DIR_PRIVOXY_SRC_PCRE)/config.h $(DIR_PRIVOXY_SRC_PCRE)/internal.h $(DIR_PRIVOXY_SRC_PCRE)/pcre.h
747 $(DIR_PRIVOXY_OBJ)/pcre.@OBJEXT@:       $(DIR_PRIVOXY_SRC_PCRE)/pcre.c       $(DIR_PRIVOXY_SRC_PCRE)/config.h $(DIR_PRIVOXY_SRC_PCRE)/internal.h $(DIR_PRIVOXY_SRC_PCRE)/pcre.h $(DIR_PRIVOXY_SRC_PCRE)/chartables.c 
748 $(DIR_PRIVOXY_OBJ)/pcreposix.@OBJEXT@:  $(DIR_PRIVOXY_SRC_PCRE)/pcreposix.c  $(DIR_PRIVOXY_SRC_PCRE)/config.h $(DIR_PRIVOXY_SRC_PCRE)/internal.h $(DIR_PRIVOXY_SRC_PCRE)/pcre.h $(DIR_PRIVOXY_SRC_PCRE)/pcreposix.h
749 $(DIR_PRIVOXY_OBJ)/study.@OBJEXT@:      $(DIR_PRIVOXY_SRC_PCRE)/study.c      $(DIR_PRIVOXY_SRC_PCRE)/config.h $(DIR_PRIVOXY_SRC_PCRE)/internal.h $(DIR_PRIVOXY_SRC_PCRE)/pcre.h
750
751 # An auxiliary program makes the PCRE default character table source
752
753 $(DIR_PRIVOXY_SRC_PCRE)/chartables.c:   $(DIR_PRIVOXY_OBJ)/dftables@EXEEXT@
754                 $(DIR_PRIVOXY_SRC_PCRE)/dftables@EXEEXT@ >$(DIR_PRIVOXY_SRC_PCRE)/chartables.c
755
756 $(DIR_PRIVOXY_OBJ)/dftables@EXEEXT@:       $(DIR_PRIVOXY_SRC_PCRE)/dftables.c $(DIR_PRIVOXY_SRC_PCRE)/maketables.c $(DIR_PRIVOXY_SRC_PCRE)/pcre.h $(DIR_PRIVOXY_SRC_PCRE)/internal.h $(DIR_PRIVOXY_SRC_PCRE)/config.h
757                 $(CC) -o $(DIR_PRIVOXY_SRC_PCRE)/dftables@EXEEXT@ $(CFLAGS) $(DIR_PRIVOXY_SRC_PCRE)/dftables.c
758
759 # Win32
760 $(DIR_PRIVOXY_OBJ)/w32log.@OBJEXT@:      $(DIR_PRIVOXY_SRC)/config.h  $(DIR_PRIVOXY_SRC)/errlog.h  $(DIR_PRIVOXY_SRC)/jcc.h         $(DIR_PRIVOXY_SRC)/loadcfg.h    $(DIR_PRIVOXY_SRC)/miscutil.h  $(DIR_PRIVOXY_SRC)/pcrs.h    $(DIR_PRIVOXY_SRC)/project.h  $(DIR_PRIVOXY_SRC)/w32log.c  $(DIR_PRIVOXY_SRC)/w32log.h     $(DIR_PRIVOXY_SRC)/w32taskbar.h      $(DIR_PRIVOXY_SRC)/win32.h  $(DIR_PRIVOXY_SRC_PCRE)/pcre.h  $(DIR_PRIVOXY_SRC_PCRE)/pcreposix.h
761 $(DIR_PRIVOXY_OBJ)/win32.@OBJEXT@:       $(DIR_PRIVOXY_SRC)/config.h  $(DIR_PRIVOXY_SRC)/jcc.h     $(DIR_PRIVOXY_SRC)/loadcfg.h     $(DIR_PRIVOXY_SRC)/pcrs.h       $(DIR_PRIVOXY_SRC)/project.h   $(DIR_PRIVOXY_SRC)/w32log.h  $(DIR_PRIVOXY_SRC)/win32.c    $(DIR_PRIVOXY_SRC)/win32.h   $(DIR_PRIVOXY_SRC_PCRE)/pcre.h  $(DIR_PRIVOXY_SRC_PCRE)/pcreposix.h
762 $(DIR_PRIVOXY_OBJ)/w32taskbar.@OBJEXT@:  $(DIR_PRIVOXY_SRC)/config.h  $(DIR_PRIVOXY_SRC)/w32log.h  $(DIR_PRIVOXY_SRC)/w32taskbar.c  $(DIR_PRIVOXY_SRC)/w32taskbar.h
763
764 $(DIR_PRIVOXY_OBJ)/w32res.res: $(DIR_PRIVOXY_SRC)/w32res.rc \
765                 $(DIR_PRIVOXY_SRC)/w32res.h \
766                 $(DIR_PRIVOXY_SRC)/config.h \
767                 $(DIR_PRIVOXY_SRC)/icons/ico00001.ico \
768                 $(DIR_PRIVOXY_SRC)/icons/ico00002.ico \
769                 $(DIR_PRIVOXY_SRC)/icons/ico00003.ico \
770                 $(DIR_PRIVOXY_SRC)/icons/ico00004.ico \
771                 $(DIR_PRIVOXY_SRC)/icons/ico00005.ico \
772                 $(DIR_PRIVOXY_SRC)/icons/ico00006.ico \
773                 $(DIR_PRIVOXY_SRC)/icons/ico00007.ico \
774                 $(DIR_PRIVOXY_SRC)/icons/ico00008.ico \
775                 $(DIR_PRIVOXY_SRC)/icons/idle.ico \
776                 $(DIR_PRIVOXY_SRC)/icons/privoxy.ico
777         windres -D__MINGW32__=0.2 -O coff -i $< -o $@
778
779 # AmigaOS
780 @AMIGAOS_ONLY@OBJS += $(DIR_PRIVOXY_OBJ)/amiga.@OBJEXT@
781 @AMIGAOS_ONLY@CFLAGS += -D__AMIGAVERSION__=\"$(VERSION_MAJOR).$(VERSION_MINOR)$(VERSION_POINT)\" -D__AMIGADATE__=\"`date +%d.%m.%Y`\" -W -m68020 -noixemul -fbaserel -msmall-code
782 @AMIGAOS_ONLY@LDFLAGS += -m68020 -noixemul -fbaserel
783 @AMIGAOS_ONLY@LIBS = -lm /gg/lib/libb/libm020/libnix/swapstack.o
784 $(DIR_PRIVOXY_OBJ)/amiga.@OBJEXT@: $(DIR_PRIVOXY_SRC)/amiga.c $(DIR_PRIVOXY_SRC)/amiga.h $(DIR_PRIVOXY_SRC)/config.h
785
786
787 $(PROGRAM): $(OBJS) $(W32_FILES)
788         $(LD) $(LDFLAGS) -o $(PROGRAM) $(OBJS) $(LIBS)
789
790 clean:
791         $(RM) a.out $(OBJS) $(W32_FILES) $(W32_INIS) $(PROGRAM) \
792         default.action `find . -name TAGS -o -name tags`
793
794 tidy:
795         $(RM) `find . -name "*~"`
796 #       $(RM) `find . -name "#*#"` # what is this for??
797         $(RM) `find . -name ".\#*"`
798
799 clobber: tidy
800         $(RM) GNUmakefile configure src/config.h.in src/config.h config.cache config.status config.log logfile \
801               privoxy.log core *.tar.gz *.tar privoxy-cl.spec $(DOC_DIR)/ldp.dsl \
802                     $(DOC_DIR)/GNUmakefile
803
804 #
805 # FIXME: What is all this? 
806 #
807         $(RM) cscope.*  *.pdb *.lib *.exp 
808
809 distclean: clobber
810
811 tags: $(SRCS) $(HDRS)
812         etags $(SRCS) $(HDRS)
813
814 CONF_DEST:=$(shell if [ "$(prefix)" = "/usr/local" ] && [ "$(CONF_BASE)" = "$(prefix)/etc" ];then \
815                 $(ECHO) "$(CONF_BASE)/privoxy";\
816          else\
817                  $(ECHO) "$(CONF_BASE)";\
818          fi)
819
820 LOG_DEST:=$(shell if [ "$(prefix)" = "/usr/local" ] && [ "$(LOGS_DEST)" = "$(prefix)/var/log/privoxy" ];then \
821                 $(ECHO) "/var/log/privoxy" ;\
822          else\
823                  $(ECHO) "$(LOGS_DEST)";\
824          fi)
825
826 PID_DEST:=$(shell if [ "$(prefix)" = "/usr/local" ] && [ "$(PIDS_DEST)" = "$(prefix)/var/run" ];then \
827                 $(ECHO) "/var/run" ;\
828          else\
829                  $(ECHO) "$(PIDS_DEST)";\
830          fi)
831
832 check_doc:=$(shell if [ ! -d "$(SHARE_DEST)/doc" ] && [ "$(prefix)" = "/usr/local" ]  && [ -d "$(prefix)/doc" ];then \
833                 $(ECHO) "1";\
834          else\
835                  $(ECHO) "0";\
836          fi)
837
838 # If USER is specified but no GROUP, assume there is a GROUP of same name.
839 GROUP_T:=$(shell if [ x$(GROUP) = x ] && [ x$(USER) != x ];then \
840                 $(ECHO) "$(USER)" ;\
841          else\
842                  $(ECHO) "$(GROUP)";\
843          fi)
844
845 install-strip:
846         $(MAKE) install STRIP=-s
847
848 # FIXME: Test USER and GROUP on Slack to make sure this works as 
849 # intended.
850 #
851 # FIXME: id handling needs help, probably via configure, since 'id -u' is not 
852 # universally reliable (eg Solaris). Group handling could be better. 
853 # Perhaps the whole user/group validation should be done here.
854 install: CONF_DEST LOG_DEST PID_DEST check_doc GROUP_T
855         # Quick test for valid USER.
856         if [ -n "$(USER)" ]; then \
857                 id $(USER) >/dev/null || exit 1;\
858         fi
859         # Test for valid group.
860         if [ -n "$(GROUP_T)" ] && [ -n "$(USER)" ] && ! groups $(USER) | $(GREP) "\<$(GROUP_T)\>" >/dev/null; then \
861                 $(ECHO) Group $(GROUP_T) for User $(USER) is invalid && exit 1 ;\
862         fi
863         
864         $(ECHO) "Creating directories, and preparing Privoxy installation"
865         $(CHMOD) 0755 $(MKDIR)
866         $(MKDIR) $(SBIN_DEST) $(prefix) $(CONF_DEST) $(CONF_DEST)/templates $(SHARE_DEST) \
867                 $(LOG_DEST) $(PID_DEST)
868         # Install the executable binary, strip if invoked as install-strip
869         test -n "$(STRIP)" &&\
870         $(ECHO) Installing $(PROGRAM) stripped executable to $(SBIN_DEST) ||\
871         $(ECHO) Installing $(PROGRAM) executable to $(SBIN_DEST)
872         $(INSTALL) $(INSTALL_P) $(STRIP) $(PROGRAM) $(SBIN_DEST)
873      
874         # Install the DOCS and man page 
875         -if [ $(check_doc) = 0 ]; then \
876                 DOC=$(DOC_DEST) ;\
877         else \
878                 DOC=$(prefix)/doc/privoxy ;\
879         fi;\
880         $(MKDIR) $$DOC $$DOC/user-manual $$DOC/faq $$DOC/developer-manual \
881              $$DOC/man-page $$DOC/images $(MAN_DEST) ;\
882         if [ -d "$(DOK_WEB)" ]; then \
883                 $(ECHO) Installing FAQ, Manual, and other docs to $$DOC;\
884           for i in user-manual developer-manual faq; do \
885                for ii in $(DOK_WEB)/$$i/*html; do \
886                     $(INSTALL) $(INSTALL_T) $$ii $$DOC/$$i;\
887                done ;\
888           done ;\
889           for i in $(DOK_WEB)/images/*jpg; do \
890                $(INSTALL) $(INSTALL_T) $$i $$DOC/images;\
891           done ;\
892                 $(INSTALL) $(INSTALL_T) $(DOK_WEB)/man-page/*html $$DOC/man-page;\
893                 $(INSTALL) $(INSTALL_T) $(DOK_WEB)/privoxy-index.html $$DOC/index.html;\
894                 $(INSTALL) $(INSTALL_T) AUTHORS $$DOC;\
895                 $(INSTALL) $(INSTALL_T) LICENSE $$DOC;\
896                 $(INSTALL) $(INSTALL_T) README $$DOC;\
897                 $(INSTALL) $(INSTALL_T) ChangeLog $$DOC;\
898                 $(INSTALL) $(INSTALL_T) $(DOK_WEB)/p_doc.css $$DOC;\
899         fi
900         # Not all platforms support gzipped man pages.
901         $(ECHO) Installing man page to $(MAN_DEST)/privoxy.1
902         -$(INSTALL) $(INSTALL_T) privoxy.1  $(MAN_DEST)/privoxy.1
903
904         # Change the config file default directories according to the configured ones
905         $(ECHO) Rewriting config for this installation
906         if [ -f config.base ] ; then \
907                 $(CAT) config >config~ ;\
908                 $(MV) config.base config ;\
909         fi
910         $(SED) 's+confdir .+confdir $(CONF_DEST)+' config | \
911         $(SED) 's+logdir .+logdir $(LOG_DEST)+' >config.updated
912         $(MV) config config.base
913         $(MV) config.updated config 
914
915         # Install the config support files. Test for root install, and abort 
916         # if there is no privoxy user, and no other user was enabled during 
917         # configure. Later, install init script if appropriate.
918         $(ECHO) Installing templates to $(CONF_DEST)/templates
919         for i in `find templates -type f`; do \
920                 $(INSTALL) $(INSTALL_T) $$i $(CONF_DEST)/templates ;\
921         done
922
923         if [ "`id |sed 's/(.*//' |sed 's/.*=//'`" = "0" ] ;then\
924                 if [ x$(USER) = x ] || [ $(USER) = root ]; then \
925                         if [ "`id privoxy`" ]; then \
926                                 $(ECHO) "Warning: Setting user and group to privoxy";\
927                                 INSTALL_CONF="$(INSTALL_T) -g privoxy -o privoxy" ;\
928                                 USER=privoxy ;\
929                                 GROUP_T=privoxy ;\
930                         else \
931                                 $(ECHO)  "******************************************************************" ;\
932                                 $(ECHO)  " WARNING! WARNING! installing config files as root!" ;\
933                                 $(ECHO)  " It is strongly recommended to run $(PROGRAM) as non-root user," ;\
934                                 $(ECHO)  " and to install the config files as that user!" ;\
935                                 $(ECHO)  " Please read INSTALL, and create a privoxy user!" ;\
936                                 $(ECHO)  "*******************************************************************" ;\
937                                 exit 1 ;\
938                         fi ;\
939                 else \
940                         $(ECHO) "Superuser install, installing config files as $(USER):$(GROUP_T)" ;\
941                         INSTALL_CONF="$(INSTALL_T) -o $(USER) -g $(GROUP_T)" ;\
942                 fi ;\
943         else \
944                 if [ ! "`id $(USER)`" = "`id`" ] ;then \
945                         $(ECHO) "** WARNING ** current install user different from configured user!!" ;\
946                         $(ECHO) "Edit may fail." ;\
947                 fi ;\
948                 INSTALL_CONF="$(INSTALL_T)" ;\
949         fi ;\
950         $(ECHO) Installing configuration files to $(CONF_DEST);\
951         for i in $(CONFIGS); do \
952                 if [ -s "$(CONF_DEST)/$$i" ] ; then \
953                         $(ECHO) Installing $$i as $$i.new ;\
954                         $(INSTALL) -m $(INSTALL_R) $$i $(CONF_DEST)/$$i.new || exit 1;\
955                         NEW=1;\
956                 else \
957                         if test "$$i" = "config" || test "$$i" = "default.filter"; then \
958                                 $(INSTALL) -m $(INSTALL_R) $$i $(CONF_DEST) || exit 1;\
959                         else \
960                                 $(INSTALL) -m $(INSTALL_R) $$INSTALL_CONF $$i $(CONF_DEST) || exit 1;\
961                         fi;\
962                 fi ;\
963         done ;\
964         if [ -n "$$NEW" ]; then \
965                 $(CHMOD) $(INSTALL_R) $(CONF_DEST)/*.new || exit 1 ;\
966                 $(ECHO) "Warning: Older config files are preserved. Check new versions for changes!" ;\
967         fi ;\
968         [ ! -f $(LOG_DEST)/logfile ] && $(ECHO) Creating logfiles in $(LOG_DEST) || \
969                 $(ECHO) Checking logfiles in $(LOG_DEST) ;\
970         $(TOUCH) $(LOG_DEST)/logfile $(LOG_DEST)/jarfile || exit 1 ;\
971         if [ x$$USER != x ]; then \
972                 $(CHOWN) $$USER:$$GROUP_T $(LOG_DEST)/logfile $(LOG_DEST)/jarfile || \
973                 $(ECHO) "** WARNING ** current install user different from configured user. Logging may fail!!" ;\
974         fi ;\
975         $(CHMOD) $(INSTALL_R) $(LOG_DEST)/logfile $(LOG_DEST)/jarfile || exit 1 ;\
976         if [ "$(prefix)" = "/usr/local" ] || [ "$(prefix)" = "/usr" ]; then \
977                 if [ -f /etc/slackware-version ] && [ -d /etc/rc.d/ ] && [ -w /etc/rc.d/ ] ; then \
978                $(SED) 's+%PROGRAM%+$(PROGRAM)+' slackware/rc.privoxy.orig | \
979                $(SED) 's+%SBIN_DEST%+$(SBIN_DEST)+' | \
980                $(SED) 's+%CONF_DEST%+$(CONF_DEST)+' | \
981                $(SED) 's+%USER%+$$USER+' | \
982                $(SED) 's+%GROUP%+$(GROUP_T)+' >slackware/rc.privoxy ;\
983                         $(INSTALL) $(INSTALL_P) slackware/rc.privoxy /etc/rc.d/ ;\
984                $(ECHO) "Installing for Slackware." ;\
985                $(ECHO) "Dont forget to add the rc.privoxy to rc.local if you want it started at every boot" ;\
986                 elif [ -f /etc/redhat-release ] && [ -d /etc/rc.d/init.d/ ] && [ -w /etc/rc.d/init.d/ ] ; then \
987                $(ECHO) "Installing init script to /etc/rc.d/init.d/privoxy" ;\
988                         $(SED) 's,^PRIVOXY_BIN=.*,PRIVOXY_BIN="/usr/local/sbin/$(PROGRAM)",' privoxy.init |\
989                         $(SED) 's,^PRIVOXY_CONF=.*,PRIVOXY_CONF="$(CONF_DEST)/config",' |\
990                         $(SED) "s,^PRIVOXY_USER=.*,PRIVOXY_USER=$$USER," > init.tmp ;\
991                         $(INSTALL) $(INSTALL_P) init.tmp /etc/rc.d/init.d/privoxy && $(RM) init.tmp;\
992                         $(MKDIR) /etc/logrotate.d/ ;\
993                         $(ECHO) "Installing logrotate script to /etc/logrotate.d/" ;\
994                         $(INSTALL) $(INSTALL_P) privoxy.logrotate /etc/logrotate.d/privoxy ;\
995                 elif [ -d /etc/init.d ] && [ -w /etc/init.d ] ; then \
996                         $(ECHO) "Installing generic init script to /etc/init.d/privoxy" ;\
997                         $(ECHO) "Please check that the PATHs are correct, and edit if needed." ;\
998                         $(INSTALL) $(INSTALL_P) privoxy-generic.init /etc/init.d/privoxy ;\
999                 fi ;\
1000         else \
1001                 $(ECHO) "No init script installed, install it manually if needed" ;\
1002         fi
1003         # mmmmm, good.
1004         @$(ECHO) "Privoxy installation succeeded!"
1005         @$(ECHO) "The Privoxy configuration files have been installed in $(CONF_DEST)"
1006
1007 # rmdir is used as a precaution since it will not remove non-empty
1008 # directories. RH init script creates lock file and pid file.
1009 uninstall: CONF_DEST LOG_DEST PID_DEST check_doc
1010         $(ECHO) Starting Privoxy uninstallation
1011         # KILL privoxy if running
1012         -if [ -f /etc/redhat-release ] && [ -d /etc/rc.d/init.d/ ] && [ -w /etc/rc.d/init.d/ ] ; then \
1013                 /etc/rc.d/init.d/privoxy stop >/dev/null 2>/dev/null ;\
1014                 chkconfig --del $(PROGRAM) 2>/dev/null;\
1015         fi
1016         -@ test -f $(PID_DEST)/privoxy.pid && $(ECHO) Stopping $(PROGRAM) &&\
1017           $(KILL) `$(CAT) $(PID_DEST)/privoxy.pid` 
1018         -@ test -f /var/run/privoxy.pid && $(ECHO) Stopping $(PROGRAM) &&\
1019           $(KILL) `$(CAT) /var/run/privoxy.pid `
1020
1021         # Program binary
1022         $(ECHO) Removing $(PROGRAM) binary
1023         $(RM) $(SBIN_DEST)/$(PROGRAM) $(SBIN_DEST)/$(PROGRAM)~
1024
1025         # config files and dir, and maybe old install backups
1026         $(ECHO) Removing $(PROGRAM) config files
1027         for i in $(CONFIGS); do \
1028                 $(RM) $(CONF_DEST)/$$i $(CONF_DEST)/$$i~ $(CONF_DEST)/$$i.new ;\
1029         done
1030         $(RM) -r $(CONF_DEST)/templates
1031         
1032         # man page and docs
1033         $(ECHO) Removing $(PROGRAM) docs
1034         -$(RM) $(MAN_DEST)/privoxy.1*
1035         -$(RM) -r $(DOC_DEST) || $(RM) -r $(prefix)/doc/privoxy
1036
1037         # Log and jarfile and pidfile
1038         $(ECHO) Removing $(PROGRAM) logs
1039         -$(RM) $(LOG_DEST)/logfile $(PID_DEST)/privoxy.pid $(LOG_DEST)/jarfile
1040
1041         # Final clean up of unused directories. Special handling of CONF and LOG
1042      # destinations.
1043         $(ECHO) Removing $(PROGRAM) directories
1044         for i in $(LOG_DEST) $(CONF_DEST); do \
1045                 if test -d $$i; then \
1046                         $(RMDIR) $$i || $(ECHO) "$$i is not empty, not removed" ;\
1047                 fi;\
1048         done
1049         if [  ! "$(prefix)" = "/usr/local" ] ;then \
1050                 for i in $(MAN_DEST) $(MAN_DIR) $(SHARE_DEST)/doc $(SHARE_DEST) $(SBIN_DEST); do \
1051                         if test -d $$i; then \
1052                                 $(RMDIR) $$i || $(ECHO) "$$i is not empty, not removed" ;\
1053                         fi;\
1054                 done;\
1055                 if test $(LOG_DEST) != /var/log/privoxy && test -d $(prefix)/var/log; then \
1056                         $(RMDIR) $(prefix)/var/log || $(ECHO) "$(prefix)/var/log is not empty, not removed";\
1057                 fi ;\
1058                 if test $(PID_DEST) != /var/run && test -d $(prefix)/var/run; then \
1059                         $(RMDIR) $(prefix)/var/run || $(ECHO) "$(prefix)/var/run is not empty, not removed";\
1060                 fi ;\
1061                 if test $(prefix)/var != /var && test -d $(prefix)/var; then \
1062                         $(RMDIR) $(prefix)/var || $(ECHO) "$(prefix)/var is not empty, not removed" ;\
1063                 fi ;\
1064                 if test $(prefix) != / && test $(prefix) != /usr && test -d $(prefix); then \
1065                         $(ECHO) Removing installation directory $(prefix) ;\
1066                         $(RMDIR) $(prefix) || $(ECHO) "$(prefix) is not empty, not removed" ;\
1067                 fi;\
1068         fi
1069
1070         # init scripts and logrotate
1071         if [ "$(prefix)" = "/usr/local" ] || [ "$(prefix)" = "/usr" ]; then \
1072                 $(ECHO) Removing $(PROGRAM) init script ;\
1073                 if [ -f /etc/slackware-version ] && [ -d /etc/rc.d/ ]  && [ -w /etc/rc.d/ ] ; then \
1074                         $(RM) /etc/rc.d/rc.privoxy ;\
1075                 elif [ -f /etc/redhat-release ] && [ -d /etc/rc.d/init.d/ ]  && [ -w /etc/rc.d/init.d/ ] ; then \
1076                         $(RM) /etc/rc.d/init.d/privoxy /etc/logrotate.d/privoxy;\
1077                 elif [ -d /etc/init.d ] && [ -w /etc/init.d ] ; then \
1078                         $(RM) /etc/init.d/privoxy ;\
1079                 else \
1080                         $(ECHO) "Unable to remove privoxy init script, not installed or permission denied" ;\
1081                 fi ;\
1082         fi
1083         $(ECHO) Privoxy uninstalled, bye
1084
1085 coffee:
1086          @perl -e 'print pack "C*", (31,139,8,8,153,63,226,60,2,3,99,111,102,102,101,101,0,109,143,205,13,192,32,8,133,\
1087                   239,78,241,110,234,1,28,160,171,152,208,53,26,117,247,22,165,73,137,125,9,1,62,126,2,128,169,5,243,143,\
1088                   13,139,49,164,65,100,149,152,102,73,141,88,73,178,116,205,100,69,253,36,102,81,49,83,236,19,225,171,131,\
1089                   214,172,163,73,4,168,123,115,71,126,247,122,94,128,178,227,95,154,12,86,215,122,197,249,146,187,54,220,125,\
1090                   193,51,228,11,1,0,0);'|zcat
1091
1092 #############################################################################
1093
1094 ## Local Variables:
1095 ## tab-width: 3
1096 ## end:
1097
1098 # $Log: GNUmakefile.in,v $
1099 # Revision 1.130  2002/10/22 05:49:14  hal9
1100 # Make install:
1101 # - /bin/sh on Solaris does not handle: ! test.
1102 # - Remove some unused doc variables.
1103 # - Make configs group writable.
1104 #
1105 # Revision 1.129  2002/10/20 07:15:12  hal9
1106 # Getting near the end (I hope) of install target updates:
1107 # - Rewrite RH init script to reflect configured values.
1108 # - Test for USER=root as well as UID=0
1109 # - Test for invalid group (probably needs more work).
1110 # - Add /usr to /usr/local test for when to install init scripts, etc.
1111 # - More testing on previous changes.
1112 #
1113 # Revision 1.128  2002/10/18 05:36:32  hal9
1114 # More install target fixes:
1115 # - Quick fix of log ownership on root install (lightly tested). If this goes
1116 #   true to form, then the fix will break something else :(
1117 # - Fix what looks like was invalid user on Slack if root install and
1118 #   we use an existing privoxy user. No way to test this.
1119 # See FIXMEs.
1120 #
1121 # Revision 1.127  2002/10/18 00:58:07  hal9
1122 # More install/uninstall/install-strip updates:
1123 # - Don't install gzipped man page (Solaris again).
1124 # - Don't overwrite existing config files, and install new versions as *.new.
1125 #   Fix permissions/ownership here too.
1126 # - Better testing before removing directories.
1127 # - Some better messages during install, ie 'Preserving configs', etc.
1128 # - Better handling of install-strip to fix previous problem of trying to strip
1129 #   init scripts.
1130 # - Crude test for valid USER in case is set on command line.
1131 # - Force immediate exit on some errors (eg invalid group).
1132 #
1133 # Revision 1.126  2002/10/16 05:38:00  hal9
1134 # More make install/uninstall updates:
1135 # -Make compatible with install-sh with does not support -b flag, and can only
1136 #  handle one file at a time (sigh).
1137 # -Manually save existing config files, if they exist.
1138 # -Fix install-strip so does not try to strip init scripts.
1139 #
1140 # Revision 1.125  2002/10/15 05:53:34  hal9
1141 # A few more cleanups:
1142 # -use mkinstalldirs consistently.
1143 # -Install init script and logrotate only is prefix=/usr/local (installed to
1144 #  system dir /etc instead of /usr/local...)
1145 # -Test for directory existence before removing to avoid misleading error
1146 #  messages.
1147 #
1148 # Revision 1.124  2002/10/13 19:58:09  hal9
1149 # Hopefully, this is final updates for install and uninstall targets.
1150 # - Fix typo in chown syntax
1151 # - chmod on mkinstalldirs to make it executable (is there a better way?).
1152 # - Cleanup comments, and revert most of previous output cleanup changes.
1153 # - Include all HTML docs, since there are cross links between these.
1154 # - Improved group handling (still some potential problems, see FIXME).
1155 # - Update PHONY targets.
1156 # - Uninstall was not removing CONF and LOG destinations in some situations.
1157 # - Various other minor cleanups.
1158 #
1159 # Revision 1.123  2002/10/12 06:05:41  hal9
1160 # WIP: This is mostly to fix various problems encountered on SF CF Solaris
1161 # servers for the install target only. This did not handle /[^C]*, test -e, not
1162 # quoting within tests (ie [ `id $(USER)` = `id` ] needs quoting) in some
1163 # situations, and does not support id -u (with the id in $PATH, but there is
1164 # another...). Also, cleaned up output. Needs testing. I am unable to test the
1165 # root install stuff either. It installs now at least (not tested further).
1166 # A few other nits.
1167 #
1168 # Revision 1.122  2002/10/11 06:03:08  hal9
1169 # Really install FAQ this time, and not u-m in two locations. Include images
1170 # for u-m.
1171 #
1172 # Revision 1.120  2002/10/10 20:39:27  dessent
1173 #
1174 #
1175 # Fixes for Win32 GUI build (added "$(DIR_PRIVOXY_SRC)/" to dependencies list)
1176 #
1177 # Revision 1.119  2002/09/23 03:42:41  hal9
1178 # This is higuita's make install/uninstall patch. Needs testing please!!!
1179 #
1180 # Revision 1.118  2002/09/11 08:22:37  oes
1181 # Fixed path (C_HDRS are in src/ now)
1182 #
1183 # Revision 1.117  2002/09/06 23:33:35  hal9
1184 # Fix clobber for config.h and config.h.in are in src now.
1185 #
1186 # Revision 1.116  2002/09/06 05:22:57  hal9
1187 # Adapt make webserver target to 3.0 for pdf uploading.
1188 #
1189 # Revision 1.115  2002/09/05 19:13:04  hal9
1190 # Migrate Karstens make snapshot stuff (not tested).
1191 #
1192 # Revision 1.114  2002/09/05 11:58:30  oes
1193 # Synced in some changes fromm the stable branch:
1194 #   From Revision 1.104.2.14  2002/08/10 11:19:37  oes:
1195 #    - Add dependency: pcrs.o deps on config.h
1196 #   Revision 1.104.2.9  2002/07/26 15:17:02  oes
1197 #    - Added generation of default.action from defaul.action.master
1198 #    - Deleted obsolete re_filterfile.txt generation
1199 #
1200 # Revision 1.113  2002/07/30 21:50:25  hal9
1201 # Add redhat-test target, and migrate the RPM_PACKAGEV stuff from 3.0 branch.
1202 #
1203 # Revision 1.112  2002/06/28 18:30:10  jongfoster
1204 # Fixing bugs compiling PCRE
1205 #
1206 # Revision 1.111  2002/06/05 00:26:21  hal9
1207 # Move all doc build stuff to doc/source/GNUmakefile, leaving a 'make dok'
1208 # target only in toplevel. Add DOC_STATUS variable so docs can be built without
1209 # touching sgml source.
1210 #
1211 # Revision 1.110  2002/06/04 14:51:48  jongfoster
1212 # Updating for new paths:
1213 # - Source files in src/
1214 # - Object files in obj/
1215 #
1216 # Revision 1.109  2002/05/28 09:16:15  oes
1217 # Added comment for -notoc kludge
1218 #
1219 # Revision 1.108  2002/05/28 03:56:08  hal9
1220 # make dok-index target for privoxy-index.html. Fix *bak dead soldiers in
1221 # doc/webserver.
1222 #
1223 # Revision 1.107  2002/05/27 23:26:33  mal0rd
1224 # Made doc-generation configuration automatic.
1225 # References to DB2HTML were removed, not used.
1226 # --with-docbook now only needed if in odd path.
1227 #
1228 # Revision 1.106  2002/05/26 04:55:11  mal0rd
1229 # Added debian-dist and debian-upload targets.  Also documented usage.
1230 #
1231 # Revision 1.105  2002/05/25 22:48:19  hal9
1232 # Add -notoc to README build (per oes's dsl magic).
1233 #
1234 # Revision 1.104  2002/05/24 00:03:49  oes
1235 # Use p_doc.css for the Homepage for consistency
1236 #
1237 # Revision 1.103  2002/05/23 23:19:00  oes
1238 # Use dsl without TOC for the homepage
1239 #
1240 # Revision 1.102  2002/05/16 01:20:17  hal9
1241 # make announce target added.
1242 #
1243 # Revision 1.101  2002/05/15 12:28:46  oes
1244 # Trying to keep Hal happy :)
1245 #
1246 # Revision 1.100  2002/05/08 13:48:18  hal9
1247 # Ooops, that trashed JB v2.0.2 comment. Fixed.
1248 #
1249 # Revision 1.99  2002/05/08 13:42:07  hal9
1250 # This fixes the numbering problem on index.html in contact info section (.1.). Using
1251 # perl, since its way too convoluted to try to fix proper with docbook.
1252 #
1253 # Revision 1.98  2002/05/03 14:33:06  oes
1254 # Replaced ldp(OK).dsl handling with generation via autoconf; handle all file exeptions to src tarball via find
1255 #
1256 # Revision 1.97  2002/04/27 20:27:43  swa
1257 # no longer needed due to new
1258 # PACKAGE_VERSION process
1259 #
1260 # Revision 1.96  2002/04/27 17:44:32  morcego
1261 # - Correcting typo in my name (Rodrigo, not Rodgrigo) :-)
1262 # - Using the RM macro everywhere rm is called (either we use, or don't)
1263 # - Same for RPM
1264 #
1265 # Revision 1.95  2002/04/27 15:37:25  swa
1266 # replacing directory in document creation process
1267 # no longer necessary.
1268 #
1269 # Revision 1.94  2002/04/27 08:23:29  swa
1270 # pdf process reviewed and cleaned up
1271 #
1272 # Revision 1.93  2002/04/27 04:55:53  morcego
1273 # privoxy-cl.spec now gets removed by clobber target
1274 #
1275 # Revision 1.92  2002/04/27 04:53:40  morcego
1276 # Adding --exclude "PACKAGERS" to every tar command that applies (not for
1277 #   webserver target)
1278 #
1279 # Revision 1.91  2002/04/27 04:44:51  morcego
1280 # GNUmakefile.in: The tarball created on redhat-dist and suse-dist now ignore
1281 #   the PACKAGERS file, as well privoxy-cl.spec (in case it was created)
1282 # GNUmakefile.in: New targets -> conectiva-spec, conectiva-dist and
1283 #   conectiva-upload
1284 # genclspec.sh  : New file to generate, from privoxy-rh.spec, a specfile
1285 #   for Conectiva Linux
1286 #
1287 # Revision 1.90  2002/04/26 17:46:53  swa
1288 # be consistent
1289 #
1290 # Revision 1.89  2002/04/26 17:20:54  swa
1291 # just produce single html files to proces them later with Destiller or somesuch. looks prettier.
1292 #
1293 # Revision 1.88  2002/04/25 19:13:57  morcego
1294 # Removed RPM release number declaration on configure.in
1295 # Changed makefile to use given value for RPM_PACKAGEV when on uploading
1296 # targets (will produce an error, explaining who to do it, if no value
1297 # if provided).
1298 #
1299 # Revision 1.87  2002/04/23 14:10:59  swa
1300 # now create pdf documents
1301 #
1302 # Revision 1.86  2002/04/15 04:30:27  hal9
1303 # Missed two -pi.bak's on perl/cygwin problem.
1304 #
1305 # Revision 1.85  2002/04/14 01:05:34  hal9
1306 # Revert dok-webserver change for SF logo.
1307 #
1308 # Revision 1.84  2002/04/13 22:43:25  hal9
1309 # -Fix dok-webserver for SF logo (more perl).
1310 # -Change all perl -pi to perl -pi.bak for Cygwin problem.
1311 #
1312 # Revision 1.83  2002/04/12 09:39:25  oes
1313 # Excluding yet more files from tarball; making dist warning yet more scary
1314 #
1315 # Revision 1.82  2002/04/11 21:07:11  oes
1316 # Excluding more files from tarball build
1317 #
1318 # Revision 1.81  2002/04/11 14:40:27  oes
1319 # Fixed typo -- Thanks, Moritz!
1320 #
1321 # Revision 1.80  2002/04/11 12:50:00  oes
1322 # Fixed tarball-dist target
1323 #
1324 # Revision 1.79  2002/04/11 06:49:28  oes
1325 # 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
1326 #
1327 # Revision 1.78  2002/04/09 13:37:11  sarantis
1328 # fix tar options typo
1329 #
1330 # Revision 1.77  2002/04/09 13:28:53  swa
1331 # build suse and gen-dist with html docs
1332 #
1333 # Revision 1.76  2002/04/08 22:43:41  oes
1334 # Fix: Include dotfiles in fixing webserver permissions
1335 #
1336 # Revision 1.75  2002/04/08 22:14:59  oes
1337 # Silencing tar warnings in the web* targets
1338 #
1339 # Revision 1.74  2002/04/08 15:22:44  hal9
1340 # This has finishing touches for dok building. Should be ready to go.
1341 # -The main doc build is now 'make dok', should work on Redhat too.
1342 # -Removed man page from main doc build. It is built separately due to
1343 #  perl scripts that most aren't likely to have.
1344 #
1345 # Revision 1.73  2002/04/08 14:03:24  oes
1346 # oes for al: Fix install target
1347 #
1348 # Revision 1.72  2002/04/08 13:42:11  oes
1349 # Added safety check to *-dist targets; fixed permissions for feedback logfile
1350 #
1351 # Revision 1.71  2002/04/07 20:32:03  hal9
1352 # -Add meta data kludge for make dok-webserver via $(PERL).
1353 # -Add subdirs for 'make dok-release'.
1354 #
1355 # Revision 1.70  2002/04/07 08:59:40  swa
1356 # generated files. do NOT edit.
1357 # fixed directory bug in makefile.
1358 #
1359 # Revision 1.69  2002/04/07 08:10:47  swa
1360 # create some of the webserver docs
1361 # automatically (in particular if
1362 # those docs recycle other documentation
1363 # fragments). Now committed webserver's
1364 # index file.
1365 #
1366 # Revision 1.68  2002/04/07 07:58:11  swa
1367 # create some of the webserver docs
1368 # automatically (in particular if
1369 # those docs recycle other documentation
1370 # fragments)
1371 #
1372 # Revision 1.67  2002/04/07 05:31:42  hal9
1373 # Add 'dok-release' target:
1374 # -Set doc entities to VERSION and CODE_STATUS during make.
1375 # -Set doc conditional content flags (stable vs non-stable).
1376 # A separate target for the time being but needs to be incorporated into
1377 # dok build at some point.
1378 # -Filter out a spurious ^G from new man page > html converion in man2html.
1379 #
1380 # Revision 1.66  2002/04/06 20:28:21  jongfoster
1381 # Prettifying groff2html.
1382 # Using GNU Make's conditional makefile feature rather than shell "if"s.
1383 # (The shell "if"s were hiding errors)
1384 # "perl" -> "$(PERL)"
1385 # Spaces->tabs in a couple of places.
1386 #
1387 # Revision 1.65  2002/04/06 05:16:39  hal9
1388 # -Add 'authors' and 'man' targets for AUTHORS and man-page (WIP).
1389 # -Both of these will soon be generated files.
1390 #
1391 # Revision 1.64  2002/04/04 22:14:51  oes
1392 # No longer rely on find honoring -iname
1393 #
1394 # Revision 1.63  2002/04/04 21:06:22  swa
1395 # cosmetics.
1396 #
1397 # Revision 1.62  2002/04/04 20:49:50  swa
1398 # attempt to consolidate the
1399 # different dokbook versions.
1400 #
1401 # Revision 1.61  2002/04/04 19:18:21  swa
1402 # readme was leftover directory. use w3m instead
1403 # of lynx to be consistent among developers. use
1404 # consistent target naming.
1405 #
1406 # Revision 1.60  2002/04/04 12:25:41  oes
1407 # Tidy webserver upload w/o *~ files, CVS dirs and logfiles and with proper dir and file permissions
1408 #
1409 # Revision 1.59  2002/04/04 08:32:45  swa
1410 # wrong name for tarball-dist target. further fixed content of tarball dist
1411 #
1412 # Revision 1.58  2002/04/04 06:32:58  hal9
1413 # New dok targets for make readme.
1414 #
1415 # Revision 1.57  2002/04/04 00:36:36  gliptak
1416 # always use pcre for matching
1417 #
1418 # Revision 1.56  2002/04/03 22:28:03  gliptak
1419 # Removed references to gnu_regex
1420 #
1421 # Revision 1.55  2002/04/03 19:54:29  swa
1422 # freebsd tested to work. attempt to move tarball dist target forward
1423 #
1424 # Revision 1.54  2002/04/03 14:54:07  oes
1425 # Standard clean and clobber semantics II
1426 #
1427 # Revision 1.53  2002/04/03 14:19:16  oes
1428 # Standard clean and clobber semantics
1429 #
1430 # Revision 1.52  2002/04/03 02:56:18  hal9
1431 # Revert previous FAQ numbering kludge.
1432 #
1433 # Revision 1.51  2002/04/02 13:03:56  oes
1434 # Added fix for webserver permissions
1435 #
1436 # Revision 1.50  2002/04/02 03:46:24  hal9
1437 # Rewrite ldpOK.dsl so that sections are NOT numbered on FAQ, in an effort
1438 # to make the Table of Contents not so 'busy' looking. SuSE needs testing :)
1439 #
1440 # Revision 1.49  2002/03/30 22:20:12  swa
1441 # cd didn't work. neither did find.
1442 #
1443 # Revision 1.48  2002/03/30 19:04:06  swa
1444 # people release differently. no good.
1445 # I want to make parts of the docs only.
1446 #
1447 # Revision 1.47  2002/03/30 09:05:21  swa
1448 # better packaging. better rpm building.
1449 # tar failed on sun (no exclude there).
1450 #
1451 # Revision 1.46  2002/03/29 20:09:01  swa
1452 # al's patch
1453 #
1454 # Revision 1.45  2002/03/29 19:45:45  swa
1455 # for lazy swa
1456 #
1457 # Revision 1.44  2002/03/29 17:42:44  gliptak
1458 # Correcting for Solaris tar limitations
1459 #
1460 # Revision 1.43  2002/03/29 07:40:03  swa
1461 # fixed make webserver. doh
1462 #
1463 # Revision 1.42  2002/03/29 06:59:04  swa
1464 # other users could not modify files on webserver
1465 #
1466 # Revision 1.41  2002/03/28 20:43:00  swa
1467 # set make correctly
1468 #
1469 # Revision 1.40  2002/03/28 04:22:44  hal9
1470 # More on man2html stuff.
1471 #
1472 # Revision 1.39  2002/03/28 01:04:14  hal9
1473 # More man2html stuff for docs.
1474 #
1475 # Revision 1.38  2002/03/27 16:02:30  swa
1476 # have a generic target
1477 #
1478 # Revision 1.37  2002/03/27 15:30:26  swa
1479 # have a consistent appearance
1480 #
1481 # Revision 1.36  2002/03/27 14:58:08  swa
1482 # can be used by mutilple targets
1483 #
1484 # Revision 1.35  2002/03/27 14:53:19  swa
1485 # added solaris-dist
1486 #
1487 # Revision 1.34  2002/03/27 10:30:11  swa
1488 # we want a html man file on the webserver
1489 #
1490 # Revision 1.33  2002/03/27 03:05:35  hal9
1491 # Added man2html target for docs (redhat-dok only for now)
1492 #
1493 # Revision 1.32  2002/03/26 22:29:54  swa
1494 # we have a new homepage!
1495 #
1496 # Revision 1.31  2002/03/26 14:00:18  swa
1497 # fixed make tarball, tarball-dist, tarball-clean
1498 #
1499 # Revision 1.30  2002/03/25 12:52:25  swa
1500 # new targets
1501 #
1502 # Revision 1.29  2002/03/24 17:03:55  jongfoster
1503 # Name change
1504 #
1505 # Revision 1.28  2002/03/24 16:19:48  swa
1506 # configure needs to be generated.
1507 #
1508 # Revision 1.27  2002/03/24 16:13:57  swa
1509 # generated files are a nono in cvs
1510 #
1511 # Revision 1.26  2002/03/24 15:36:02  swa
1512 # did not build.
1513 #
1514 # Revision 1.25  2002/03/24 14:31:08  swa
1515 # remove more crappy files. set RPM
1516 # release version correctly.
1517 #
1518 # Revision 1.24  2002/03/24 14:19:55  swa
1519 # set rpm package release in configure.in. nowhere else.
1520 #
1521 # Revision 1.23  2002/03/24 13:06:49  swa
1522 # suse-clean now runs fine
1523 #
1524 # Revision 1.22  2002/03/24 12:56:21  swa
1525 # name change related issues.
1526 #
1527 # Revision 1.21  2002/03/24 12:43:57  swa
1528 # name change
1529 #
1530 # Revision 1.20  2002/03/24 11:39:17  jongfoster
1531 # Renaming config files
1532 #
1533 # Revision 1.19  2002/03/22 20:53:03  morcego
1534 # - Ongoing process to change name to JunkbusterNG
1535 # - configure/configure.in: no change needed
1536 # - GNUmakefile.in:
1537 #         - TAR_ARCH = /tmp/JunkbusterNG-$(RPM_VERSION).tar.gz
1538 #         - PROGRAM    = jbng@EXEEXT@
1539 #         - rh-spec now references as junkbusterng-rh.spec
1540 #         - redhat-upload: references changed to junkbusterng-* (package names)
1541 #         - tarball-dist: references changed to JunkbusterNG-distribution-*
1542 #         - tarball-src: now JunkbusterNG-*
1543 #         - install: initscript now junkbusterng.init and junkbusterng (when
1544 #                    installed)
1545 # - junkbuster-rh.spec: renamed to junkbusterng-rh.spec
1546 # - junkbusterng.spec:
1547 #         - References to the expression ijb where changed where possible
1548 #         - New package name: junkbusterng (all in lower case, acording to
1549 #           the LSB recomendation)
1550 #         - Version changed to: 2.9.13
1551 #         - Release: 1
1552 #         - Added: junkbuster to obsoletes and conflicts (Not sure this is
1553 #           right. If it obsoletes, why conflict ? Have to check it later)
1554 #         - Summary changed: Stefan, please check and aprove it
1555 #         - Changes description to use the new name
1556 #         - Sed string was NOT changed. Have to wait to the manpage to
1557 #           change first
1558 #         - Keeping the user junkbuster for now. It will require some aditional
1559 #           changes on the script (scheduled for the next specfile release)
1560 #         - Added post entry to move the old logfile to the new log directory
1561 #         - Removing "chkconfig --add" entry (not good to have it automaticaly
1562 #           added to the startup list).
1563 #         - Added preun section to stop the service with the old name, as well
1564 #           as remove it from the startup list
1565 #         - Removed the chkconfig --del entry from the conditional block on
1566 #           the preun scriptlet (now handled on the %files section)
1567 # - junkbuster.init: renamed to junkbusterng.init
1568 # - junkbusterng.init:
1569 #         - Changed JB_BIN to jbng
1570 #         - Created JB_OBIN with the old value of JB_BIN (junkbuster), to
1571 #           be used where necessary (config dir)
1572 #
1573 # Aditional notes:
1574 # - The config directory is /etc/junkbuster yet. Have to change it on the
1575 # specfile, after it is changes on the code
1576 # - The only files that got renamed on the cvs tree were the rh specfile and
1577 # the init file. Some file references got changes on the makefile and on the
1578 # rh-spec (as listed above)
1579 #
1580 # Revision 1.18  2002/03/21 23:00:00  swa
1581 # want to autogenerate stuff.
1582 #
1583 # Revision 1.17  2002/03/19 19:30:04  morcego
1584 # - Fixing stylesheet checking on configure. If it is found, no further checks
1585 #   should be done
1586 #
1587 # - configure will now check for db2html or docbook2html (should work now
1588 #   on SuSe without the docbktls package)
1589 #
1590 # Revision 1.16  2002/03/14 22:32:32  hal9
1591 # Bumped the RPM version.
1592 #
1593 # Revision 1.15  2002/03/08 20:00:28  swa
1594 # some leftovers.
1595 #
1596 # Revision 1.14  2002/03/07 18:25:56  swa
1597 # synced redhat and suse build process
1598 #
1599 # Revision 1.13  2002/03/07 17:17:56  oes
1600 # (Hopefully) fixed for older make versions
1601 #
1602 # Revision 1.12  2002/03/07 15:28:27  swa
1603 # more informative
1604 #
1605 # Revision 1.11  2002/03/06 14:33:18  sarantis
1606 # Use proper temp file, not "abc".
1607 #
1608 # Revision 1.10  2002/03/06 14:19:35  sarantis
1609 # Cleanup PID_FILE_PATH from redhat-dist target
1610 #
1611 # Revision 1.9  2002/03/05 17:31:11  morcego
1612 # Search for docbook.dsl. Should solve portability problems for SuSe.
1613 #
1614 # Revision 1.8  2002/03/05 14:07:42  morcego
1615 # configure now detects rpm topdir, and change GNUmakefile acordingly
1616 #    (based on sugestion by Sarantis Paskalis)
1617 #
1618 # Revision 1.7  2002/03/05 13:43:28  morcego
1619 # Checking for text browser, so redhat-dok can work.
1620 #
1621 # Revision 1.6  2002/03/05 13:10:51  morcego
1622 # Changes to implement redhat-dok (Hal Burgiss)
1623 # Changes to make it work on other distros and out-of-the-shelf configurations
1624 #
1625 # Revision 1.5  2002/02/27 15:30:39  hal9
1626 # Reset $(RPM_PACKAGEV) to 1 (was 2)
1627 #
1628 # Revision 1.4  2002/01/17 21:44:04  jongfoster
1629 # Adding urlmatch.[ch]
1630 #
1631 # Revision 1.3  2002/01/04 15:26:08  oes
1632 # Added tarball-src target
1633 #
1634 # Revision 1.2  2001/12/30 14:07:31  steudten
1635 # - Add signal handling (unix)
1636 # - Add SIGHUP handler (unix)
1637 # - Add creation of pidfile (unix)
1638 # - Add action 'top' in rc file (RH)
1639 # - Add entry 'SIGNALS' to manpage
1640 # - Add exit message to logfile (unix)
1641 #
1642 # Revision 1.1  2001/12/01 11:22:57  jongfoster
1643 # Renaming Makefile.in to GNUmakefile.in so that non-GNU versions of
1644 # make break in a more obvious way.
1645 # Adding .PHONY section.
1646 #
1647 # Revision 1.40  2001/12/01 00:24:11  jongfoster
1648 # Renaming various config files
1649 # Fixing CR->CRLF under Win32 (I hope)
1650 #
1651 # Revision 1.39  2001/11/06 12:07:30  steudten
1652 # Add --clean for building rpm in target redhat-dist.
1653 #
1654 # Revision 1.38  2001/11/05 21:35:23  steudten
1655 # Complete rewrite for the 'redhat-dist' target.
1656 # Checks for writeable RPM build directories for calling user.
1657 # So you must not be root, just set the modes to 1777 to
1658 # build a RH package.
1659 # Fix the upload-target to be arch independant.
1660 # Add target for 'solaris-dist' - coming soon.
1661 #
1662 # Revision 1.37  2001/11/01 00:52:04  hal9
1663 # Redhat-upload stuff per Stefan.
1664 #
1665 # Revision 1.36  2001/10/31 19:26:13  swa
1666 # automate process of uploading new releases
1667 # to sf.
1668 #
1669 # Revision 1.35  2001/10/15 22:14:59  joergs
1670 # Removed -O2 and -Wall from AmigaOS-only CFLAGS since they are now in
1671 #  the general CFLAGS already.
1672 #
1673 # Revision 1.34  2001/10/15 18:28:06  steudten
1674 # remove config.cache for target clobber.
1675 # Cleanup make dist for RH and S.u.S.E.
1676 #
1677 # Revision 1.33  2001/10/10 12:43:33  oes
1678 # Added ugly hack to make install target work at least for some setups.
1679 #
1680 # Revision 1.32  2001/10/09 22:38:19  jongfoster
1681 # Correcting actionsfile filename for Win32 INI build
1682 #
1683 # Revision 1.31  2001/09/23 10:13:48  swa
1684 # upload process established. run make webserver and
1685 # the documentation is moved to the webserver. documents
1686 # are now linked correctly.
1687 #
1688 # Revision 1.30  2001/09/19 17:55:49  oes
1689 # Fixed CFLAGS
1690 #
1691 # Revision 1.29  2001/09/16 17:34:27  jongfoster
1692 # Removing showargs.[ch], adding cgi(simple|edit).[ch]
1693 # Replacing $(OBJEXT) with @OBJEXT@ - this seems to be a common source
1694 # of build problems.
1695 #
1696 # Revision 1.28  2001/09/13 15:19:08  swa
1697 # we want text files as well.
1698 #
1699 # Revision 1.27  2001/09/13 13:11:37  steudten
1700 #
1701 # Replace DEBUG_CFLAGS with OTHER_CFLAGS
1702 #
1703 # Revision 1.26  2001/09/12 23:44:54  david__schmidt
1704 # Mac OSX (Darwin) support added.
1705 #
1706 # Revision 1.25  2001/09/12 22:55:45  joergs
1707 # AmigaOS support added.
1708 #
1709 # Revision 1.24  2001/09/12 17:28:59  david__schmidt
1710 #
1711 # OS/2 port: update autoconf'd support for the platform.
1712 #
1713 # Revision 1.23  2001/09/12 16:28:42  swa
1714 # added "make dok" section to generate html pages from
1715 # the sgml source documents. note that the we do not want
1716 # generated stuff in cvs.
1717 #
1718 # Revision 1.22  2001/09/10 16:31:23  swa
1719 # buildroot definition in the specfile fucks up the build
1720 # process under suse. hence I moved it to the "rpm -ta"
1721 # command
1722 #
1723 # Revision 1.21  2001/09/10 11:12:49  oes
1724 # Turning on -Wall
1725 #
1726 # Revision 1.20  2001/08/02 22:04:29  jongfoster
1727 # Removing some remaining references to obsolete w32rulesdlg.[ch]
1728 #
1729 # Revision 1.19  2001/07/30 22:14:03  jongfoster
1730 # Removing obsolete w32rulesdlg.c and w32rulesdlg.h
1731 #
1732 # Revision 1.18  2001/07/29 17:09:17  jongfoster
1733 # Major changes to build system in order to fix these bugs:
1734 # - pthreads under Linux was broken - changed -lpthread to -pthread
1735 # - Compiling in MinGW32 mode under CygWin now correctly detects
1736 #   which shared libraries are available
1737 # - Solaris support (?) (Not tested under Solaris yet)
1738 #
1739 # Revision 1.17  2001/07/28 16:44:54  oes
1740 # Fixed sed LF->CRLF conversion and removed deprecated files
1741 #
1742 # Revision 1.16  2001/07/15 19:45:33  jongfoster
1743 # Added support for linking with POSIX threads library
1744 #
1745 # Revision 1.15  2001/07/13 13:48:07  oes
1746 #  - Moved STATIC #define for pcre to (ac)config.h
1747 #  - Made -Ipcre depandant on static pcre compilation to
1748 #    avoid version conflicts
1749 #  - Included compilation and depandancies for new deanimate.c
1750 #  - Made changes to the pcre/pcreposix/pcrs build process
1751 #    as required by the new library autodetection in
1752 #    configure.in
1753 #
1754 # Revision 1.14  2001/07/01 16:27:44  oes
1755 # Fixed misplaced dependancy
1756 #
1757 # Revision 1.13  2001/06/29 13:18:36  oes
1758 # - added depandancy of filters.o on cgi.h
1759 #
1760 # Revision 1.12  2001/06/12 17:15:56  swa
1761 # fixes, because a clean build on rh6.1 was impossible.
1762 # GZIP confuses make, %configure confuses rpm, etc.
1763 #
1764 # Revision 1.11  2001/06/11 11:26:35  sarantis
1765 # RPM version should be the same as ijbswa version.  The rpm release is
1766 # specified in the specfile.
1767 #
1768 # Revision 1.10  2001/06/07 17:27:45  swa
1769 # added suse build section
1770 #
1771 # Revision 1.9  2001/06/04 18:31:58  swa
1772 # files are now prefixed with either `confdir' or `logdir'.
1773 # `make redhat-dist' replaces both entries confdir and logdir
1774 # with redhat values
1775 #
1776 # Revision 1.8  2001/06/04 10:44:57  swa
1777 # `make redhatr-dist' now works. Except for the paths
1778 # in the config file.
1779 #
1780 # Revision 1.7  2001/06/03 17:09:09  swa
1781 # swa for oes: reversed my earlier change
1782 #
1783 # Revision 1.6  2001/06/03 17:07:27  swa
1784 # swa for oes
1785 #
1786 # Revision 1.5  2001/06/03 13:57:26  swa
1787 # compile cgi.c (for andreas' GUI)
1788 #
1789 # Revision 1.4  2001/05/31 21:18:45  jongfoster
1790 # Added files actions.[ch], actionlist.h, list.[ch] to Makefile
1791 #
1792 # Revision 1.3  2001/05/29 20:02:48  joergs
1793 # Changes for AmigaOS added.
1794 #
1795 # Revision 1.2  2001/05/17 22:23:23  oes
1796 #  - Added auto-generation of CRLFs for Win32 config files
1797 #  - Added comment-prefix to all Win32-only options in the config file
1798 #    and provided auto stripping of this prefix for the Win32 platform by make
1799 #
1800 # Revision 1.1.1.1  2001/05/15 13:59:00  oes
1801 # Initial import of version 2.9.3 source tree
1802 #
1803 #