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