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