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