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