people release differently. no good.
[privoxy.git] / GNUmakefile.in
1 # Note:  Makefile is built automatically from Makefile.in
2 #
3 # $Id: GNUmakefile.in,v 1.47 2002/03/30 09:05:21 swa 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 # will automatically be postfixed with -$(RPM_PACKAGEV) in the SPECfile
46 RPM_VERSION   = $(VERSION)
47 RPM_PACKAGEV  = @VERSION_RPM_PACKAGE@
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
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 MV         = mv
80 TAR        = tar
81 LN         = ln
82 WDUMP      = @WDUMP@ -dump
83 JADEBIN    = @JADEBIN@
84 DB         = $(JADEBIN) -t sgml -ihtml -D.. -d ldpOK.dsl\#html
85 DB2HTML    = @DB2HTML@
86 DKPREFIX   = @DKPREFIX@
87 MAN2HTML   = @MAN2HTML@
88 G2H_CMD    = groff -mandoc -Thtml
89 TARGET_OS  = @host@
90
91 #User Group paras
92 USER       = @USER@
93 GROUP      = @GROUP@
94
95 # Program to do LF->CRLF
96 #
97 # The sed version should be the most portable, but it doesn't for for me,
98 # the other two do.  FIXME.
99 #   - Jon
100 #DOSFILTER  = $(SED) -e $$'s,$$,\r,'
101 #DOSFILTER  = gawk -v ORS='\r\n' '{print $0;}'
102 DOSFILTER  = perl -p -e 's/\n/\r\n/'
103
104 #############################################################################
105 # Setup for make distribution rh and suse for now 
106 #############################################################################
107
108 TAR_ARCH = /tmp/privoxy-$(RPM_VERSION).tar.gz
109 RPM_BASE = @RPM_BASE@
110
111 #############################################################################
112 # We include these files in our distributions
113 #############################################################################
114 # take care that no CVS .cvsignore or other crappy files
115 # are included here
116 CONFIG_FILES = config trust \
117                 default.action \
118                 basic.action intermediate.action advanced.action \
119                 default.filter \
120                 `find templates/ -type f | grep -v "CVS" | grep -v "\.#" | grep -v ".*~" | grep -v ".cvsignore" | grep - v "TAGS"` 
121 DOC_FILES = AUTHORS LICENSE README ChangeLog \
122         `find doc/text/ -type f | grep -v "CVS" | grep -v "\.#" | grep -v ".*~" | grep -v ".cvsignore" | grep -v "TAGS"` privoxy.1
123
124 #############################################################################
125 # Filenames and libraries
126 #############################################################################
127
128 C_SRC  = actions.c cgi.c cgiedit.c cgisimple.c deanimate.c encode.c \
129          errlog.c filters.c gateway.c jbsockets.c jcc.c killpopup.c \
130          list.c loadcfg.c loaders.c miscutil.c parsers.c ssplit.c \
131          urlmatch.c
132
133 C_OBJS = $(C_SRC:.c=.@OBJEXT@)
134 C_HDRS = $(C_SRC:.c=.h) project.h actionlist.h
135
136 W32_SRC   = @WIN_ONLY@w32log.c w32taskbar.c win32.c
137 W32_FILES = @WIN_ONLY@w32.res
138 W32_OBJS  = @WIN_ONLY@$(W32_SRC:.c=.@OBJEXT@) $(W32_FILES)
139 W32_HDRS  = @WIN_ONLY@w32log.h w32taskbar.h win32.h w32res.h
140 W32_LIB   = @WIN_ONLY@-lwsock32 -lcomctl32
141 W32_INIS  = @WIN_ONLY@config.txt trust.txt
142
143 PCRS_SRC     = @STATIC_PCRS_ONLY@pcrs.c
144 PCRS_OBJS    = @STATIC_PCRS_ONLY@$(PCRS_SRC:.c=.@OBJEXT@)
145 PCRS_HDRS    = @STATIC_PCRS_ONLY@$(PCRS_SRC:.c=.h)
146
147 PCRE_SRC     = @STATIC_PCRE_ONLY@pcre/get.c pcre/maketables.c pcre/study.c pcre/pcre.c
148 PCRE_OBJS    = @STATIC_PCRE_ONLY@$(PCRE_SRC:.c=.@OBJEXT@)
149 PCRE_HDRS    = @STATIC_PCRE_ONLY@pcre/config.h pcre/chartables.c pcre/internal.h pcre/pcre.h
150
151 # No REGEX (Either because dynamically linked pcreposix, or no regex at all):
152 REGEX_SRC    =
153 # GNU REGEX:
154 @GNU_REGEX_ONLY@REGEX_SRC    = gnu_regex.c
155 # PCRE REGEX:
156 @PCRE_REGEX_ONLY@@STATIC_PCRE_ONLY@REGEX_SRC = pcre/pcreposix.c
157
158 REGEX_OBJS   = $(REGEX_SRC:.c=.@OBJEXT@)
159 REGEX_HDRS   = $(REGEX_SRC:.c=.h)
160
161 # Dependencies introduced by #include "project.h".
162 PROJECT_H_DEPS = project.h $(REGEX_HDRS) $(PCRS_HDRS) @STATIC_PCRE_ONLY@pcre/pcre.h
163
164 # Socket libraries for platforms that need them explicitly defined
165 SOCKET_LIB   = @SOCKET_LIB@
166
167 # PThreads library, if needed.
168 PTHREAD_LIB  = @PTHREAD_ONLY@@PTHREAD_LIB@
169
170 SRCS         = $(C_SRC)  $(W32_SRC)  $(PCRS_SRC)  $(PCRE_SRC)  $(REGEX_SRC)
171 OBJS         = $(C_OBJS) $(W32_OBJS) $(PCRS_OBJS) $(PCRE_OBJS) $(REGEX_OBJS)
172 HDRS         = $(C_HDRS) $(W32_HDRS) $(PCRS_HDRS) $(PCRE_OBJS) $(REGEX_HDRS)
173 LIBS         = @LIBS@ $(W32_LIB) $(SOCKET_LIB) $(PTHREAD_LIB)
174
175
176 #############################################################################
177 # Compiler switches
178 #############################################################################
179
180 # The flag "-mno-win32" can be used by Cygwin to emulate a un?x type build.
181 # The flag "-mwindows -mno-cygwin" will cause Cygwin to use MingW32 for a
182 # Win32 GUI build.
183 # The flag "-pthread" is required if using Pthreads under Linux (and
184 # possibly other OSs).
185 SPECIAL_CFLAGS = @SPECIAL_CFLAGS@
186
187 # Add your flags here 
188 OTHER_CFLAGS =   
189
190 CFLAGS = @CFLAGS@ @CPPFLAGS@ $(OTHER_CFLAGS) $(SPECIAL_CFLAGS) -Wall \
191          @STATIC_PCRE_ONLY@ -Ipcre 
192
193 LDFLAGS = $(DEBUG_CFLAGS) $(SPECIAL_CFLAGS)
194
195
196 #############################################################################
197 # Build section.
198 #
199 # There should NOT be any targets above this line.
200 #############################################################################
201 all: $(PROGRAM)
202
203
204 #############################################################################
205 # Phony targets
206 #############################################################################
207 .PHONY: all inifiles redhat-dist redhat-upload solaris-dist suse-dist \
208 suse-upload win-dist tarball-dist dok redhat-dok webserver clean clobber tags \
209 install
210
211
212 #############################################################################
213 # Define this explicitly because Solaris is broken!
214 #############################################################################
215 %.o: %.c
216         $(CC) -c $(CFLAGS) $(CPPFLAGS) $< -o $@
217
218
219 #############################################################################
220 # Win32 config files
221 #############################################################################
222
223 inifiles: $(W32_INIS)
224
225 config.txt: config
226         $(SED) -e 's!\trustfile trust!trustfile trust.txt!' \
227                -e 's!\jarfile jarfile!jarfile jar.log!' \
228                -e 's!\logfile logfile!logfile privoxy.log!' \
229                -e 's!#Win32-only: !!' \
230                < $< | \
231                $(DOSFILTER) > $@
232         # LF to CRLF in default.action
233         $(DOSFILTER) <default.action >default.action.txt && mv default.action.txt default.action
234         # LF to CRLF in default.filter
235         $(DOSFILTER) <default.filter >default.filter.txt && mv default.filter.txt default.filter
236
237 trust.txt: trust
238         $(DOSFILTER) < $< > $@ 
239
240 re_filterfile.txt: re_filterfile
241         $(DOSFILTER) < $< > $@ 
242
243 #############################################################################
244 # RPM specifice stuff (SuSE or Redhat, ..)
245 #############################################################################
246 rpm-stuff:
247         for dir in RPMS SRPMS BUILD SOURCES SPECS; do \
248                 if [ ! -w $(RPM_BASE)/$$dir ]; then \
249                         $(ECHO) "$(RPM_BASE)/$$dir is not writable for you. Maybe try as root."; \
250                         $(ECHO) "Or add a suitable path to .rpmmacros like."; \
251                         $(ECHO) "%_topdir /home/foo/rpm-build"; \
252                         exit 1; \
253                 fi; \
254         done; \
255
256         $(MAKE) clobber
257         if [ -f $(TAR_ARCH) ]; then $(RM) $(TAR_ARCH); fi
258
259 #############################################################################
260 # redhat distribution alpha and x86
261 #############################################################################
262 redhat-dist: rpm-stuff
263         TMPFILE=$$(mktemp -q /tmp/$(PROGRAM).XXXXXX); \
264         if $(SED) -e 's/^\(Version:\).*/\1 $(RPM_VERSION)/g' \
265              -e 's/^\(Release:\).*/\1 $(RPM_PACKAGEV)/g' \
266               privoxy-rh.spec > $$TMPFILE ; then \
267         $(MV) -f $$TMPFILE privoxy-rh.spec; \
268         else \
269                 $(ECHO) "Could not set version info in specfile."; \
270         exit 1;\
271         fi
272
273         $(TAR) --exclude "CVS" --exclude "privoxy-suse.spec" -czf $(TAR_ARCH) .
274         $(RPM) --clean -ta  $(TAR_ARCH)
275         if [ -f $(TAR_ARCH) ]; then  $(RM) $(TAR_ARCH); fi
276
277 # anonymously ncftps the rpms to sourceforge
278 redhat-upload:
279         ncftpput -u anonymous -p ijbswa-developers@lists.sourceforge.net upload.sourceforge.net /incoming $(RPM_BASE)/SRPMS/privoxy-$(RPM_VERSION)-$(RPM_PACKAGEV).src.rpm
280 # better should use `arch` here instead of ix86 to support other platforms too
281         ncftpput -u anonymous -p ijbswa-developers@lists.sourceforge.net upload.sourceforge.net /incoming $(RPM_BASE)/RPMS/*/privoxy-$(RPM_VERSION)-$(RPM_PACKAGEV).*.rpm
282         @$(ECHO) -------------------------------------------------------
283         @$(ECHO) Now goto
284         @$(ECHO) http://sourceforge.net/project/admin/editpackages.php?group_id=11118
285         @$(ECHO) ... and release the files.
286         @$(ECHO) -------------------------------------------------------
287      # w3m http://sourceforge.net/project/admin/editpackages.php?group_id=11118
288
289 #############################################################################
290 # suse distribution. works fine. no need to be root. 
291 #############################################################################
292 suse-dist: rpm-stuff
293         TMPFILE=$$(mktemp -q /tmp/$(PROGRAM).XXXXXX); \
294         if $(SED) -e 's/^\(Version:\).*/\1 $(RPM_VERSION)/g' \
295              -e 's/^\(Release:\).*/\1 $(RPM_PACKAGEV)/g' \
296               privoxy-suse.spec > $$TMPFILE ; then \
297         $(MV) -f $$TMPFILE privoxy-suse.spec; \
298         else \
299                 $(ECHO) "Could not set version info in specfile."; \
300         exit 1;\
301         fi
302
303         $(TAR) --exclude "CVS" --exclude "privoxy-rh.spec" -czf $(TAR_ARCH) .
304         $(RPM) --clean -ta  $(TAR_ARCH)
305         if [ -f $(TAR_ARCH) ]; then  $(RM) $(TAR_ARCH); fi
306
307 # anonymously ncftps the rpms to sourceforge
308 suse-upload:
309         ncftpput -u anonymous -p ijbswa-developers@lists.sourceforge.net upload.sourceforge.net /incoming $(RPM_BASE)/SRPMS/privoxy-suse-$(RPM_VERSION)-$(RPM_PACKAGEV).src.rpm
310 # better should use `arch` here instead of ix86 to support other platforms too
311         ncftpput -u anonymous -p ijbswa-developers@lists.sourceforge.net upload.sourceforge.net /incoming $(RPM_BASE)/RPMS/*/privoxy-suse-$(RPM_VERSION)-$(RPM_PACKAGEV).*.rpm
312         @$(ECHO) -------------------------------------------------------
313         @$(ECHO) Now goto
314         @$(ECHO) http://sourceforge.net/project/admin/editpackages.php?group_id=11118
315         @$(ECHO) ... and release the files.
316         @$(ECHO) -------------------------------------------------------
317
318 # handle with care. use with root.
319 suse-clean:
320         rpm -e junkbuster-suse || true
321         rm -rf /etc/junkbuster
322         rm -rf /etc/rc.d/junkbuster*
323         rm -rf /var/run/junkbuster.pid 
324         rm -rf /var/log/junkbuster
325         rm -f /etc/init.d/junkbuster
326         rm -f /usr/sbin/junkbuster
327         rm -f /usr/sbin/rcjunkbuster
328         rm -f /usr/share/man/man1/junkbuster.1.gz
329         rpm -e privoxy-suse || true
330         rm -rf /etc/privoxy
331         rm -rf /etc/rc.d/privoxy*
332         rm -rf /var/run/privoxy.pid 
333         rm -rf /var/log/privoxy
334         rm -f /etc/init.d/privoxy
335         rm -f /usr/sbin/privoxy
336         rm -f /usr/sbin/rcprivoxy
337         rm -f /usr/share/man/man1/privoxy.1.gz
338
339 #############################################################################
340 # generic distribution
341 #############################################################################
342 gen-dist:
343         @$(ECHO) ""
344         @$(ECHO) "You have run autoconf && autoheader && ./configure right?"
345         @$(ECHO) ""
346         $(MAKE) $(PROGRAM)
347         $(STRIP_PROG) $(PROGRAM)
348         $(LN) -s current ../privoxy-$(VERSION)-$(CODE_STATUS)
349 # add program
350         cd .. && $(TAR) -cvhf privoxy-$(TARGET_OS)-$(VERSION)-$(CODE_STATUS)-src.tar privoxy-$(VERSION)-$(CODE_STATUS)/$(PROGRAM)
351 # add config files
352         for foo in $(CONFIG_FILES); do \
353                 cd .. && $(TAR) -uvhf privoxy-$(TARGET_OS)-$(VERSION)-$(CODE_STATUS)-src.tar privoxy-$(VERSION)-$(CODE_STATUS)/$$foo; \
354         done; 
355 # add documentation
356         for foo in $(DOC_FILES); do \
357                 cd .. && $(TAR) -uvhf privoxy-$(TARGET_OS)-$(VERSION)-$(CODE_STATUS)-src.tar privoxy-$(VERSION)-$(CODE_STATUS)/$$foo; \
358         done; 
359 # and zip the archive
360         $(RM) ../privoxy-$(VERSION)-$(CODE_STATUS)
361         $(GZIP_PROG) privoxy-$(TARGET_OS)-$(VERSION)-$(CODE_STATUS)-src.tar
362         @$(ECHO) Distribution with binary created.
363
364 # anonymously ncftps the package to sourceforge
365 gen-upload:
366         ncftpput -u anonymous -p ijbswa-developers@lists.sourceforge.net upload.sourceforge.net /incoming privoxy-$(TARGET_OS)-$(VERSION)-$(CODE_STATUS)-src.tar.gz
367         @$(ECHO) -------------------------------------------------------
368         @$(ECHO) Now goto
369         @$(ECHO) http://sourceforge.net/project/admin/editpackages.php?group_id=11118
370         @$(ECHO) ... and release the files.
371         @$(ECHO) -------------------------------------------------------
372
373 # use with care
374 gen-clean:
375         $(RM) privoxy-$(TARGET_OS)-$(VERSION)-$(CODE_STATUS)-src.tar*
376
377 #############################################################################
378 # solaris distribution
379 #############################################################################
380 solaris-dist: gen-dist
381         @$(ECHO) Done.
382 # anonymously ncftps the package to sourceforge
383 solaris-upload: gen-upload
384         @$(ECHO) Done.
385 # use with care
386 solaris-clean: gen-clean
387         @$(ECHO) Done.
388
389 #############################################################################
390 # hpux distribution
391 #############################################################################
392 hpux-dist:
393         @$(ECHO) coming soon. 
394 hpux-upload:
395         @$(ECHO) coming soon. 
396
397 #############################################################################
398 # debian distribution
399 #############################################################################
400 debian-dist:
401         @$(ECHO) coming soon. 
402 debian-upload:
403         @$(ECHO) coming soon. 
404
405 #############################################################################
406 # macosx distribution
407 #############################################################################
408 macosx-dist:
409         @$(ECHO) coming soon. 
410 macosx-upload:
411         @$(ECHO) coming soon. 
412
413 #############################################################################
414 # amiga distribution
415 #############################################################################
416 amiga-dist:
417         @$(ECHO) coming soon. 
418 amiga-upload:
419         @$(ECHO) coming soon. 
420
421 #############################################################################
422 # freebsd distribution
423 #############################################################################
424 freebsd-dist:
425         @$(ECHO) coming soon. 
426 freebsd-upload:
427         @$(ECHO) coming soon. 
428
429 #############################################################################
430 # Windows distribution
431 #############################################################################
432 win-dist:
433         $(ECHO) Not implemented.
434
435
436 #############################################################################
437 # Tarball distribution
438 #############################################################################
439 tarball-dist: clobber
440         $(LN) -s current ../privoxy-$(VERSION)-$(CODE_STATUS)
441         cd .. && find privoxy-$(VERSION)-$(CODE_STATUS)
442 #       cd .. && $(TAR) --exclude "CVS" --exclude "#*" --exclude ".#*" --exclude ".cvsignore" -cvhzf privoxy-$(VERSION)-$(CODE_STATUS)-src.tar.gz privoxy-$(VERSION)-$(CODE_STATUS)
443 #       $(RM) ../privoxy-$(VERSION)-$(CODE_STATUS)
444         @$(ECHO) Tarball without any binary created.
445
446 # anonymously ncftps the tarball to sourceforge
447 tarball-upload:
448         ncftpput -u anonymous -p ijbswa-developers@lists.sourceforge.net upload.sourceforge.net /incoming privoxy-$(VERSION)-$(CODE_STATUS)-src.tar.gz
449         @$(ECHO) -------------------------------------------------------
450         @$(ECHO) Now goto
451         @$(ECHO) http://sourceforge.net/project/admin/editpackages.php?group_id=11118
452         @$(ECHO) ... and release the files.
453         @$(ECHO) -------------------------------------------------------
454
455 # handle with care
456 tarball-clean:
457         $(RM) privoxy-$(VERSION)-$(CODE_STATUS)-src.tar.gz
458
459 #############################################################################
460 #
461 # Documentation
462 #
463 # converts doc/source/*.sgml into html, text and man pages
464 #
465 #############################################################################
466
467 # our style file
468 doc/source/ldpOK.dsl:
469         if [ "$(DKPREFIX)" != "none" ]; then \
470                 sed -e "s@/usr/share/sgml/docbook/dsssl-stylesheets@$(DKPREFIX)@g" doc/source/ldp.dsl > doc/source/ldpOK.dsl; \
471         else \
472                 cp doc/source/ldp.dsl doc/source/ldpOK.dsl; \
473         fi
474
475 # Otherwise we get plain groff conversion.
476 groff2html:
477         $(G2H_CMD) ./privoxy.1 > doc/webserver/man-page/privoxy-man-page.html
478
479 ##  developer manual
480 dok-devel: doc/source/ldpOK.dsl
481         mkdir -p doc/text
482         rm -rf doc/webserver/developer-manual
483         cd doc/source && $(DB2HTML) -s ldpOK.dsl developer-manual.sgml && mv developer-manual ../webserver
484         cd doc/source && $(DB2HTML) -s ldpOK.dsl --nochunks developer-manual.sgml > tmp.html && lynx -dump tmp.html > ../text/developer-manual.txt && rm -rf tmp.html developer-manual
485
486 ##  user manual
487 dok-user: doc/source/ldpOK.dsl
488         mkdir -p doc/text
489         rm -rf doc/webserver/user-manual
490         cd doc/source && $(DB2HTML) -s ldpOK.dsl user-manual.sgml && mv user-manual ../webserver
491         cd doc/source && $(DB2HTML) -s ldpOK.dsl --nochunks user-manual.sgml > tmp.html && lynx -dump tmp.html > ../text/user-manual.txt && rm -rf tmp.html user-manual
492
493 ##  faq
494 dok-faq: doc/source/ldpOK.dsl
495         mkdir -p doc/text
496         rm -rf doc/webserver/faq
497         cd doc/source && $(DB2HTML) -s ldpOK.dsl faq.sgml && mv faq ../webserver
498         cd doc/source && $(DB2HTML) -s ldpOK.dsl --nochunks faq.sgml > tmp.html && lynx -dump tmp.html > ../text/faq.txt && rm -rf tmp.html faq
499
500 ## man page
501 dok-man: doc/source/ldpOK.dsl
502         mkdir -p doc/man
503         mkdir -p doc/webserver/man-page
504         if [ "$(MAN2HTML)" != "false" ]; then \
505                 $(ECHO) "<html><head><title>Privoxy|Doc/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; \
506                 man ./privoxy.1 | $(MAN2HTML) -bare \
507                  >> doc/webserver/man-page/privoxy-man-page.html; \
508                 $(ECHO) "</body></html>" >> doc/webserver/man-page/privoxy-man-page.html; \
509      else \
510           $(MAKE) groff2html; \
511         fi
512
513 dok: dok-devel dok-user dok-faq dok-man
514 ## kludge to force recreation on next run. Rodgrigo?
515         @rm -f doc/source/ldpOK.dsl
516         @$(ECHO) Documentation created.
517
518 #
519 # an alternative to the above dok
520 #
521 redhat-dok: doc/source/ldpOK.dsl man2html
522         mkdir -p doc/text doc/man doc/source/user-manual \
523           doc/source/developer-manual doc/source/faq
524 ##  user manual
525         rm -rf doc/webserver/user-manual
526         cd doc/source/user-manual && $(DB) ../user-manual.sgml && cd .. &&\
527           mv user-manual ../webserver
528         cd doc/source && $(DB) -V nochunks user-manual.sgml > tmp.html && \
529           $(WDUMP) tmp.html > ../text/user-manual.txt && rm -rf tmp.html \
530           user-manual
531 ##  developer manual
532         rm -rf doc/webserver/developer-manual
533         cd doc/source/developer-manual && $(DB) ../developer-manual.sgml &&\
534           cd .. && mv developer-manual ../webserver
535         cd doc/source && $(DB) -V nochunks developer-manual.sgml > tmp.html && \
536           $(WDUMP) tmp.html > ../text/developer-manual.txt && rm -rf tmp.html \
537           developer-manual
538 ##  faq
539         rm -rf doc/webserver/faq
540         cd doc/source/faq && $(DB) ../faq.sgml && cd .. && mv faq ../webserver
541         cd doc/source && $(DB) -V nochunks faq.sgml > tmp.html && $(WDUMP) \
542           tmp.html > ../text/faq.txt && rm -rf tmp.html faq
543 ## kludge to force recreation on next run. Rodgrigo?
544         @rm -f doc/source/ldpOK.dsl
545
546 # For those with man2html ala RH7's.
547 man2html:
548         mkdir -p doc/webserver/man-page
549         if [ "$(MAN2HTML)" != "false" ]; then \
550                 $(MAN2HTML) privoxy.1 |grep -v "^Content-type" > doc/webserver/man-page/privoxy-man-page.html; \
551            perl -pi -e 's/<A .*Contents<\/A>//; s/<A .*man2html<\/A>/man2html/' doc/webserver/man-page/privoxy-man-page.html; \
552      else \
553           $(MAKE) groff2html; \
554         fi
555
556 #############################################################################
557 #
558 # Webserver
559 #
560 # moves dokumentation to webserver
561 #
562 #############################################################################
563 webserver:
564         @$(ECHO) -------------------------------------------------------
565         @$(ECHO) You have run make dok/redhat-dok before, right?
566         @$(ECHO) Note that this command scps all stuff to the webserver,
567         @$(ECHO) it will not remove obsolete documents.
568         @$(ECHO) -------------------------------------------------------
569         find doc/webserver -type f -exec chmod 664 {} \;
570 # not sure if we need next line.swa.
571         chmod 775 doc/webserver/redirect.php
572         find doc/webserver -type d -exec chmod a+rx {} \;
573         cd doc/webserver && scp -Cr . ijbswa.sourceforge.net:/home/groups/i/ij/ijbswa/htdocs/
574
575 webquick:
576         find doc/webserver -type f -exec chmod 664 {} \;
577 # not sure if we need next line.swa.
578         chmod 775 doc/webserver/redirect.php
579         find doc/webserver -type d -exec chmod a+rx {} \;
580         cd doc/webserver/submit && scp -Cr . ijbswa.sourceforge.net:/home/groups/i/ij/ijbswa/htdocs/submit
581
582
583 #############################################################################
584 # Source file dependencies
585 #############################################################################
586
587 actions.@OBJEXT@:   actions.c   actions.h   config.h $(PROJECT_H_DEPS) errlog.h jcc.h list.h loaders.h miscutil.h actionlist.h
588 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
589 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
590 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
591 deanimate.@OBJEXT@: deanimate.c deanimate.h config.h $(PROJECT_H_DEPS)
592 encode.@OBJEXT@:    encode.c    encode.h    config.h
593 errlog.@OBJEXT@:    errlog.c    errlog.h    config.h $(PROJECT_H_DEPS) @WIN_ONLY@w32log.h
594 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 
595 gateway.@OBJEXT@:   gateway.c   gateway.h   config.h $(PROJECT_H_DEPS) errlog.h jbsockets.h jcc.h loadcfg.h
596 jbsockets.@OBJEXT@: jbsockets.c jbsockets.h config.h $(PROJECT_H_DEPS) filters.h
597 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
598 killpopup.@OBJEXT@: killpopup.c killpopup.h config.h $(PROJECT_H_DEPS) jcc.h loadcfg.h
599 list.@OBJEXT@:      list.c      list.h      config.h $(PROJECT_H_DEPS) list.h miscutil.h
600 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
601 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
602 miscutil.@OBJEXT@:  miscutil.c  miscutil.h  config.h
603 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
604 ssplit.@OBJEXT@:    ssplit.c    ssplit.h    config.h miscutil.h
605 urlmatch.@OBJEXT@:  urlmatch.c  urlmatch.h  config.h $(PROJECT_H_DEPS) errlog.h miscutil.h ssplit.h
606
607 # GNU regex
608 gnu_regex.@OBJEXT@: gnu_regex.c gnu_regex.h config.h
609
610 # PCRS
611 pcrs.@OBJEXT@: pcrs.c pcre/pcre.h pcrs.h
612
613 # PCRE
614 pcre/get.@OBJEXT@:        pcre/get.c        pcre/config.h pcre/internal.h pcre/pcre.h
615 pcre/maketables.@OBJEXT@: pcre/maketables.c pcre/config.h pcre/internal.h pcre/pcre.h
616 pcre/pcre.@OBJEXT@:       pcre/pcre.c       pcre/config.h pcre/internal.h pcre/pcre.h pcre/chartables.c 
617 pcre/pcreposix.@OBJEXT@:  pcre/pcreposix.c  pcre/config.h pcre/internal.h pcre/pcre.h pcre/pcreposix.h
618 pcre/study.@OBJEXT@:      pcre/study.c      pcre/config.h pcre/internal.h pcre/pcre.h
619
620 # An auxiliary program makes the PCRE default character table source
621
622 pcre/chartables.c:   pcre/dftables@EXEEXT@
623                 pcre/dftables@EXEEXT@ >pcre/chartables.c
624
625 pcre/dftables@EXEEXT@:       pcre/dftables.c pcre/maketables.c pcre/pcre.h pcre/internal.h pcre/config.h
626                 $(CC) -o pcre/dftables@EXEEXT@ $(CFLAGS) pcre/dftables.c
627
628 # Win32
629 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
630 w32taskbar.@OBJEXT@: w32taskbar.c config.h w32log.h w32taskbar.h
631 win32.@OBJEXT@: win32.c config.h jcc.h loadcfg.h pcre/pcre.h pcre/pcreposix.h pcrs.h project.h w32log.h win32.h
632
633 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
634         windres -D__MINGW32__=0.2 -O coff -i $< -o $@
635
636 # AmigaOS
637 @AMIGAOS_ONLY@OBJS += amiga.o
638 @AMIGAOS_ONLY@CFLAGS += -D__AMIGAVERSION__=\"$(VERSION_MAJOR).$(VERSION_MINOR)$(VERSION_POINT)\" -D__AMIGADATE__=\"`date +%d.%m.%Y`\" -W -m68020 -noixemul -fbaserel -msmall-code
639 @AMIGAOS_ONLY@LDFLAGS += -m68020 -noixemul -fbaserel
640 @AMIGAOS_ONLY@LIBS = -lm /gg/lib/libb/libm020/libnix/swapstack.o
641 @AMIGAOS_ONLY@amiga.o: amiga.c amiga.h config.h
642
643
644 $(PROGRAM): $(OBJS) $(W32_FILES)
645         $(LD) $(LDFLAGS) -o $(PROGRAM) $(OBJS) $(LIBS)
646
647 clean:
648         $(RM) a.out core $(OBJS) $(W32_FILES) $(W32_INIS) $(PROGRAM) junkbuster config.log
649
650 clobber: clean
651         $(RM) cscope.* logfile *.pdb *.lib *.exp `find . -name tags` `find . -name TAGS` config.status config.h.in config.log junkbuster.log privoxy.log config.cache *~ *.tar.gz configure
652
653 tags: $(SRCS) $(HDRS)
654         etags $(SRCS) $(HDRS)
655
656 install: all
657         #
658         # FIXME: This is a dirty hack to have an install target
659         #        that works at least for some setups. This needs
660         #        to be fixed!
661         #
662         $(STRIP_PROG) $(PROGRAM)
663         $(INSTALL) $(INSTALL_D) $(SBIN_DEST)
664         $(INSTALL) $(INSTALL_D) $(DEST)/user-manual
665         $(INSTALL) $(INSTALL_D) $(DEST)/templates
666         $(INSTALL) $(INSTALL_D) $(CONFDEST)
667         $(INSTALL) $(INSTALL_P) $(PROGRAM) $(SBIN_DEST)
668         if [ -d "doc/webserver/user-manual" ]; then $(INSTALL) $(INSTALL_T) doc/webserver/user-manual $(DEST); fi
669         $(INSTALL) $(INSTALL_T) templates/[a-z]* $(DEST)/templates
670         $(INSTALL) $(INSTALL_T) config default.action default.filter trust $(CONFDEST)
671         # FIXME $(ECHO) privoxy.logrotate privoxy.monthly privoxy.weekly
672         # FIXME: Need new manual! $(GZIP_PROG) -c privoxy.1 > $(MAN_DEST)/privoxy.1.gz
673         $(INSTALL) $(INSTALL_P) privoxy.init /etc/init.d/privoxy
674
675
676 #############################################################################
677
678 ## Local Variables:
679 ## tab-width: 3
680 ## end:
681
682 # $Log: GNUmakefile.in,v $
683 # Revision 1.47  2002/03/30 09:05:21  swa
684 # better packaging. better rpm building.
685 # tar failed on sun (no exclude there).
686 #
687 # Revision 1.46  2002/03/29 20:09:01  swa
688 # al's patch
689 #
690 # Revision 1.45  2002/03/29 19:45:45  swa
691 # for lazy swa
692 #
693 # Revision 1.44  2002/03/29 17:42:44  gliptak
694 # Correcting for Solaris tar limitations
695 #
696 # Revision 1.43  2002/03/29 07:40:03  swa
697 # fixed make webserver. doh
698 #
699 # Revision 1.42  2002/03/29 06:59:04  swa
700 # other users could not modify files on webserver
701 #
702 # Revision 1.41  2002/03/28 20:43:00  swa
703 # set make correctly
704 #
705 # Revision 1.40  2002/03/28 04:22:44  hal9
706 # More on man2html stuff.
707 #
708 # Revision 1.39  2002/03/28 01:04:14  hal9
709 # More man2html stuff for docs.
710 #
711 # Revision 1.38  2002/03/27 16:02:30  swa
712 # have a generic target
713 #
714 # Revision 1.37  2002/03/27 15:30:26  swa
715 # have a consistent appearance
716 #
717 # Revision 1.36  2002/03/27 14:58:08  swa
718 # can be used by mutilple targets
719 #
720 # Revision 1.35  2002/03/27 14:53:19  swa
721 # added solaris-dist
722 #
723 # Revision 1.34  2002/03/27 10:30:11  swa
724 # we want a html man file on the webserver
725 #
726 # Revision 1.33  2002/03/27 03:05:35  hal9
727 # Added man2html target for docs (redhat-dok only for now)
728 #
729 # Revision 1.32  2002/03/26 22:29:54  swa
730 # we have a new homepage!
731 #
732 # Revision 1.31  2002/03/26 14:00:18  swa
733 # fixed make tarball, tarball-dist, tarball-clean
734 #
735 # Revision 1.30  2002/03/25 12:52:25  swa
736 # new targets
737 #
738 # Revision 1.29  2002/03/24 17:03:55  jongfoster
739 # Name change
740 #
741 # Revision 1.28  2002/03/24 16:19:48  swa
742 # configure needs to be generated.
743 #
744 # Revision 1.27  2002/03/24 16:13:57  swa
745 # generated files are a nono in cvs
746 #
747 # Revision 1.26  2002/03/24 15:36:02  swa
748 # did not build.
749 #
750 # Revision 1.25  2002/03/24 14:31:08  swa
751 # remove more crappy files. set RPM
752 # release version correctly.
753 #
754 # Revision 1.24  2002/03/24 14:19:55  swa
755 # set rpm package release in configure.in. nowhere else.
756 #
757 # Revision 1.23  2002/03/24 13:06:49  swa
758 # suse-clean now runs fine
759 #
760 # Revision 1.22  2002/03/24 12:56:21  swa
761 # name change related issues.
762 #
763 # Revision 1.21  2002/03/24 12:43:57  swa
764 # name change
765 #
766 # Revision 1.20  2002/03/24 11:39:17  jongfoster
767 # Renaming config files
768 #
769 # Revision 1.19  2002/03/22 20:53:03  morcego
770 # - Ongoing process to change name to JunkbusterNG
771 # - configure/configure.in: no change needed
772 # - GNUmakefile.in:
773 #         - TAR_ARCH = /tmp/JunkbusterNG-$(RPM_VERSION).tar.gz
774 #         - PROGRAM    = jbng@EXEEXT@
775 #         - rh-spec now references as junkbusterng-rh.spec
776 #         - redhat-upload: references changed to junkbusterng-* (package names)
777 #         - tarball-dist: references changed to JunkbusterNG-distribution-*
778 #         - tarball-src: now JunkbusterNG-*
779 #         - install: initscript now junkbusterng.init and junkbusterng (when
780 #                    installed)
781 # - junkbuster-rh.spec: renamed to junkbusterng-rh.spec
782 # - junkbusterng.spec:
783 #         - References to the expression ijb where changed where possible
784 #         - New package name: junkbusterng (all in lower case, acording to
785 #           the LSB recomendation)
786 #         - Version changed to: 2.9.13
787 #         - Release: 1
788 #         - Added: junkbuster to obsoletes and conflicts (Not sure this is
789 #           right. If it obsoletes, why conflict ? Have to check it later)
790 #         - Summary changed: Stefan, please check and aprove it
791 #         - Changes description to use the new name
792 #         - Sed string was NOT changed. Have to wait to the manpage to
793 #           change first
794 #         - Keeping the user junkbuster for now. It will require some aditional
795 #           changes on the script (scheduled for the next specfile release)
796 #         - Added post entry to move the old logfile to the new log directory
797 #         - Removing "chkconfig --add" entry (not good to have it automaticaly
798 #           added to the startup list).
799 #         - Added preun section to stop the service with the old name, as well
800 #           as remove it from the startup list
801 #         - Removed the chkconfig --del entry from the conditional block on
802 #           the preun scriptlet (now handled on the %files section)
803 # - junkbuster.init: renamed to junkbusterng.init
804 # - junkbusterng.init:
805 #         - Changed JB_BIN to jbng
806 #         - Created JB_OBIN with the old value of JB_BIN (junkbuster), to
807 #           be used where necessary (config dir)
808 #
809 # Aditional notes:
810 # - The config directory is /etc/junkbuster yet. Have to change it on the
811 # specfile, after it is changes on the code
812 # - The only files that got renamed on the cvs tree were the rh specfile and
813 # the init file. Some file references got changes on the makefile and on the
814 # rh-spec (as listed above)
815 #
816 # Revision 1.18  2002/03/21 23:00:00  swa
817 # want to autogenerate stuff.
818 #
819 # Revision 1.17  2002/03/19 19:30:04  morcego
820 # - Fixing stylesheet checking on configure. If it is found, no further checks
821 #   should be done
822 #
823 # - configure will now check for db2html or docbook2html (should work now
824 #   on SuSe without the docbktls package)
825 #
826 # Revision 1.16  2002/03/14 22:32:32  hal9
827 # Bumped the RPM version.
828 #
829 # Revision 1.15  2002/03/08 20:00:28  swa
830 # some leftovers.
831 #
832 # Revision 1.14  2002/03/07 18:25:56  swa
833 # synced redhat and suse build process
834 #
835 # Revision 1.13  2002/03/07 17:17:56  oes
836 # (Hopefully) fixed for older make versions
837 #
838 # Revision 1.12  2002/03/07 15:28:27  swa
839 # more informative
840 #
841 # Revision 1.11  2002/03/06 14:33:18  sarantis
842 # Use proper temp file, not "abc".
843 #
844 # Revision 1.10  2002/03/06 14:19:35  sarantis
845 # Cleanup PID_FILE_PATH from redhat-dist target
846 #
847 # Revision 1.9  2002/03/05 17:31:11  morcego
848 # Search for docbook.dsl. Should solve portability problems for SuSe.
849 #
850 # Revision 1.8  2002/03/05 14:07:42  morcego
851 # configure now detects rpm topdir, and change GNUmakefile acordingly
852 #    (based on sugestion by Sarantis Paskalis)
853 #
854 # Revision 1.7  2002/03/05 13:43:28  morcego
855 # Checking for text browser, so redhat-dok can work.
856 #
857 # Revision 1.6  2002/03/05 13:10:51  morcego
858 # Changes to implement redhat-dok (Hal Burgiss)
859 # Changes to make it work on other distros and out-of-the-shelf configurations
860 #
861 # Revision 1.5  2002/02/27 15:30:39  hal9
862 # Reset $(RPM_PACKAGEV) to 1 (was 2)
863 #
864 # Revision 1.4  2002/01/17 21:44:04  jongfoster
865 # Adding urlmatch.[ch]
866 #
867 # Revision 1.3  2002/01/04 15:26:08  oes
868 # Added tarball-src target
869 #
870 # Revision 1.2  2001/12/30 14:07:31  steudten
871 # - Add signal handling (unix)
872 # - Add SIGHUP handler (unix)
873 # - Add creation of pidfile (unix)
874 # - Add action 'top' in rc file (RH)
875 # - Add entry 'SIGNALS' to manpage
876 # - Add exit message to logfile (unix)
877 #
878 # Revision 1.1  2001/12/01 11:22:57  jongfoster
879 # Renaming Makefile.in to GNUmakefile.in so that non-GNU versions of
880 # make break in a more obvious way.
881 # Adding .PHONY section.
882 #
883 # Revision 1.40  2001/12/01 00:24:11  jongfoster
884 # Renaming various config files
885 # Fixing CR->CRLF under Win32 (I hope)
886 #
887 # Revision 1.39  2001/11/06 12:07:30  steudten
888 # Add --clean for building rpm in target redhat-dist.
889 #
890 # Revision 1.38  2001/11/05 21:35:23  steudten
891 # Complete rewrite for the 'redhat-dist' target.
892 # Checks for writeable RPM build directories for calling user.
893 # So you must not be root, just set the modes to 1777 to
894 # build a RH package.
895 # Fix the upload-target to be arch independant.
896 # Add target for 'solaris-dist' - coming soon.
897 #
898 # Revision 1.37  2001/11/01 00:52:04  hal9
899 # Redhat-upload stuff per Stefan.
900 #
901 # Revision 1.36  2001/10/31 19:26:13  swa
902 # automate process of uploading new releases
903 # to sf.
904 #
905 # Revision 1.35  2001/10/15 22:14:59  joergs
906 # Removed -O2 and -Wall from AmigaOS-only CFLAGS since they are now in
907 #  the general CFLAGS already.
908 #
909 # Revision 1.34  2001/10/15 18:28:06  steudten
910 # remove config.cache for target clobber.
911 # Cleanup make dist for RH and S.u.S.E.
912 #
913 # Revision 1.33  2001/10/10 12:43:33  oes
914 # Added ugly hack to make install target work at least for some setups.
915 #
916 # Revision 1.32  2001/10/09 22:38:19  jongfoster
917 # Correcting actionsfile filename for Win32 INI build
918 #
919 # Revision 1.31  2001/09/23 10:13:48  swa
920 # upload process established. run make webserver and
921 # the documentation is moved to the webserver. documents
922 # are now linked correctly.
923 #
924 # Revision 1.30  2001/09/19 17:55:49  oes
925 # Fixed CFLAGS
926 #
927 # Revision 1.29  2001/09/16 17:34:27  jongfoster
928 # Removing showargs.[ch], adding cgi(simple|edit).[ch]
929 # Replacing $(OBJEXT) with @OBJEXT@ - this seems to be a common source
930 # of build problems.
931 #
932 # Revision 1.28  2001/09/13 15:19:08  swa
933 # we want text files as well.
934 #
935 # Revision 1.27  2001/09/13 13:11:37  steudten
936 #
937 # Replace DEBUG_CFLAGS with OTHER_CFLAGS
938 #
939 # Revision 1.26  2001/09/12 23:44:54  david__schmidt
940 # Mac OSX (Darwin) support added.
941 #
942 # Revision 1.25  2001/09/12 22:55:45  joergs
943 # AmigaOS support added.
944 #
945 # Revision 1.24  2001/09/12 17:28:59  david__schmidt
946 #
947 # OS/2 port: update autoconf'd support for the platform.
948 #
949 # Revision 1.23  2001/09/12 16:28:42  swa
950 # added "make dok" section to generate html pages from
951 # the sgml source documents. note that the we do not want
952 # generated stuff in cvs.
953 #
954 # Revision 1.22  2001/09/10 16:31:23  swa
955 # buildroot definition in the specfile fucks up the build
956 # process under suse. hence I moved it to the "rpm -ta"
957 # command
958 #
959 # Revision 1.21  2001/09/10 11:12:49  oes
960 # Turning on -Wall
961 #
962 # Revision 1.20  2001/08/02 22:04:29  jongfoster
963 # Removing some remaining references to obsolete w32rulesdlg.[ch]
964 #
965 # Revision 1.19  2001/07/30 22:14:03  jongfoster
966 # Removing obsolete w32rulesdlg.c and w32rulesdlg.h
967 #
968 # Revision 1.18  2001/07/29 17:09:17  jongfoster
969 # Major changes to build system in order to fix these bugs:
970 # - pthreads under Linux was broken - changed -lpthread to -pthread
971 # - Compiling in MinGW32 mode under CygWin now correctly detects
972 #   which shared libraries are available
973 # - Solaris support (?) (Not tested under Solaris yet)
974 #
975 # Revision 1.17  2001/07/28 16:44:54  oes
976 # Fixed sed LF->CRLF conversion and removed deprecated files
977 #
978 # Revision 1.16  2001/07/15 19:45:33  jongfoster
979 # Added support for linking with POSIX threads library
980 #
981 # Revision 1.15  2001/07/13 13:48:07  oes
982 #  - Moved STATIC #define for pcre to (ac)config.h
983 #  - Made -Ipcre depandant on static pcre compilation to
984 #    avoid version conflicts
985 #  - Included compilation and depandancies for new deanimate.c
986 #  - Made changes to the pcre/pcreposix/pcrs build process
987 #    as required by the new library autodetection in
988 #    configure.in
989 #
990 # Revision 1.14  2001/07/01 16:27:44  oes
991 # Fixed misplaced dependancy
992 #
993 # Revision 1.13  2001/06/29 13:18:36  oes
994 # - added depandancy of filters.o on cgi.h
995 #
996 # Revision 1.12  2001/06/12 17:15:56  swa
997 # fixes, because a clean build on rh6.1 was impossible.
998 # GZIP confuses make, %configure confuses rpm, etc.
999 #
1000 # Revision 1.11  2001/06/11 11:26:35  sarantis
1001 # RPM version should be the same as ijbswa version.  The rpm release is
1002 # specified in the specfile.
1003 #
1004 # Revision 1.10  2001/06/07 17:27:45  swa
1005 # added suse build section
1006 #
1007 # Revision 1.9  2001/06/04 18:31:58  swa
1008 # files are now prefixed with either `confdir' or `logdir'.
1009 # `make redhat-dist' replaces both entries confdir and logdir
1010 # with redhat values
1011 #
1012 # Revision 1.8  2001/06/04 10:44:57  swa
1013 # `make redhatr-dist' now works. Except for the paths
1014 # in the config file.
1015 #
1016 # Revision 1.7  2001/06/03 17:09:09  swa
1017 # swa for oes: reversed my earlier change
1018 #
1019 # Revision 1.6  2001/06/03 17:07:27  swa
1020 # swa for oes
1021 #
1022 # Revision 1.5  2001/06/03 13:57:26  swa
1023 # compile cgi.c (for andreas' GUI)
1024 #
1025 # Revision 1.4  2001/05/31 21:18:45  jongfoster
1026 # Added files actions.[ch], actionlist.h, list.[ch] to Makefile
1027 #
1028 # Revision 1.3  2001/05/29 20:02:48  joergs
1029 # Changes for AmigaOS added.
1030 #
1031 # Revision 1.2  2001/05/17 22:23:23  oes
1032 #  - Added auto-generation of CRLFs for Win32 config files
1033 #  - Added comment-prefix to all Win32-only options in the config file
1034 #    and provided auto stripping of this prefix for the Win32 platform by make
1035 #
1036 # Revision 1.1.1.1  2001/05/15 13:59:00  oes
1037 # Initial import of version 2.9.3 source tree
1038 #
1039 #