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