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