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