Further proofread & reactivated short build instructions
[privoxy.git] / GNUmakefile.in
1 # Note:  Makefile is built automatically from Makefile.in
2 #
3 # $Id: GNUmakefile.in,v 1.97 2002/04/27 20:27:43 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 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      doc/webserver/index.html && $(RM) doc/source/webserver/*.bak
582
583 # Main documentation target.
584 dok: dok-release dok-devel dok-user dok-faq dok-readme dok-webserver dok-authors
585         @$(ECHO) Documentation created.
586
587 #
588 # an alternative to the above dok. disabled man page creation for the moment
589 #
590 redhat-dok: dok-release dok-devel dok-user dok-faq redhat-readme dok-webserver dok-authors
591         @$(ECHO) Documentation created.
592
593 # For those with man2html ala RH7's.
594 man2html:
595         mkdir -p doc/webserver/man-page
596 ifneq ($(MAN2HTML),false)
597         $(MAN2HTML) privoxy.1 |grep -v "^Content-type" > tmp.html
598         $(PERL) -pi.bak -e 's/<A .*Contents<\/A>//; s/<A .*man2html<\/A>/man2html/' tmp.html
599         $(PERL) -pi.bak -e 's/(<\/HEAD>)/<LINK REL=\"STYLESHEET\" TYPE=\"text\/css\" HREF=\"..\/p_doc.css\"><\/HEAD>/' tmp.html
600 # Get rid of spurious \a from conversion. (How to do this with perl?)
601         $(SED) -e 's/\a//g' tmp.html > doc/webserver/man-page/privoxy-man-page.html && $(RM) tmp.*
602 else
603         $(MAKE) groff2html
604 endif
605
606 # Otherwise we get plain groff conversion.
607 groff2html:
608         $(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
609
610 ## Make README
611 redhat-readme: 
612         cd doc/source && $(DB) -V nochunks readme.sgml > tmp.html && $(WDUMP) \
613           tmp.html > ../../README && $(RM) -r tmp.html
614
615 ## Make AUTHORS file
616 dok-authors: 
617         cd doc/source && $(DB) -V nochunks authors.sgml > tmp.html && $(WDUMP) \
618           tmp.html > ../../AUTHORS && $(RM) tmp.html
619
620 # make a man page, and then (lousy) HTML version.
621 # Requires docbook2man (short perl script), see comments 
622 # in privoxy-man-page.sgml. This target is not invoked from other dok targets.
623 # It is built separately due to dependencies on perl scripts.
624 man: 
625         mkdir -p doc/source/man
626         cd doc/source/man && docbook2man ../privoxy-man-page.sgml &&\
627         perl -pi.bak -e 's/ <URL:.*>//; s/\[ /\[/g' privoxy.1
628         cd doc/source/man && $(DB) ../privoxy-man-page.sgml &&\
629         mv -f index.html privoxy-man-page.html
630      # This html is not used. See make man2html.
631         mv -f doc/source/man/privoxy.1 privoxy.1
632         $(MAKE) man2html
633
634 # Set doc entities for VERSION and CODE_STATUS in sgml docs. Toggle content
635 # exceptions accordingly. This needs to go before any doc building (doh).
636 dok-release:
637         @$(ECHO) Setting doc version and status to $(VERSION), $(CODE_STATUS)
638         @$(PERL) -pi.bak -e 's/<!entity +p-version.*>/<!entity p-version "$(VERSION)">/;\
639      s/<!entity +p-status.*>/<!entity p-status "$(CODE_STATUS)">/' \
640      doc/source/*sgml doc/source/*/*sgml
641         $(RM) -r doc/source/*bak doc/source/*/*bak
642 ifeq ($(CODE_STATUS),stable)
643         @$(ECHO) Setting docs to stable $(VERSION)
644         @$(PERL) -pi.bak -e 's/<!entity +% +p-stable.*>/<!entity % p-stable "INCLUDE">/;\
645      s/<!entity +% +p-not-stable.*>/<!entity % p-not-stable "IGNORE">/' \
646      doc/source/*sgml doc/source/*/*sgml
647         $(RM) -r doc/source/*bak doc/source/*/*bak
648 else
649         @$(ECHO) Setting docs to not stable $(VERSION)
650         @$(PERL) -pi.bak -e 's/<!entity +% +p-stable.*>/<!entity % p-stable "IGNORE">/;\
651      s/<!entity +% +p-not-stable.*>/<!entity % p-not-stable "INCLUDE">/' \
652      doc/source/*sgml doc/source/*/*sgml
653         $(RM) -r doc/source/*bak doc/source/*/*bak
654 endif
655
656 dok-pdf: dok-release 
657         $(RM) doc/pdf/*.pdf
658         cp -f doc/source/*.sgml doc/pdf
659         cp -f doc/source/*.dsl doc/pdf
660         cd doc/pdf && db2pdf --pdf -s ldp.dsl user-manual.sgml && mv user-manual.pdf privoxy-user-manual.pdf > /dev/null 2>&1
661         cd doc/pdf && db2pdf --pdf -s ldp.dsl developer-manual.sgml && mv developer-manual.pdf privoxy-developer-manual.pdf > /dev/null 2>&1
662         cd doc/pdf && db2pdf --pdf -s ldp.dsl faq.sgml && mv faq.pdf privoxy-faq.pdf > /dev/null 2>&1
663         $(RM) doc/pdf/*.sgml doc/pdf/*.dsl doc/pdf/*.out doc/pdf/*.tex doc/pdf/*.log doc/pdf/*.aux
664
665 # the layout and style with db2pdf sucks, here is an alternative
666 dok-pdf2: dok-release 
667         mkdir -p doc/source/temp # this directory not in cvs
668         cd doc/source && $(DB) -V nochunks user-manual.sgml > temp/privoxy-user-manual.html
669         cd doc/source && $(DB) -V nochunks developer-manual.sgml > temp/privoxy-developer-manual.html
670         cd doc/source && $(DB) -V nochunks faq.sgml > temp/privoxy-faq.html
671 # one could use html2ps and ps2pdf. well, that does not work. htmlps produces incorrect output.
672
673
674 #############################################################################
675 #
676 # Webserver
677 #
678 # moves dokumentation to webserver
679 #
680 #############################################################################
681 webserver: tidy
682         @$(ECHO) -------------------------------------------------------
683         @$(ECHO) You have run make dok/redhat-dok before, right?
684         @$(ECHO) Note that this command scps all stuff to the webserver,
685         @$(ECHO) it will not remove obsolete documents.
686         @$(ECHO) -------------------------------------------------------
687
688         @$(ECHO) Uploading 
689         @cd doc/webserver; \
690           upload=`find . -type f -a -not \( -path "*/CVS*" -o -path "*/results*" \)`; \
691           $(TAR) c $$upload | ssh ijbswa.sourceforge.net 'cd /home/groups/i/ij/ijbswa/htdocs/; tar xvm 2>&1 | grep -v timestamp'
692
693         @$(ECHO) Fixing permissions
694         @ssh ijbswa.sourceforge.net 'chmod -R 775 /home/groups/i/ij/ijbswa/htdocs 2>/dev/null; true'
695         @ssh ijbswa.sourceforge.net 'find /home/groups/i/ij/ijbswa/htdocs/ -type f | xargs chmod 664 2>/dev/null; true'
696         @ssh ijbswa.sourceforge.net 'chmod 666 /home/groups/i/ij/ijbswa/htdocs/actions/results/actions-feedback.txt 2>/dev/null; true'
697
698
699 web-actions: tidy
700         @$(ECHO) Uploading 
701         @cd doc/webserver/actions; \
702           upload=`find . -type f -a -not \( -path "*/CVS*" -o -path "*/results*" \)`; \
703           $(TAR) c $$upload | ssh ijbswa.sourceforge.net 'cd /home/groups/i/ij/ijbswa/htdocs/actions; tar xvm'
704
705         @$(ECHO) Fixing permissions
706         @ssh ijbswa.sourceforge.net 'find /home/groups/i/ij/ijbswa/htdocs/actions/ -type f | xargs chmod 664 2>/dev/null'
707         @ssh ijbswa.sourceforge.net 'chmod 666 /home/groups/i/ij/ijbswa/htdocs/actions/results/actions-feedback.txt 2>/dev/null'
708
709 #############################################################################
710 # Source file dependencies
711 #############################################################################
712
713 actions.@OBJEXT@:   actions.c   actions.h   config.h $(PROJECT_H_DEPS) errlog.h jcc.h list.h loaders.h miscutil.h actionlist.h
714 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
715 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
716 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
717 deanimate.@OBJEXT@: deanimate.c deanimate.h config.h $(PROJECT_H_DEPS)
718 encode.@OBJEXT@:    encode.c    encode.h    config.h
719 errlog.@OBJEXT@:    errlog.c    errlog.h    config.h $(PROJECT_H_DEPS) @WIN_ONLY@w32log.h
720 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 
721 gateway.@OBJEXT@:   gateway.c   gateway.h   config.h $(PROJECT_H_DEPS) errlog.h jbsockets.h jcc.h loadcfg.h
722 jbsockets.@OBJEXT@: jbsockets.c jbsockets.h config.h $(PROJECT_H_DEPS) filters.h
723 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
724 killpopup.@OBJEXT@: killpopup.c killpopup.h config.h $(PROJECT_H_DEPS) jcc.h loadcfg.h
725 list.@OBJEXT@:      list.c      list.h      config.h $(PROJECT_H_DEPS) list.h miscutil.h
726 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
727 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
728 miscutil.@OBJEXT@:  miscutil.c  miscutil.h  config.h
729 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
730 ssplit.@OBJEXT@:    ssplit.c    ssplit.h    config.h miscutil.h
731 urlmatch.@OBJEXT@:  urlmatch.c  urlmatch.h  config.h $(PROJECT_H_DEPS) errlog.h miscutil.h ssplit.h
732
733 # GNU regex
734 gnu_regex.@OBJEXT@: gnu_regex.c gnu_regex.h config.h
735
736 # PCRS
737 pcrs.@OBJEXT@: pcrs.c pcre/pcre.h pcrs.h
738
739 # PCRE
740 pcre/get.@OBJEXT@:        pcre/get.c        pcre/config.h pcre/internal.h pcre/pcre.h
741 pcre/maketables.@OBJEXT@: pcre/maketables.c pcre/config.h pcre/internal.h pcre/pcre.h
742 pcre/pcre.@OBJEXT@:       pcre/pcre.c       pcre/config.h pcre/internal.h pcre/pcre.h pcre/chartables.c 
743 pcre/pcreposix.@OBJEXT@:  pcre/pcreposix.c  pcre/config.h pcre/internal.h pcre/pcre.h pcre/pcreposix.h
744 pcre/study.@OBJEXT@:      pcre/study.c      pcre/config.h pcre/internal.h pcre/pcre.h
745
746 # An auxiliary program makes the PCRE default character table source
747
748 pcre/chartables.c:   pcre/dftables@EXEEXT@
749                 pcre/dftables@EXEEXT@ >pcre/chartables.c
750
751 pcre/dftables@EXEEXT@:       pcre/dftables.c pcre/maketables.c pcre/pcre.h pcre/internal.h pcre/config.h
752                 $(CC) -o pcre/dftables@EXEEXT@ $(CFLAGS) pcre/dftables.c
753
754 # Win32
755 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
756 w32taskbar.@OBJEXT@: w32taskbar.c config.h w32log.h w32taskbar.h
757 win32.@OBJEXT@: win32.c config.h jcc.h loadcfg.h pcre/pcre.h pcre/pcreposix.h pcrs.h project.h w32log.h win32.h
758
759 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
760         windres -D__MINGW32__=0.2 -O coff -i $< -o $@
761
762 # AmigaOS
763 @AMIGAOS_ONLY@OBJS += amiga.o
764 @AMIGAOS_ONLY@CFLAGS += -D__AMIGAVERSION__=\"$(VERSION_MAJOR).$(VERSION_MINOR)$(VERSION_POINT)\" -D__AMIGADATE__=\"`date +%d.%m.%Y`\" -W -m68020 -noixemul -fbaserel -msmall-code
765 @AMIGAOS_ONLY@LDFLAGS += -m68020 -noixemul -fbaserel
766 @AMIGAOS_ONLY@LIBS = -lm /gg/lib/libb/libm020/libnix/swapstack.o
767 @AMIGAOS_ONLY@amiga.o: amiga.c amiga.h config.h
768
769
770 $(PROGRAM): $(OBJS) $(W32_FILES)
771         $(LD) $(LDFLAGS) -o $(PROGRAM) $(OBJS) $(LIBS)
772
773 clean:
774         $(RM) a.out $(OBJS) $(W32_FILES) $(W32_INIS) $(PROGRAM) `find . -name TAGS -o -name tags` 
775
776 tidy:
777         $(RM) `find . -name "*~"`
778 #       $(RM) `find . -name "#*#"` # what is this for??
779         $(RM) `find . -name ".\#*"`
780
781 clobber: tidy
782         $(RM) GNUmakefile configure config.h.in config.h config.cache config.status config.log logfile \
783               privoxy.log core *.tar.gz *.tar privoxy-cl.spec doc/source/ldp.dsl
784
785 #
786 # FIXME: What is all this? 
787 #
788         $(RM) cscope.*  *.pdb *.lib *.exp 
789
790 distclean: clobber
791
792 tags: $(SRCS) $(HDRS)
793         etags $(SRCS) $(HDRS)
794
795 install: all
796         #
797         # FIXME: This is a dirty hack to have an install target
798         #        that works at least for some setups. This needs
799         #        to be fixed!
800         #
801         $(STRIP_PROG) $(PROGRAM)
802         $(INSTALL) $(INSTALL_D) $(SBIN_DEST)
803         $(INSTALL) $(INSTALL_D) $(DEST)/user-manual
804         $(INSTALL) $(INSTALL_D) $(CONFDEST)/templates
805         $(INSTALL) $(INSTALL_D) $(DEST)/$(DOK_WEB_USEM)
806         $(INSTALL) $(INSTALL_P) $(PROGRAM) $(SBIN_DEST)
807         if [ -d "$(DOK_WEB_USEM)" ]; then $(INSTALL) $(INSTALL_T) $(DOK_WEB_USEM)/[a-z]* $(DEST)/$(DOK_WEB_USEM); fi
808         $(INSTALL) $(INSTALL_T) templates/[a-z]* $(CONFDEST)/templates
809         $(INSTALL) $(INSTALL_T) config default.action default.filter trust $(CONFDEST)
810         # FIXME $(ECHO) privoxy.logrotate privoxy.monthly privoxy.weekly
811         # FIXME: Need new manual! $(GZIP_PROG) -c privoxy.1 > $(MAN_DEST)/privoxy.1.gz
812         $(INSTALL) $(INSTALL_P) privoxy.init /etc/init.d/privoxy
813
814
815 #############################################################################
816
817 ## Local Variables:
818 ## tab-width: 3
819 ## end:
820
821 # $Log: GNUmakefile.in,v $
822 # Revision 1.97  2002/04/27 20:27:43  swa
823 # no longer needed due to new
824 # PACKAGE_VERSION process
825 #
826 # Revision 1.96  2002/04/27 17:44:32  morcego
827 # - Correcting typo in my name (Rodrigo, not Rodgrigo) :-)
828 # - Using the RM macro everywhere rm is called (either we use, or don't)
829 # - Same for RPM
830 #
831 # Revision 1.95  2002/04/27 15:37:25  swa
832 # replacing directory in document creation process
833 # no longer necessary.
834 #
835 # Revision 1.94  2002/04/27 08:23:29  swa
836 # pdf process reviewed and cleaned up
837 #
838 # Revision 1.93  2002/04/27 04:55:53  morcego
839 # privoxy-cl.spec now gets removed by clobber target
840 #
841 # Revision 1.92  2002/04/27 04:53:40  morcego
842 # Adding --exclude "PACKAGERS" to every tar command that applies (not for
843 #   webserver target)
844 #
845 # Revision 1.91  2002/04/27 04:44:51  morcego
846 # GNUmakefile.in: The tarball created on redhat-dist and suse-dist now ignore
847 #   the PACKAGERS file, as well privoxy-cl.spec (in case it was created)
848 # GNUmakefile.in: New targets -> conectiva-spec, conectiva-dist and
849 #   conectiva-upload
850 # genclspec.sh  : New file to generate, from privoxy-rh.spec, a specfile
851 #   for Conectiva Linux
852 #
853 # Revision 1.90  2002/04/26 17:46:53  swa
854 # be consistent
855 #
856 # Revision 1.89  2002/04/26 17:20:54  swa
857 # just produce single html files to proces them later with Destiller or somesuch. looks prettier.
858 #
859 # Revision 1.88  2002/04/25 19:13:57  morcego
860 # Removed RPM release number declaration on configure.in
861 # Changed makefile to use given value for RPM_PACKAGEV when on uploading
862 # targets (will produce an error, explaining who to do it, if no value
863 # if provided).
864 #
865 # Revision 1.87  2002/04/23 14:10:59  swa
866 # now create pdf documents
867 #
868 # Revision 1.86  2002/04/15 04:30:27  hal9
869 # Missed two -pi.bak's on perl/cygwin problem.
870 #
871 # Revision 1.85  2002/04/14 01:05:34  hal9
872 # Revert dok-webserver change for SF logo.
873 #
874 # Revision 1.84  2002/04/13 22:43:25  hal9
875 # -Fix dok-webserver for SF logo (more perl).
876 # -Change all perl -pi to perl -pi.bak for Cygwin problem.
877 #
878 # Revision 1.83  2002/04/12 09:39:25  oes
879 # Excluding yet more files from tarball; making dist warning yet more scary
880 #
881 # Revision 1.82  2002/04/11 21:07:11  oes
882 # Excluding more files from tarball build
883 #
884 # Revision 1.81  2002/04/11 14:40:27  oes
885 # Fixed typo -- Thanks, Moritz!
886 #
887 # Revision 1.80  2002/04/11 12:50:00  oes
888 # Fixed tarball-dist target
889 #
890 # Revision 1.79  2002/04/11 06:49:28  oes
891 # 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
892 #
893 # Revision 1.78  2002/04/09 13:37:11  sarantis
894 # fix tar options typo
895 #
896 # Revision 1.77  2002/04/09 13:28:53  swa
897 # build suse and gen-dist with html docs
898 #
899 # Revision 1.76  2002/04/08 22:43:41  oes
900 # Fix: Include dotfiles in fixing webserver permissions
901 #
902 # Revision 1.75  2002/04/08 22:14:59  oes
903 # Silencing tar warnings in the web* targets
904 #
905 # Revision 1.74  2002/04/08 15:22:44  hal9
906 # This has finishing touches for dok building. Should be ready to go.
907 # -The main doc build is now 'make dok', should work on Redhat too.
908 # -Removed man page from main doc build. It is built separately due to
909 #  perl scripts that most aren't likely to have.
910 #
911 # Revision 1.73  2002/04/08 14:03:24  oes
912 # oes for al: Fix install target
913 #
914 # Revision 1.72  2002/04/08 13:42:11  oes
915 # Added safety check to *-dist targets; fixed permissions for feedback logfile
916 #
917 # Revision 1.71  2002/04/07 20:32:03  hal9
918 # -Add meta data kludge for make dok-webserver via $(PERL).
919 # -Add subdirs for 'make dok-release'.
920 #
921 # Revision 1.70  2002/04/07 08:59:40  swa
922 # generated files. do NOT edit.
923 # fixed directory bug in makefile.
924 #
925 # Revision 1.69  2002/04/07 08:10:47  swa
926 # create some of the webserver docs
927 # automatically (in particular if
928 # those docs recycle other documentation
929 # fragments). Now committed webserver's
930 # index file.
931 #
932 # Revision 1.68  2002/04/07 07:58:11  swa
933 # create some of the webserver docs
934 # automatically (in particular if
935 # those docs recycle other documentation
936 # fragments)
937 #
938 # Revision 1.67  2002/04/07 05:31:42  hal9
939 # Add 'dok-release' target:
940 # -Set doc entities to VERSION and CODE_STATUS during make.
941 # -Set doc conditional content flags (stable vs non-stable).
942 # A separate target for the time being but needs to be incorporated into
943 # dok build at some point.
944 # -Filter out a spurious ^G from new man page > html converion in man2html.
945 #
946 # Revision 1.66  2002/04/06 20:28:21  jongfoster
947 # Prettifying groff2html.
948 # Using GNU Make's conditional makefile feature rather than shell "if"s.
949 # (The shell "if"s were hiding errors)
950 # "perl" -> "$(PERL)"
951 # Spaces->tabs in a couple of places.
952 #
953 # Revision 1.65  2002/04/06 05:16:39  hal9
954 # -Add 'authors' and 'man' targets for AUTHORS and man-page (WIP).
955 # -Both of these will soon be generated files.
956 #
957 # Revision 1.64  2002/04/04 22:14:51  oes
958 # No longer rely on find honoring -iname
959 #
960 # Revision 1.63  2002/04/04 21:06:22  swa
961 # cosmetics.
962 #
963 # Revision 1.62  2002/04/04 20:49:50  swa
964 # attempt to consolidate the
965 # different dokbook versions.
966 #
967 # Revision 1.61  2002/04/04 19:18:21  swa
968 # readme was leftover directory. use w3m instead
969 # of lynx to be consistent among developers. use
970 # consistent target naming.
971 #
972 # Revision 1.60  2002/04/04 12:25:41  oes
973 # Tidy webserver upload w/o *~ files, CVS dirs and logfiles and with proper dir and file permissions
974 #
975 # Revision 1.59  2002/04/04 08:32:45  swa
976 # wrong name for tarball-dist target. further fixed content of tarball dist
977 #
978 # Revision 1.58  2002/04/04 06:32:58  hal9
979 # New dok targets for make readme.
980 #
981 # Revision 1.57  2002/04/04 00:36:36  gliptak
982 # always use pcre for matching
983 #
984 # Revision 1.56  2002/04/03 22:28:03  gliptak
985 # Removed references to gnu_regex
986 #
987 # Revision 1.55  2002/04/03 19:54:29  swa
988 # freebsd tested to work. attempt to move tarball dist target forward
989 #
990 # Revision 1.54  2002/04/03 14:54:07  oes
991 # Standard clean and clobber semantics II
992 #
993 # Revision 1.53  2002/04/03 14:19:16  oes
994 # Standard clean and clobber semantics
995 #
996 # Revision 1.52  2002/04/03 02:56:18  hal9
997 # Revert previous FAQ numbering kludge.
998 #
999 # Revision 1.51  2002/04/02 13:03:56  oes
1000 # Added fix for webserver permissions
1001 #
1002 # Revision 1.50  2002/04/02 03:46:24  hal9
1003 # Rewrite ldpOK.dsl so that sections are NOT numbered on FAQ, in an effort
1004 # to make the Table of Contents not so 'busy' looking. SuSE needs testing :)
1005 #
1006 # Revision 1.49  2002/03/30 22:20:12  swa
1007 # cd didn't work. neither did find.
1008 #
1009 # Revision 1.48  2002/03/30 19:04:06  swa
1010 # people release differently. no good.
1011 # I want to make parts of the docs only.
1012 #
1013 # Revision 1.47  2002/03/30 09:05:21  swa
1014 # better packaging. better rpm building.
1015 # tar failed on sun (no exclude there).
1016 #
1017 # Revision 1.46  2002/03/29 20:09:01  swa
1018 # al's patch
1019 #
1020 # Revision 1.45  2002/03/29 19:45:45  swa
1021 # for lazy swa
1022 #
1023 # Revision 1.44  2002/03/29 17:42:44  gliptak
1024 # Correcting for Solaris tar limitations
1025 #
1026 # Revision 1.43  2002/03/29 07:40:03  swa
1027 # fixed make webserver. doh
1028 #
1029 # Revision 1.42  2002/03/29 06:59:04  swa
1030 # other users could not modify files on webserver
1031 #
1032 # Revision 1.41  2002/03/28 20:43:00  swa
1033 # set make correctly
1034 #
1035 # Revision 1.40  2002/03/28 04:22:44  hal9
1036 # More on man2html stuff.
1037 #
1038 # Revision 1.39  2002/03/28 01:04:14  hal9
1039 # More man2html stuff for docs.
1040 #
1041 # Revision 1.38  2002/03/27 16:02:30  swa
1042 # have a generic target
1043 #
1044 # Revision 1.37  2002/03/27 15:30:26  swa
1045 # have a consistent appearance
1046 #
1047 # Revision 1.36  2002/03/27 14:58:08  swa
1048 # can be used by mutilple targets
1049 #
1050 # Revision 1.35  2002/03/27 14:53:19  swa
1051 # added solaris-dist
1052 #
1053 # Revision 1.34  2002/03/27 10:30:11  swa
1054 # we want a html man file on the webserver
1055 #
1056 # Revision 1.33  2002/03/27 03:05:35  hal9
1057 # Added man2html target for docs (redhat-dok only for now)
1058 #
1059 # Revision 1.32  2002/03/26 22:29:54  swa
1060 # we have a new homepage!
1061 #
1062 # Revision 1.31  2002/03/26 14:00:18  swa
1063 # fixed make tarball, tarball-dist, tarball-clean
1064 #
1065 # Revision 1.30  2002/03/25 12:52:25  swa
1066 # new targets
1067 #
1068 # Revision 1.29  2002/03/24 17:03:55  jongfoster
1069 # Name change
1070 #
1071 # Revision 1.28  2002/03/24 16:19:48  swa
1072 # configure needs to be generated.
1073 #
1074 # Revision 1.27  2002/03/24 16:13:57  swa
1075 # generated files are a nono in cvs
1076 #
1077 # Revision 1.26  2002/03/24 15:36:02  swa
1078 # did not build.
1079 #
1080 # Revision 1.25  2002/03/24 14:31:08  swa
1081 # remove more crappy files. set RPM
1082 # release version correctly.
1083 #
1084 # Revision 1.24  2002/03/24 14:19:55  swa
1085 # set rpm package release in configure.in. nowhere else.
1086 #
1087 # Revision 1.23  2002/03/24 13:06:49  swa
1088 # suse-clean now runs fine
1089 #
1090 # Revision 1.22  2002/03/24 12:56:21  swa
1091 # name change related issues.
1092 #
1093 # Revision 1.21  2002/03/24 12:43:57  swa
1094 # name change
1095 #
1096 # Revision 1.20  2002/03/24 11:39:17  jongfoster
1097 # Renaming config files
1098 #
1099 # Revision 1.19  2002/03/22 20:53:03  morcego
1100 # - Ongoing process to change name to JunkbusterNG
1101 # - configure/configure.in: no change needed
1102 # - GNUmakefile.in:
1103 #         - TAR_ARCH = /tmp/JunkbusterNG-$(RPM_VERSION).tar.gz
1104 #         - PROGRAM    = jbng@EXEEXT@
1105 #         - rh-spec now references as junkbusterng-rh.spec
1106 #         - redhat-upload: references changed to junkbusterng-* (package names)
1107 #         - tarball-dist: references changed to JunkbusterNG-distribution-*
1108 #         - tarball-src: now JunkbusterNG-*
1109 #         - install: initscript now junkbusterng.init and junkbusterng (when
1110 #                    installed)
1111 # - junkbuster-rh.spec: renamed to junkbusterng-rh.spec
1112 # - junkbusterng.spec:
1113 #         - References to the expression ijb where changed where possible
1114 #         - New package name: junkbusterng (all in lower case, acording to
1115 #           the LSB recomendation)
1116 #         - Version changed to: 2.9.13
1117 #         - Release: 1
1118 #         - Added: junkbuster to obsoletes and conflicts (Not sure this is
1119 #           right. If it obsoletes, why conflict ? Have to check it later)
1120 #         - Summary changed: Stefan, please check and aprove it
1121 #         - Changes description to use the new name
1122 #         - Sed string was NOT changed. Have to wait to the manpage to
1123 #           change first
1124 #         - Keeping the user junkbuster for now. It will require some aditional
1125 #           changes on the script (scheduled for the next specfile release)
1126 #         - Added post entry to move the old logfile to the new log directory
1127 #         - Removing "chkconfig --add" entry (not good to have it automaticaly
1128 #           added to the startup list).
1129 #         - Added preun section to stop the service with the old name, as well
1130 #           as remove it from the startup list
1131 #         - Removed the chkconfig --del entry from the conditional block on
1132 #           the preun scriptlet (now handled on the %files section)
1133 # - junkbuster.init: renamed to junkbusterng.init
1134 # - junkbusterng.init:
1135 #         - Changed JB_BIN to jbng
1136 #         - Created JB_OBIN with the old value of JB_BIN (junkbuster), to
1137 #           be used where necessary (config dir)
1138 #
1139 # Aditional notes:
1140 # - The config directory is /etc/junkbuster yet. Have to change it on the
1141 # specfile, after it is changes on the code
1142 # - The only files that got renamed on the cvs tree were the rh specfile and
1143 # the init file. Some file references got changes on the makefile and on the
1144 # rh-spec (as listed above)
1145 #
1146 # Revision 1.18  2002/03/21 23:00:00  swa
1147 # want to autogenerate stuff.
1148 #
1149 # Revision 1.17  2002/03/19 19:30:04  morcego
1150 # - Fixing stylesheet checking on configure. If it is found, no further checks
1151 #   should be done
1152 #
1153 # - configure will now check for db2html or docbook2html (should work now
1154 #   on SuSe without the docbktls package)
1155 #
1156 # Revision 1.16  2002/03/14 22:32:32  hal9
1157 # Bumped the RPM version.
1158 #
1159 # Revision 1.15  2002/03/08 20:00:28  swa
1160 # some leftovers.
1161 #
1162 # Revision 1.14  2002/03/07 18:25:56  swa
1163 # synced redhat and suse build process
1164 #
1165 # Revision 1.13  2002/03/07 17:17:56  oes
1166 # (Hopefully) fixed for older make versions
1167 #
1168 # Revision 1.12  2002/03/07 15:28:27  swa
1169 # more informative
1170 #
1171 # Revision 1.11  2002/03/06 14:33:18  sarantis
1172 # Use proper temp file, not "abc".
1173 #
1174 # Revision 1.10  2002/03/06 14:19:35  sarantis
1175 # Cleanup PID_FILE_PATH from redhat-dist target
1176 #
1177 # Revision 1.9  2002/03/05 17:31:11  morcego
1178 # Search for docbook.dsl. Should solve portability problems for SuSe.
1179 #
1180 # Revision 1.8  2002/03/05 14:07:42  morcego
1181 # configure now detects rpm topdir, and change GNUmakefile acordingly
1182 #    (based on sugestion by Sarantis Paskalis)
1183 #
1184 # Revision 1.7  2002/03/05 13:43:28  morcego
1185 # Checking for text browser, so redhat-dok can work.
1186 #
1187 # Revision 1.6  2002/03/05 13:10:51  morcego
1188 # Changes to implement redhat-dok (Hal Burgiss)
1189 # Changes to make it work on other distros and out-of-the-shelf configurations
1190 #
1191 # Revision 1.5  2002/02/27 15:30:39  hal9
1192 # Reset $(RPM_PACKAGEV) to 1 (was 2)
1193 #
1194 # Revision 1.4  2002/01/17 21:44:04  jongfoster
1195 # Adding urlmatch.[ch]
1196 #
1197 # Revision 1.3  2002/01/04 15:26:08  oes
1198 # Added tarball-src target
1199 #
1200 # Revision 1.2  2001/12/30 14:07:31  steudten
1201 # - Add signal handling (unix)
1202 # - Add SIGHUP handler (unix)
1203 # - Add creation of pidfile (unix)
1204 # - Add action 'top' in rc file (RH)
1205 # - Add entry 'SIGNALS' to manpage
1206 # - Add exit message to logfile (unix)
1207 #
1208 # Revision 1.1  2001/12/01 11:22:57  jongfoster
1209 # Renaming Makefile.in to GNUmakefile.in so that non-GNU versions of
1210 # make break in a more obvious way.
1211 # Adding .PHONY section.
1212 #
1213 # Revision 1.40  2001/12/01 00:24:11  jongfoster
1214 # Renaming various config files
1215 # Fixing CR->CRLF under Win32 (I hope)
1216 #
1217 # Revision 1.39  2001/11/06 12:07:30  steudten
1218 # Add --clean for building rpm in target redhat-dist.
1219 #
1220 # Revision 1.38  2001/11/05 21:35:23  steudten
1221 # Complete rewrite for the 'redhat-dist' target.
1222 # Checks for writeable RPM build directories for calling user.
1223 # So you must not be root, just set the modes to 1777 to
1224 # build a RH package.
1225 # Fix the upload-target to be arch independant.
1226 # Add target for 'solaris-dist' - coming soon.
1227 #
1228 # Revision 1.37  2001/11/01 00:52:04  hal9
1229 # Redhat-upload stuff per Stefan.
1230 #
1231 # Revision 1.36  2001/10/31 19:26:13  swa
1232 # automate process of uploading new releases
1233 # to sf.
1234 #
1235 # Revision 1.35  2001/10/15 22:14:59  joergs
1236 # Removed -O2 and -Wall from AmigaOS-only CFLAGS since they are now in
1237 #  the general CFLAGS already.
1238 #
1239 # Revision 1.34  2001/10/15 18:28:06  steudten
1240 # remove config.cache for target clobber.
1241 # Cleanup make dist for RH and S.u.S.E.
1242 #
1243 # Revision 1.33  2001/10/10 12:43:33  oes
1244 # Added ugly hack to make install target work at least for some setups.
1245 #
1246 # Revision 1.32  2001/10/09 22:38:19  jongfoster
1247 # Correcting actionsfile filename for Win32 INI build
1248 #
1249 # Revision 1.31  2001/09/23 10:13:48  swa
1250 # upload process established. run make webserver and
1251 # the documentation is moved to the webserver. documents
1252 # are now linked correctly.
1253 #
1254 # Revision 1.30  2001/09/19 17:55:49  oes
1255 # Fixed CFLAGS
1256 #
1257 # Revision 1.29  2001/09/16 17:34:27  jongfoster
1258 # Removing showargs.[ch], adding cgi(simple|edit).[ch]
1259 # Replacing $(OBJEXT) with @OBJEXT@ - this seems to be a common source
1260 # of build problems.
1261 #
1262 # Revision 1.28  2001/09/13 15:19:08  swa
1263 # we want text files as well.
1264 #
1265 # Revision 1.27  2001/09/13 13:11:37  steudten
1266 #
1267 # Replace DEBUG_CFLAGS with OTHER_CFLAGS
1268 #
1269 # Revision 1.26  2001/09/12 23:44:54  david__schmidt
1270 # Mac OSX (Darwin) support added.
1271 #
1272 # Revision 1.25  2001/09/12 22:55:45  joergs
1273 # AmigaOS support added.
1274 #
1275 # Revision 1.24  2001/09/12 17:28:59  david__schmidt
1276 #
1277 # OS/2 port: update autoconf'd support for the platform.
1278 #
1279 # Revision 1.23  2001/09/12 16:28:42  swa
1280 # added "make dok" section to generate html pages from
1281 # the sgml source documents. note that the we do not want
1282 # generated stuff in cvs.
1283 #
1284 # Revision 1.22  2001/09/10 16:31:23  swa
1285 # buildroot definition in the specfile fucks up the build
1286 # process under suse. hence I moved it to the "rpm -ta"
1287 # command
1288 #
1289 # Revision 1.21  2001/09/10 11:12:49  oes
1290 # Turning on -Wall
1291 #
1292 # Revision 1.20  2001/08/02 22:04:29  jongfoster
1293 # Removing some remaining references to obsolete w32rulesdlg.[ch]
1294 #
1295 # Revision 1.19  2001/07/30 22:14:03  jongfoster
1296 # Removing obsolete w32rulesdlg.c and w32rulesdlg.h
1297 #
1298 # Revision 1.18  2001/07/29 17:09:17  jongfoster
1299 # Major changes to build system in order to fix these bugs:
1300 # - pthreads under Linux was broken - changed -lpthread to -pthread
1301 # - Compiling in MinGW32 mode under CygWin now correctly detects
1302 #   which shared libraries are available
1303 # - Solaris support (?) (Not tested under Solaris yet)
1304 #
1305 # Revision 1.17  2001/07/28 16:44:54  oes
1306 # Fixed sed LF->CRLF conversion and removed deprecated files
1307 #
1308 # Revision 1.16  2001/07/15 19:45:33  jongfoster
1309 # Added support for linking with POSIX threads library
1310 #
1311 # Revision 1.15  2001/07/13 13:48:07  oes
1312 #  - Moved STATIC #define for pcre to (ac)config.h
1313 #  - Made -Ipcre depandant on static pcre compilation to
1314 #    avoid version conflicts
1315 #  - Included compilation and depandancies for new deanimate.c
1316 #  - Made changes to the pcre/pcreposix/pcrs build process
1317 #    as required by the new library autodetection in
1318 #    configure.in
1319 #
1320 # Revision 1.14  2001/07/01 16:27:44  oes
1321 # Fixed misplaced dependancy
1322 #
1323 # Revision 1.13  2001/06/29 13:18:36  oes
1324 # - added depandancy of filters.o on cgi.h
1325 #
1326 # Revision 1.12  2001/06/12 17:15:56  swa
1327 # fixes, because a clean build on rh6.1 was impossible.
1328 # GZIP confuses make, %configure confuses rpm, etc.
1329 #
1330 # Revision 1.11  2001/06/11 11:26:35  sarantis
1331 # RPM version should be the same as ijbswa version.  The rpm release is
1332 # specified in the specfile.
1333 #
1334 # Revision 1.10  2001/06/07 17:27:45  swa
1335 # added suse build section
1336 #
1337 # Revision 1.9  2001/06/04 18:31:58  swa
1338 # files are now prefixed with either `confdir' or `logdir'.
1339 # `make redhat-dist' replaces both entries confdir and logdir
1340 # with redhat values
1341 #
1342 # Revision 1.8  2001/06/04 10:44:57  swa
1343 # `make redhatr-dist' now works. Except for the paths
1344 # in the config file.
1345 #
1346 # Revision 1.7  2001/06/03 17:09:09  swa
1347 # swa for oes: reversed my earlier change
1348 #
1349 # Revision 1.6  2001/06/03 17:07:27  swa
1350 # swa for oes
1351 #
1352 # Revision 1.5  2001/06/03 13:57:26  swa
1353 # compile cgi.c (for andreas' GUI)
1354 #
1355 # Revision 1.4  2001/05/31 21:18:45  jongfoster
1356 # Added files actions.[ch], actionlist.h, list.[ch] to Makefile
1357 #
1358 # Revision 1.3  2001/05/29 20:02:48  joergs
1359 # Changes for AmigaOS added.
1360 #
1361 # Revision 1.2  2001/05/17 22:23:23  oes
1362 #  - Added auto-generation of CRLFs for Win32 config files
1363 #  - Added comment-prefix to all Win32-only options in the config file
1364 #    and provided auto stripping of this prefix for the Win32 platform by make
1365 #
1366 # Revision 1.1.1.1  2001/05/15 13:59:00  oes
1367 # Initial import of version 2.9.3 source tree
1368 #
1369 #