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