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