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