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