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