we want a html man file on the webserver
[privoxy.git] / GNUmakefile.in
1 # Note:  Makefile is built automatically from Makefile.in
2 #
3 # $Id: GNUmakefile.in,v 1.33 2002/03/27 03:05:35 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 # Version number (for RPM)
33 #############################################################################
34
35 VERSION_MAJOR = @VERSION_MAJOR@
36 VERSION_MINOR = @VERSION_MINOR@
37 VERSION_POINT = @VERSION_POINT@
38 CODE_STATUS   = @CODE_STATUS@
39 VERSION       = $(VERSION_MAJOR).$(VERSION_MINOR).$(VERSION_POINT)
40 # will automatically be postfixed with -$(RPM_PACKAGEV) in the SPECfile
41 RPM_VERSION   = $(VERSION)
42 RPM_PACKAGEV  = @VERSION_RPM_PACKAGE@
43
44
45 #############################################################################
46 # Directories for "make install"
47 #############################################################################
48
49 DEST        = @sysconfdir@/privoxy
50 SBIN_DEST   = @sbindir@
51 MAN_DEST    = @mandir@
52
53
54 #############################################################################
55 # Build tools
56 #############################################################################
57
58 PROGRAM    = privoxy@EXEEXT@
59 CC         = @CC@
60 ECHO       = echo
61 GZIP_PROG  = gzip
62 INSTALL    = cp -f
63 LD         = @CC@
64 RM         = rm -f
65 STRIP_PROG = strip
66 SED        = sed
67 CAT        = cat
68 RPM        = rpm
69 MV         = mv
70 TAR        = tar
71 MAKE       = make
72 LN         = ln
73 WDUMP      = @WDUMP@ -dump
74 JADEBIN    = @JADEBIN@
75 DB         = $(JADEBIN) -t sgml -ihtml -D.. -d ldpOK.dsl\#html
76 DB2HTML    = @DB2HTML@
77 DKPREFIX   = @DKPREFIX@
78 MAN2HTML   = @MAN2HTML@
79
80 # Program to do LF->CRLF
81 #
82 # The sed version should be the most portable, but it doesn't for for me,
83 # the other two do.  FIXME.
84 #   - Jon
85 #DOSFILTER  = $(SED) -e $$'s,$$,\r,'
86 #DOSFILTER  = gawk -v ORS='\r\n' '{print $0;}'
87 DOSFILTER  = perl -p -e 's/\n/\r\n/'
88
89 #############################################################################
90 # Setup for make distribution rh and suse for now 
91 #############################################################################
92
93 TAR_ARCH = /tmp/privoxy-$(RPM_VERSION).tar.gz
94 RPM_BASE = @RPM_BASE@
95
96 #############################################################################
97 # Filenames and libraries
98 #############################################################################
99
100 C_SRC  = actions.c cgi.c cgiedit.c cgisimple.c deanimate.c encode.c \
101          errlog.c filters.c gateway.c jbsockets.c jcc.c killpopup.c \
102          list.c loadcfg.c loaders.c miscutil.c parsers.c ssplit.c \
103          urlmatch.c
104
105 C_OBJS = $(C_SRC:.c=.@OBJEXT@)
106 C_HDRS = $(C_SRC:.c=.h) project.h actionlist.h
107
108 W32_SRC   = @WIN_ONLY@w32log.c w32taskbar.c win32.c
109 W32_FILES = @WIN_ONLY@w32.res
110 W32_OBJS  = @WIN_ONLY@$(W32_SRC:.c=.@OBJEXT@) $(W32_FILES)
111 W32_HDRS  = @WIN_ONLY@w32log.h w32taskbar.h win32.h w32res.h
112 W32_LIB   = @WIN_ONLY@-lwsock32 -lcomctl32
113 W32_INIS  = @WIN_ONLY@config.txt trust.txt
114
115 PCRS_SRC     = @STATIC_PCRS_ONLY@pcrs.c
116 PCRS_OBJS    = @STATIC_PCRS_ONLY@$(PCRS_SRC:.c=.@OBJEXT@)
117 PCRS_HDRS    = @STATIC_PCRS_ONLY@$(PCRS_SRC:.c=.h)
118
119 PCRE_SRC     = @STATIC_PCRE_ONLY@pcre/get.c pcre/maketables.c pcre/study.c pcre/pcre.c
120 PCRE_OBJS    = @STATIC_PCRE_ONLY@$(PCRE_SRC:.c=.@OBJEXT@)
121 PCRE_HDRS    = @STATIC_PCRE_ONLY@pcre/config.h pcre/chartables.c pcre/internal.h pcre/pcre.h
122
123 # No REGEX (Either because dynamically linked pcreposix, or no regex at all):
124 REGEX_SRC    =
125 # GNU REGEX:
126 @GNU_REGEX_ONLY@REGEX_SRC    = gnu_regex.c
127 # PCRE REGEX:
128 @PCRE_REGEX_ONLY@@STATIC_PCRE_ONLY@REGEX_SRC = pcre/pcreposix.c
129
130 REGEX_OBJS   = $(REGEX_SRC:.c=.@OBJEXT@)
131 REGEX_HDRS   = $(REGEX_SRC:.c=.h)
132
133 # Dependencies introduced by #include "project.h".
134 PROJECT_H_DEPS = project.h $(REGEX_HDRS) $(PCRS_HDRS) @STATIC_PCRE_ONLY@pcre/pcre.h
135
136 # Socket libraries for platforms that need them explicitly defined
137 SOCKET_LIB   = @SOCKET_LIB@
138
139 # PThreads library, if needed.
140 PTHREAD_LIB  = @PTHREAD_ONLY@@PTHREAD_LIB@
141
142 SRCS         = $(C_SRC)  $(W32_SRC)  $(PCRS_SRC)  $(PCRE_SRC)  $(REGEX_SRC)
143 OBJS         = $(C_OBJS) $(W32_OBJS) $(PCRS_OBJS) $(PCRE_OBJS) $(REGEX_OBJS)
144 HDRS         = $(C_HDRS) $(W32_HDRS) $(PCRS_HDRS) $(PCRE_OBJS) $(REGEX_HDRS)
145 LIBS         = @LIBS@ $(W32_LIB) $(SOCKET_LIB) $(PTHREAD_LIB)
146
147
148 #############################################################################
149 # Compiler switches
150 #############################################################################
151
152 # The flag "-mno-win32" can be used by Cygwin to emulate a un?x type build.
153 # The flag "-mwindows -mno-cygwin" will cause Cygwin to use MingW32 for a
154 # Win32 GUI build.
155 # The flag "-pthread" is required if using Pthreads under Linux (and
156 # possibly other OSs).
157 SPECIAL_CFLAGS = @SPECIAL_CFLAGS@
158
159 # Add your flags here 
160 OTHER_CFLAGS =   
161
162 CFLAGS = @CFLAGS@ @CPPFLAGS@ $(OTHER_CFLAGS) $(SPECIAL_CFLAGS) -Wall \
163          @STATIC_PCRE_ONLY@ -Ipcre 
164
165 LDFLAGS = $(DEBUG_CFLAGS) $(SPECIAL_CFLAGS)
166
167
168 #############################################################################
169 # Build section.
170 #
171 # There should NOT be any targets above this line.
172 #############################################################################
173 all: $(PROGRAM)
174
175
176 #############################################################################
177 # Phony targets
178 #############################################################################
179 .PHONY: all inifiles redhat-dist redhat-upload solaris-dist suse-dist \
180 suse-upload win-dist tarball-dist dok redhat-dok webserver clean clobber tags \
181 install
182
183
184 #############################################################################
185 # Define this explicitly because Solaris is broken!
186 #############################################################################
187 %.o: %.c
188         $(CC) -c $(CFLAGS) $(CPPFLAGS) $< -o $@
189
190
191 #############################################################################
192 # Win32 config files
193 #############################################################################
194
195 inifiles: $(W32_INIS)
196
197 config.txt: config
198         $(SED) -e 's!\trustfile trust!trustfile trust.txt!' \
199                -e 's!\jarfile jarfile!jarfile jar.log!' \
200                -e 's!\logfile logfile!logfile privoxy.log!' \
201                -e 's!#Win32-only: !!' \
202                < $< | \
203                $(DOSFILTER) > $@
204         # LF to CRLF in default.action
205         $(DOSFILTER) <default.action >default.action.txt && mv default.action.txt default.action
206         # LF to CRLF in default.filter
207         $(DOSFILTER) <default.filter >default.filter.txt && mv default.filter.txt default.filter
208
209 trust.txt: trust
210         $(DOSFILTER) < $< > $@ 
211
212 re_filterfile.txt: re_filterfile
213         $(DOSFILTER) < $< > $@ 
214
215
216 #############################################################################
217 # redhat distribution alpha and x86
218 #############################################################################
219
220 redhat-dist:
221         for dir in RPMS SRPMS BUILD SOURCES SPECS; do \
222                 if [ ! -w $(RPM_BASE)/$$dir ]; then \
223                         $(ECHO) "$(RPM_BASE)/$$dir is not writable for you. Maybe try as root."; \
224                         $(ECHO) "Or add a suitable path to .rpmmacros like."; \
225                         $(ECHO) "%_topdir /home/foo/rpm-build"; \
226                         exit 1; \
227                 fi; \
228         done; \
229
230         $(MAKE) clobber
231         if [ -f $(TAR_ARCH) ]; then $(RM) $(TAR_ARCH); fi
232
233         TMPFILE=$$(mktemp -q /tmp/$(PROGRAM).XXXXXX); \
234         if $(SED) -e 's/^\(Version:\).*/\1 $(RPM_VERSION)/g' \
235              -e 's/^\(Release:\).*/\1 $(RPM_PACKAGEV)/g' \
236               privoxy-rh.spec > $$TMPFILE ; then \
237       $(MV) -f $$TMPFILE privoxy-rh.spec; \
238    else \
239       $(ECHO) "Could not set version info in specfile."; \
240       exit 1;\
241    fi
242
243         $(TAR) --exclude "CVS" --exclude "privoxy-suse.spec" -czf $(TAR_ARCH) .
244         $(RPM) --clean -ta  $(TAR_ARCH)
245         if [ -f $(TAR_ARCH) ]; then  $(RM) $(TAR_ARCH); fi
246
247 #
248 # anonymously ncftps the rpms to sourceforge
249 #
250 redhat-upload:
251         ncftpput -u anonymous -p ijbswa-developers@lists.sourceforge.net upload.sourceforge.net /incoming $(RPM_BASE)/SRPMS/privoxy-$(RPM_VERSION)-$(RPM_PACKAGEV).src.rpm
252 # better should use `arch` here instead of ix86 to support other platforms too
253         ncftpput -u anonymous -p ijbswa-developers@lists.sourceforge.net upload.sourceforge.net /incoming $(RPM_BASE)/RPMS/*/privoxy-$(RPM_VERSION)-$(RPM_PACKAGEV).*.rpm
254         @$(ECHO) -------------------------------------------------------
255         @$(ECHO) Now goto
256         @$(ECHO) http://sourceforge.net/project/admin/editpackages.php?group_id=11118
257         @$(ECHO) ... and release the files.
258         @$(ECHO) -------------------------------------------------------
259      # w3m http://sourceforge.net/project/admin/editpackages.php?group_id=11118
260
261 #############################################################################
262 # sun solaris  distribution
263 #############################################################################
264 solaris-dist:
265         @$(ECHO) coming soon. 
266 solaris-upload:
267         @$(ECHO) coming soon. 
268
269 #############################################################################
270 # hpux distribution
271 #############################################################################
272 hpux-dist:
273         @$(ECHO) coming soon. 
274 hpux-upload:
275         @$(ECHO) coming soon. 
276
277 #############################################################################
278 # debian distribution
279 #############################################################################
280 debian-dist:
281         @$(ECHO) coming soon. 
282 debian-upload:
283         @$(ECHO) coming soon. 
284
285 #############################################################################
286 # macosx distribution
287 #############################################################################
288 macosx-dist:
289         @$(ECHO) coming soon. 
290 macosx-upload:
291         @$(ECHO) coming soon. 
292
293 #############################################################################
294 # amiga distribution
295 #############################################################################
296 amiga-dist:
297         @$(ECHO) coming soon. 
298 amiga-upload:
299         @$(ECHO) coming soon. 
300
301 #############################################################################
302 # suse distribution. works fine. no need to be root. 
303 #############################################################################
304 suse-dist:
305         for dir in RPMS SRPMS BUILD SOURCES SPECS; do \
306                 if [ ! -w $(RPM_BASE)/$$dir ]; then \
307                         $(ECHO) "$(RPM_BASE)/$$dir is not writable for you. Maybe try as root."; \
308                         $(ECHO) "Or add a suitable path to .rpmmacros like."; \
309                         $(ECHO) "%_topdir /home/foo/rpm-build"; \
310                         exit 1; \
311                 fi; \
312         done; \
313
314         $(MAKE) clobber
315         if [ -f $(TAR_ARCH) ]; then $(RM) $(TAR_ARCH); fi
316
317         TMPFILE=$$(mktemp -q /tmp/$(PROGRAM).XXXXXX); \
318         if $(SED) -e 's/^\(Version:\).*/\1 $(RPM_VERSION)/g' \
319              -e 's/^\(Release:\).*/\1 $(RPM_PACKAGEV)/g' \
320               privoxy-suse.spec > $$TMPFILE ; then \
321       $(MV) -f $$TMPFILE privoxy-suse.spec; \
322    else \
323       $(ECHO) "Could not set version info in specfile."; \
324       exit 1;\
325    fi
326
327         $(TAR) --exclude "CVS" --exclude "privoxy-rh.spec" -czf $(TAR_ARCH) .
328         $(RPM) --clean -ta  $(TAR_ARCH)
329         if [ -f $(TAR_ARCH) ]; then  $(RM) $(TAR_ARCH); fi
330
331 #
332 # anonymously ncftps the rpms to sourceforge
333 #
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 # Windows distribution
367 #############################################################################
368 win-dist:
369         $(ECHO) Not implemented.
370
371
372 #############################################################################
373 # Tarball distribution
374 #############################################################################
375 tarball-dist: clobber
376         $(LN) -s current ../privoxy-$(VERSION)-$(CODE_STATUS)
377         $(TAR) -C.. --exclude "CVS" --exclude "#*" --exclude ".#*" --exclude ".cvsignore" -cvhzf privoxy-$(VERSION)-$(CODE_STATUS)-src.tar.gz privoxy-$(VERSION)-$(CODE_STATUS)
378         $(RM) ../privoxy-$(VERSION)-$(CODE_STATUS)
379         @$(ECHO) Tarball (with any binary) created.
380
381 # anonymously ncftps the tarball to sourceforge
382 tarball-upload:
383         ncftpput -u anonymous -p ijbswa-developers@lists.sourceforge.net upload.sourceforge.net /incoming privoxy-$(VERSION)-$(CODE_STATUS)-src.tar.gz
384         @$(ECHO) -------------------------------------------------------
385         @$(ECHO) Now goto
386         @$(ECHO) http://sourceforge.net/project/admin/editpackages.php?group_id=11118
387         @$(ECHO) ... and release the files.
388         @$(ECHO) -------------------------------------------------------
389
390 # handle with care
391 tarball-clean:
392         $(RM) privoxy-$(VERSION)-$(CODE_STATUS)-src.tar.gz
393
394 #############################################################################
395 #
396 # Documentation
397 #
398 # converts doc/source/*.sgml into html, text and man pages
399 #
400 #############################################################################
401 dok: doc/source/ldpOK.dsl man2html-swa
402         mkdir -p doc/text doc/man
403 #  user manual
404         rm -rf doc/webserver/user-manual
405         cd doc/source && $(DB2HTML) -s ldpOK.dsl user-manual.sgml && mv user-manual ../webserver
406         cd doc/source && $(DB2HTML) -s ldpOK.dsl --nochunks user-manual.sgml > tmp.html && lynx -dump tmp.html > ../text/user-manual.txt && rm -rf tmp.html user-manual
407 ##  developer manual
408         rm -rf doc/webserver/developer-manual
409         cd doc/source && $(DB2HTML) -s ldpOK.dsl developer-manual.sgml && mv developer-manual ../webserver
410         cd doc/source && $(DB2HTML) -s ldpOK.dsl --nochunks developer-manual.sgml > tmp.html && lynx -dump tmp.html > ../text/developer-manual.txt && rm -rf tmp.html developer-manual
411 ##  faq
412         rm -rf doc/webserver/faq
413         cd doc/source && $(DB2HTML) -s ldpOK.dsl faq.sgml && mv faq ../webserver
414         cd doc/source && $(DB2HTML) -s ldpOK.dsl --nochunks faq.sgml > tmp.html && lynx -dump tmp.html > ../text/faq.txt && rm -rf tmp.html faq
415
416 man2html-swa:
417         if [ "$(MAN2HTML)" != "false" ]; then \
418                 mkdir -p doc/webserver/man-page; \
419                 $(ECHO) "<html><head><title>Privoxy|Doc/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; \
420                 man ./privoxy.1 | $(MAN2HTML) -bare \
421                  >> doc/webserver/man-page/privoxy-man-page.html; \
422                 $(ECHO) "</body></html>" >> doc/webserver/man-page/privoxy-man-page.html; \
423         fi
424
425 redhat-dok: doc/source/ldpOK.dsl man2html
426         mkdir -p doc/text doc/man doc/source/user-manual \
427           doc/source/developer-manual doc/source/faq
428 ##  user manual
429         rm -rf doc/webserver/user-manual
430         cd doc/source/user-manual && $(DB) ../user-manual.sgml && cd .. &&\
431           mv user-manual ../webserver
432         cd doc/source && $(DB) -V nochunks user-manual.sgml > tmp.html && \
433           $(WDUMP) tmp.html > ../text/user-manual.txt && rm -rf tmp.html \
434           user-manual
435 ##  developer manual
436         rm -rf doc/webserver/developer-manual
437         cd doc/source/developer-manual && $(DB) ../developer-manual.sgml &&\
438           cd .. && mv developer-manual ../webserver
439         cd doc/source && $(DB) -V nochunks developer-manual.sgml > tmp.html && \
440           $(WDUMP) tmp.html > ../text/developer-manual.txt && rm -rf tmp.html \
441           developer-manual
442 ##  faq
443         rm -rf doc/webserver/faq
444         cd doc/source/faq && $(DB) ../faq.sgml && cd .. && mv faq ../webserver
445         cd doc/source && $(DB) -V nochunks faq.sgml > tmp.html && $(WDUMP) \
446           tmp.html > ../text/faq.txt && rm -rf tmp.html faq
447
448 doc/source/ldpOK.dsl:
449         if [ "$(DKPREFIX)" != "none" ]; then \
450                 sed -e "s@/usr/share/sgml/docbook/dsssl-stylesheets@$(DKPREFIX)@g" doc/source/ldp.dsl > doc/source/ldpOK.dsl; \
451         else \
452                 cp doc/source/ldp.dsl doc/source/ldpOK.dsl; \
453         fi
454
455 man2html:
456         if [ "$(MAN2HTML)" != "false" ]; then \
457                 $(MAN2HTML) privoxy.1 |grep -v "^Content-type" > doc/webserver/man-page/privoxy-man-page.html; \
458         fi
459
460 #############################################################################
461 #
462 # Webserver
463 #
464 # moves dokumentation to webserver
465 #
466 #############################################################################
467 webserver:
468         @$(ECHO) -------------------------------------------------------
469         @$(ECHO) You have run make dok/redhat-dok before, right?
470         @$(ECHO) Note that this command scps all stuff to the webserver,
471         @$(ECHO) it will not remove obsolete documents.
472         @$(ECHO) -------------------------------------------------------
473         chmod -R a+r doc/webserver
474         find doc/webserver -type d -exec chmod a+rx {} \;
475         cd doc/webserver && scp -Cr . ijbswa.sourceforge.net:/home/groups/i/ij/ijbswa/htdocs/
476
477 #############################################################################
478 # Source file dependencies
479 #############################################################################
480
481 actions.@OBJEXT@:   actions.c   actions.h   config.h $(PROJECT_H_DEPS) errlog.h jcc.h list.h loaders.h miscutil.h actionlist.h
482 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
483 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
484 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
485 deanimate.@OBJEXT@: deanimate.c deanimate.h config.h $(PROJECT_H_DEPS)
486 encode.@OBJEXT@:    encode.c    encode.h    config.h
487 errlog.@OBJEXT@:    errlog.c    errlog.h    config.h $(PROJECT_H_DEPS) @WIN_ONLY@w32log.h
488 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 
489 gateway.@OBJEXT@:   gateway.c   gateway.h   config.h $(PROJECT_H_DEPS) errlog.h jbsockets.h jcc.h loadcfg.h
490 jbsockets.@OBJEXT@: jbsockets.c jbsockets.h config.h $(PROJECT_H_DEPS) filters.h
491 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
492 killpopup.@OBJEXT@: killpopup.c killpopup.h config.h $(PROJECT_H_DEPS) jcc.h loadcfg.h
493 list.@OBJEXT@:      list.c      list.h      config.h $(PROJECT_H_DEPS) list.h miscutil.h
494 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
495 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
496 miscutil.@OBJEXT@:  miscutil.c  miscutil.h  config.h
497 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
498 ssplit.@OBJEXT@:    ssplit.c    ssplit.h    config.h miscutil.h
499 urlmatch.@OBJEXT@:  urlmatch.c  urlmatch.h  config.h $(PROJECT_H_DEPS) errlog.h miscutil.h ssplit.h
500
501 # GNU regex
502 gnu_regex.@OBJEXT@: gnu_regex.c gnu_regex.h config.h
503
504 # PCRS
505 pcrs.@OBJEXT@: pcrs.c pcre/pcre.h pcrs.h
506
507 # PCRE
508 pcre/get.@OBJEXT@:        pcre/get.c        pcre/config.h pcre/internal.h pcre/pcre.h
509 pcre/maketables.@OBJEXT@: pcre/maketables.c pcre/config.h pcre/internal.h pcre/pcre.h
510 pcre/pcre.@OBJEXT@:       pcre/pcre.c       pcre/config.h pcre/internal.h pcre/pcre.h pcre/chartables.c 
511 pcre/pcreposix.@OBJEXT@:  pcre/pcreposix.c  pcre/config.h pcre/internal.h pcre/pcre.h pcre/pcreposix.h
512 pcre/study.@OBJEXT@:      pcre/study.c      pcre/config.h pcre/internal.h pcre/pcre.h
513
514 # An auxiliary program makes the PCRE default character table source
515
516 pcre/chartables.c:   pcre/dftables@EXEEXT@
517                 pcre/dftables@EXEEXT@ >pcre/chartables.c
518
519 pcre/dftables@EXEEXT@:       pcre/dftables.c pcre/maketables.c pcre/pcre.h pcre/internal.h pcre/config.h
520                 $(CC) -o pcre/dftables@EXEEXT@ $(CFLAGS) pcre/dftables.c
521
522 # Win32
523 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
524 w32taskbar.@OBJEXT@: w32taskbar.c config.h w32log.h w32taskbar.h
525 win32.@OBJEXT@: win32.c config.h jcc.h loadcfg.h pcre/pcre.h pcre/pcreposix.h pcrs.h project.h w32log.h win32.h
526
527 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
528         windres -D__MINGW32__=0.2 -O coff -i $< -o $@
529
530 # AmigaOS
531 @AMIGAOS_ONLY@OBJS += amiga.o
532 @AMIGAOS_ONLY@CFLAGS += -D__AMIGAVERSION__=\"$(VERSION_MAJOR).$(VERSION_MINOR)$(VERSION_POINT)\" -D__AMIGADATE__=\"`date +%d.%m.%Y`\" -W -m68020 -noixemul -fbaserel -msmall-code
533 @AMIGAOS_ONLY@LDFLAGS += -m68020 -noixemul -fbaserel
534 @AMIGAOS_ONLY@LIBS = -lm /gg/lib/libb/libm020/libnix/swapstack.o
535 @AMIGAOS_ONLY@amiga.o: amiga.c amiga.h config.h
536
537
538 $(PROGRAM): $(OBJS) $(W32_FILES)
539         $(LD) $(LDFLAGS) -o $(PROGRAM) $(OBJS) $(LIBS)
540
541 clean:
542         $(RM) a.out core $(OBJS) $(W32_FILES) $(W32_INIS) $(PROGRAM) junkbuster
543
544 clobber: clean
545         $(RM) $(PROGRAM) cscope.* logfile *.pdb *.lib *.exp `find . -name tags` `find . -name TAGS` config.status config.h.in config.log junkbuster.log privoxy.log config.cache *~ *.tar.gz configure
546
547 tags: $(SRCS) $(HDRS)
548         etags $(SRCS) $(HDRS)
549
550 install: all
551         #
552         # FIXME: This is a dirty hack to have an install target
553         #        that works at least for some setups. This needs
554         #        to be fixed!
555         #
556         $(STRIP_PROG) $(PROGRAM)
557         $(INSTALL) $(PROGRAM) $(SBIN_DEST)
558         mkdir -p $(DEST)/user-manual
559         mkdir -p $(DEST)/templates
560         cp -r doc/webserver/user-manual $(DEST)
561         cp -r templates $(DEST)
562         $(INSTALL) config default.action default.filter trust $(DEST)
563         # FIXME $(ECHO) privoxy.logrotate privoxy.monthly privoxy.weekly
564         # FIXME: Need new manual! $(GZIP_PROG) -c privoxy.1 > $(MAN_DEST)/privoxy.1.gz
565         $(INSTALL) privoxy.init /etc/init.d/privoxy
566
567
568 #############################################################################
569
570 ## Local Variables:
571 ## tab-width: 3
572 ## end:
573
574 # $Log: GNUmakefile.in,v $
575 # Revision 1.33  2002/03/27 03:05:35  hal9
576 # Added man2html target for docs (redhat-dok only for now)
577 #
578 # Revision 1.32  2002/03/26 22:29:54  swa
579 # we have a new homepage!
580 #
581 # Revision 1.31  2002/03/26 14:00:18  swa
582 # fixed make tarball, tarball-dist, tarball-clean
583 #
584 # Revision 1.30  2002/03/25 12:52:25  swa
585 # new targets
586 #
587 # Revision 1.29  2002/03/24 17:03:55  jongfoster
588 # Name change
589 #
590 # Revision 1.28  2002/03/24 16:19:48  swa
591 # configure needs to be generated.
592 #
593 # Revision 1.27  2002/03/24 16:13:57  swa
594 # generated files are a nono in cvs
595 #
596 # Revision 1.26  2002/03/24 15:36:02  swa
597 # did not build.
598 #
599 # Revision 1.25  2002/03/24 14:31:08  swa
600 # remove more crappy files. set RPM
601 # release version correctly.
602 #
603 # Revision 1.24  2002/03/24 14:19:55  swa
604 # set rpm package release in configure.in. nowhere else.
605 #
606 # Revision 1.23  2002/03/24 13:06:49  swa
607 # suse-clean now runs fine
608 #
609 # Revision 1.22  2002/03/24 12:56:21  swa
610 # name change related issues.
611 #
612 # Revision 1.21  2002/03/24 12:43:57  swa
613 # name change
614 #
615 # Revision 1.20  2002/03/24 11:39:17  jongfoster
616 # Renaming config files
617 #
618 # Revision 1.19  2002/03/22 20:53:03  morcego
619 # - Ongoing process to change name to JunkbusterNG
620 # - configure/configure.in: no change needed
621 # - GNUmakefile.in:
622 #         - TAR_ARCH = /tmp/JunkbusterNG-$(RPM_VERSION).tar.gz
623 #         - PROGRAM    = jbng@EXEEXT@
624 #         - rh-spec now references as junkbusterng-rh.spec
625 #         - redhat-upload: references changed to junkbusterng-* (package names)
626 #         - tarball-dist: references changed to JunkbusterNG-distribution-*
627 #         - tarball-src: now JunkbusterNG-*
628 #         - install: initscript now junkbusterng.init and junkbusterng (when
629 #                    installed)
630 # - junkbuster-rh.spec: renamed to junkbusterng-rh.spec
631 # - junkbusterng.spec:
632 #         - References to the expression ijb where changed where possible
633 #         - New package name: junkbusterng (all in lower case, acording to
634 #           the LSB recomendation)
635 #         - Version changed to: 2.9.13
636 #         - Release: 1
637 #         - Added: junkbuster to obsoletes and conflicts (Not sure this is
638 #           right. If it obsoletes, why conflict ? Have to check it later)
639 #         - Summary changed: Stefan, please check and aprove it
640 #         - Changes description to use the new name
641 #         - Sed string was NOT changed. Have to wait to the manpage to
642 #           change first
643 #         - Keeping the user junkbuster for now. It will require some aditional
644 #           changes on the script (scheduled for the next specfile release)
645 #         - Added post entry to move the old logfile to the new log directory
646 #         - Removing "chkconfig --add" entry (not good to have it automaticaly
647 #           added to the startup list).
648 #         - Added preun section to stop the service with the old name, as well
649 #           as remove it from the startup list
650 #         - Removed the chkconfig --del entry from the conditional block on
651 #           the preun scriptlet (now handled on the %files section)
652 # - junkbuster.init: renamed to junkbusterng.init
653 # - junkbusterng.init:
654 #         - Changed JB_BIN to jbng
655 #         - Created JB_OBIN with the old value of JB_BIN (junkbuster), to
656 #           be used where necessary (config dir)
657 #
658 # Aditional notes:
659 # - The config directory is /etc/junkbuster yet. Have to change it on the
660 # specfile, after it is changes on the code
661 # - The only files that got renamed on the cvs tree were the rh specfile and
662 # the init file. Some file references got changes on the makefile and on the
663 # rh-spec (as listed above)
664 #
665 # Revision 1.18  2002/03/21 23:00:00  swa
666 # want to autogenerate stuff.
667 #
668 # Revision 1.17  2002/03/19 19:30:04  morcego
669 # - Fixing stylesheet checking on configure. If it is found, no further checks
670 #   should be done
671 #
672 # - configure will now check for db2html or docbook2html (should work now
673 #   on SuSe without the docbktls package)
674 #
675 # Revision 1.16  2002/03/14 22:32:32  hal9
676 # Bumped the RPM version.
677 #
678 # Revision 1.15  2002/03/08 20:00:28  swa
679 # some leftovers.
680 #
681 # Revision 1.14  2002/03/07 18:25:56  swa
682 # synced redhat and suse build process
683 #
684 # Revision 1.13  2002/03/07 17:17:56  oes
685 # (Hopefully) fixed for older make versions
686 #
687 # Revision 1.12  2002/03/07 15:28:27  swa
688 # more informative
689 #
690 # Revision 1.11  2002/03/06 14:33:18  sarantis
691 # Use proper temp file, not "abc".
692 #
693 # Revision 1.10  2002/03/06 14:19:35  sarantis
694 # Cleanup PID_FILE_PATH from redhat-dist target
695 #
696 # Revision 1.9  2002/03/05 17:31:11  morcego
697 # Search for docbook.dsl. Should solve portability problems for SuSe.
698 #
699 # Revision 1.8  2002/03/05 14:07:42  morcego
700 # configure now detects rpm topdir, and change GNUmakefile acordingly
701 #    (based on sugestion by Sarantis Paskalis)
702 #
703 # Revision 1.7  2002/03/05 13:43:28  morcego
704 # Checking for text browser, so redhat-dok can work.
705 #
706 # Revision 1.6  2002/03/05 13:10:51  morcego
707 # Changes to implement redhat-dok (Hal Burgiss)
708 # Changes to make it work on other distros and out-of-the-shelf configurations
709 #
710 # Revision 1.5  2002/02/27 15:30:39  hal9
711 # Reset $(RPM_PACKAGEV) to 1 (was 2)
712 #
713 # Revision 1.4  2002/01/17 21:44:04  jongfoster
714 # Adding urlmatch.[ch]
715 #
716 # Revision 1.3  2002/01/04 15:26:08  oes
717 # Added tarball-src target
718 #
719 # Revision 1.2  2001/12/30 14:07:31  steudten
720 # - Add signal handling (unix)
721 # - Add SIGHUP handler (unix)
722 # - Add creation of pidfile (unix)
723 # - Add action 'top' in rc file (RH)
724 # - Add entry 'SIGNALS' to manpage
725 # - Add exit message to logfile (unix)
726 #
727 # Revision 1.1  2001/12/01 11:22:57  jongfoster
728 # Renaming Makefile.in to GNUmakefile.in so that non-GNU versions of
729 # make break in a more obvious way.
730 # Adding .PHONY section.
731 #
732 # Revision 1.40  2001/12/01 00:24:11  jongfoster
733 # Renaming various config files
734 # Fixing CR->CRLF under Win32 (I hope)
735 #
736 # Revision 1.39  2001/11/06 12:07:30  steudten
737 # Add --clean for building rpm in target redhat-dist.
738 #
739 # Revision 1.38  2001/11/05 21:35:23  steudten
740 # Complete rewrite for the 'redhat-dist' target.
741 # Checks for writeable RPM build directories for calling user.
742 # So you must not be root, just set the modes to 1777 to
743 # build a RH package.
744 # Fix the upload-target to be arch independant.
745 # Add target for 'solaris-dist' - coming soon.
746 #
747 # Revision 1.37  2001/11/01 00:52:04  hal9
748 # Redhat-upload stuff per Stefan.
749 #
750 # Revision 1.36  2001/10/31 19:26:13  swa
751 # automate process of uploading new releases
752 # to sf.
753 #
754 # Revision 1.35  2001/10/15 22:14:59  joergs
755 # Removed -O2 and -Wall from AmigaOS-only CFLAGS since they are now in
756 #  the general CFLAGS already.
757 #
758 # Revision 1.34  2001/10/15 18:28:06  steudten
759 # remove config.cache for target clobber.
760 # Cleanup make dist for RH and S.u.S.E.
761 #
762 # Revision 1.33  2001/10/10 12:43:33  oes
763 # Added ugly hack to make install target work at least for some setups.
764 #
765 # Revision 1.32  2001/10/09 22:38:19  jongfoster
766 # Correcting actionsfile filename for Win32 INI build
767 #
768 # Revision 1.31  2001/09/23 10:13:48  swa
769 # upload process established. run make webserver and
770 # the documentation is moved to the webserver. documents
771 # are now linked correctly.
772 #
773 # Revision 1.30  2001/09/19 17:55:49  oes
774 # Fixed CFLAGS
775 #
776 # Revision 1.29  2001/09/16 17:34:27  jongfoster
777 # Removing showargs.[ch], adding cgi(simple|edit).[ch]
778 # Replacing $(OBJEXT) with @OBJEXT@ - this seems to be a common source
779 # of build problems.
780 #
781 # Revision 1.28  2001/09/13 15:19:08  swa
782 # we want text files as well.
783 #
784 # Revision 1.27  2001/09/13 13:11:37  steudten
785 #
786 # Replace DEBUG_CFLAGS with OTHER_CFLAGS
787 #
788 # Revision 1.26  2001/09/12 23:44:54  david__schmidt
789 # Mac OSX (Darwin) support added.
790 #
791 # Revision 1.25  2001/09/12 22:55:45  joergs
792 # AmigaOS support added.
793 #
794 # Revision 1.24  2001/09/12 17:28:59  david__schmidt
795 #
796 # OS/2 port: update autoconf'd support for the platform.
797 #
798 # Revision 1.23  2001/09/12 16:28:42  swa
799 # added "make dok" section to generate html pages from
800 # the sgml source documents. note that the we do not want
801 # generated stuff in cvs.
802 #
803 # Revision 1.22  2001/09/10 16:31:23  swa
804 # buildroot definition in the specfile fucks up the build
805 # process under suse. hence I moved it to the "rpm -ta"
806 # command
807 #
808 # Revision 1.21  2001/09/10 11:12:49  oes
809 # Turning on -Wall
810 #
811 # Revision 1.20  2001/08/02 22:04:29  jongfoster
812 # Removing some remaining references to obsolete w32rulesdlg.[ch]
813 #
814 # Revision 1.19  2001/07/30 22:14:03  jongfoster
815 # Removing obsolete w32rulesdlg.c and w32rulesdlg.h
816 #
817 # Revision 1.18  2001/07/29 17:09:17  jongfoster
818 # Major changes to build system in order to fix these bugs:
819 # - pthreads under Linux was broken - changed -lpthread to -pthread
820 # - Compiling in MinGW32 mode under CygWin now correctly detects
821 #   which shared libraries are available
822 # - Solaris support (?) (Not tested under Solaris yet)
823 #
824 # Revision 1.17  2001/07/28 16:44:54  oes
825 # Fixed sed LF->CRLF conversion and removed deprecated files
826 #
827 # Revision 1.16  2001/07/15 19:45:33  jongfoster
828 # Added support for linking with POSIX threads library
829 #
830 # Revision 1.15  2001/07/13 13:48:07  oes
831 #  - Moved STATIC #define for pcre to (ac)config.h
832 #  - Made -Ipcre depandant on static pcre compilation to
833 #    avoid version conflicts
834 #  - Included compilation and depandancies for new deanimate.c
835 #  - Made changes to the pcre/pcreposix/pcrs build process
836 #    as required by the new library autodetection in
837 #    configure.in
838 #
839 # Revision 1.14  2001/07/01 16:27:44  oes
840 # Fixed misplaced dependancy
841 #
842 # Revision 1.13  2001/06/29 13:18:36  oes
843 # - added depandancy of filters.o on cgi.h
844 #
845 # Revision 1.12  2001/06/12 17:15:56  swa
846 # fixes, because a clean build on rh6.1 was impossible.
847 # GZIP confuses make, %configure confuses rpm, etc.
848 #
849 # Revision 1.11  2001/06/11 11:26:35  sarantis
850 # RPM version should be the same as ijbswa version.  The rpm release is
851 # specified in the specfile.
852 #
853 # Revision 1.10  2001/06/07 17:27:45  swa
854 # added suse build section
855 #
856 # Revision 1.9  2001/06/04 18:31:58  swa
857 # files are now prefixed with either `confdir' or `logdir'.
858 # `make redhat-dist' replaces both entries confdir and logdir
859 # with redhat values
860 #
861 # Revision 1.8  2001/06/04 10:44:57  swa
862 # `make redhatr-dist' now works. Except for the paths
863 # in the config file.
864 #
865 # Revision 1.7  2001/06/03 17:09:09  swa
866 # swa for oes: reversed my earlier change
867 #
868 # Revision 1.6  2001/06/03 17:07:27  swa
869 # swa for oes
870 #
871 # Revision 1.5  2001/06/03 13:57:26  swa
872 # compile cgi.c (for andreas' GUI)
873 #
874 # Revision 1.4  2001/05/31 21:18:45  jongfoster
875 # Added files actions.[ch], actionlist.h, list.[ch] to Makefile
876 #
877 # Revision 1.3  2001/05/29 20:02:48  joergs
878 # Changes for AmigaOS added.
879 #
880 # Revision 1.2  2001/05/17 22:23:23  oes
881 #  - Added auto-generation of CRLFs for Win32 config files
882 #  - Added comment-prefix to all Win32-only options in the config file
883 #    and provided auto stripping of this prefix for the Win32 platform by make
884 #
885 # Revision 1.1.1.1  2001/05/15 13:59:00  oes
886 # Initial import of version 2.9.3 source tree
887 #
888 #