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