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