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