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