Stacksize of main thread increased.
[privoxy.git] / Makefile.in
1 # Note:  Makefile is built automatically from Makefile.in
2 #
3 # $Id: Makefile.in,v 1.23 2001/09/12 16:28:42 swa Exp $
4 #
5 # Written by and Copyright (C) 2001 the SourceForge
6 # IJBSWA team.  http://ijbswa.sourceforge.net
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 # $Log: Makefile.in,v $
31 # Revision 1.23  2001/09/12 16:28:42  swa
32 # added "make dok" section to generate html pages from
33 # the sgml source documents. note that the we do not want
34 # generated stuff in cvs.
35 #
36 # Revision 1.22  2001/09/10 16:31:23  swa
37 # buildroot definition in the specfile fucks up the build
38 # process under suse. hence I moved it to the "rpm -ta"
39 # command
40 #
41 # Revision 1.21  2001/09/10 11:12:49  oes
42 # Turning on -Wall
43 #
44 # Revision 1.20  2001/08/02 22:04:29  jongfoster
45 # Removing some remaining references to obsolete w32rulesdlg.[ch]
46 #
47 # Revision 1.19  2001/07/30 22:14:03  jongfoster
48 # Removing obsolete w32rulesdlg.c and w32rulesdlg.h
49 #
50 # Revision 1.18  2001/07/29 17:09:17  jongfoster
51 # Major changes to build system in order to fix these bugs:
52 # - pthreads under Linux was broken - changed -lpthread to -pthread
53 # - Compiling in MinGW32 mode under CygWin now correctly detects
54 #   which shared libraries are available
55 # - Solaris support (?) (Not tested under Solaris yet)
56 #
57 # Revision 1.17  2001/07/28 16:44:54  oes
58 # Fixed sed LF->CRLF conversion and removed deprecated files
59 #
60 # Revision 1.16  2001/07/15 19:45:33  jongfoster
61 # Added support for linking with POSIX threads library
62 #
63 # Revision 1.15  2001/07/13 13:48:07  oes
64 #  - Moved STATIC #define for pcre to (ac)config.h
65 #  - Made -Ipcre depandant on static pcre compilation to
66 #    avoid version conflicts
67 #  - Included compilation and depandancies for new deanimate.c
68 #  - Made changes to the pcre/pcreposix/pcrs build process
69 #    as required by the new library autodetection in
70 #    configure.in
71 #
72 # Revision 1.14  2001/07/01 16:27:44  oes
73 # Fixed misplaced dependancy
74 #
75 # Revision 1.13  2001/06/29 13:18:36  oes
76 # - added depandancy of filters.o on cgi.h
77 #
78 # Revision 1.12  2001/06/12 17:15:56  swa
79 # fixes, because a clean build on rh6.1 was impossible.
80 # GZIP confuses make, %configure confuses rpm, etc.
81 #
82 # Revision 1.11  2001/06/11 11:26:35  sarantis
83 # RPM version should be the same as ijbswa version.  The rpm release is
84 # specified in the specfile.
85 #
86 # Revision 1.10  2001/06/07 17:27:45  swa
87 # added suse build section
88 #
89 # Revision 1.9  2001/06/04 18:31:58  swa
90 # files are now prefixed with either `confdir' or `logdir'.
91 # `make redhat-dist' replaces both entries confdir and logdir
92 # with redhat values
93 #
94 # Revision 1.8  2001/06/04 10:44:57  swa
95 # `make redhatr-dist' now works. Except for the paths
96 # in the config file.
97 #
98 # Revision 1.7  2001/06/03 17:09:09  swa
99 # swa for oes: reversed my earlier change
100 #
101 # Revision 1.6  2001/06/03 17:07:27  swa
102 # swa for oes
103 #
104 # Revision 1.5  2001/06/03 13:57:26  swa
105 # compile cgi.c (for andreas' GUI)
106 #
107 # Revision 1.4  2001/05/31 21:18:45  jongfoster
108 # Added files actions.[ch], actionlist.h, list.[ch] to Makefile
109 #
110 # Revision 1.3  2001/05/29 20:02:48  joergs
111 # Changes for AmigaOS added.
112 #
113 # Revision 1.2  2001/05/17 22:23:23  oes
114 #  - Added auto-generation of CRLFs for Win32 config files
115 #  - Added comment-prefix to all Win32-only options in the config file
116 #    and provided auto stripping of this prefix for the Win32 platform by make
117 #
118 # Revision 1.1.1.1  2001/05/15 13:59:00  oes
119 # Initial import of version 2.9.3 source tree
120 #
121 #
122
123
124 #############################################################################
125 # Version number (for RPM)
126 #############################################################################
127
128 VERSION_MAJOR = @VERSION_MAJOR@
129 VERSION_MINOR = @VERSION_MINOR@
130 VERSION_POINT = @VERSION_POINT@
131 VERSION       = $(VERSION_MAJOR).$(VERSION_MINOR).$(VERSION_POINT)
132 # will automatically be postfixed with -$(RPM_PACKAGEV) in the SPECfile
133 RPM_VERSION   = $(VERSION)
134 RPM_PACKAGEV  = 1
135
136
137 #############################################################################
138 # Directories for "make install"
139 #############################################################################
140
141 DEST        = /etc/junkbuster
142 SBIN_DEST   = @sbindir@
143 MAN_DEST    = @mandir@
144
145
146 #############################################################################
147 # Build tools
148 #############################################################################
149
150 PROGRAM    = junkbuster@EXEEXT@
151 CC         = @CC@
152 ECHO       = echo
153 GZIP_PROG  = gzip
154 INSTALL    = cp -f
155 LD         = gcc
156 OBJEXT     = @OBJEXT@
157 RM         = rm -f
158 STRIP_PROG = strip
159
160
161 #############################################################################
162 # Filenames and libraries
163 #############################################################################
164
165 C_SRC  = actions.c encode.c errlog.c filters.c gateway.c jbsockets.c \
166          jcc.c killpopup.c list.c loadcfg.c loaders.c miscutil.c \
167          parsers.c showargs.c ssplit.c cgi.c deanimate.c
168          
169 C_OBJS = $(C_SRC:.c=.$(OBJEXT))
170 C_HDRS = $(C_SRC:.c=.h) project.h actionlist.h
171
172 W32_SRC   = @WIN_ONLY@w32log.c w32taskbar.c win32.c
173 W32_FILES = @WIN_ONLY@w32.res
174 W32_OBJS  = @WIN_ONLY@$(W32_SRC:.c=.$(OBJEXT)) $(W32_FILES)
175 W32_HDRS  = @WIN_ONLY@w32log.h w32taskbar.h win32.h w32res.h
176 W32_LIB   = @WIN_ONLY@-lwsock32 -lcomctl32
177 W32_INIS  = @WIN_ONLY@junkbstr.txt sactions.txt strust.txt sregexp.txt
178
179 PCRS_SRC     = @STATIC_PCRS_ONLY@pcrs.c
180 PCRS_OBJS    = @STATIC_PCRS_ONLY@$(PCRS_SRC:.c=.$(OBJEXT))
181 PCRS_HDRS    = @STATIC_PCRS_ONLY@$(PCRS_SRC:.c=.h)
182
183 PCRE_SRC     = @STATIC_PCRE_ONLY@pcre/get.c pcre/maketables.c pcre/study.c pcre/pcre.c
184 PCRE_OBJS    = @STATIC_PCRE_ONLY@$(PCRE_SRC:.c=.$(OBJEXT))
185 PCRE_HDRS    = @STATIC_PCRE_ONLY@pcre/config.h pcre/chartables.c pcre/internal.h pcre/pcre.h
186
187 # No REGEX (Either because dynamically linked pcreposix, or no regex at all):
188 REGEX_SRC    =
189 # GNU REGEX:
190 @GNU_REGEX_ONLY@REGEX_SRC    = gnu_regex.c
191 # PCRE REGEX:
192 @PCRE_REGEX_ONLY@@STATIC_PCRE_ONLY@REGEX_SRC = pcre/pcreposix.c
193
194 REGEX_OBJS   = $(REGEX_SRC:.c=.$(OBJEXT))
195 REGEX_HDRS   = $(REGEX_SRC:.c=.h)
196
197 # Dependencies introduced by #include "project.h".
198 PROJECT_H_DEPS = project.h $(REGEX_HDRS) $(PCRS_HDRS) @STATIC_PCRE_ONLY@pcre/pcre.h
199
200 # Socket libraries for platforms that need them explicitly defined
201 SOCKET_LIB   = @SOCKET_LIB@
202
203 # PThreads library, if needed.
204 PTHREAD_LIB  = @PTHREAD_ONLY@@PTHREAD_LIB@
205
206 SRCS         = $(C_SRC)  $(W32_SRC)  $(PCRS_SRC)  $(PCRE_SRC)  $(REGEX_SRC)
207 OBJS         = $(C_OBJS) $(W32_OBJS) $(PCRS_OBJS) $(PCRE_OBJS) $(REGEX_OBJS)
208 HDRS         = $(C_HDRS) $(W32_HDRS) $(PCRS_HDRS) $(PCRE_OBJS) $(REGEX_HDRS)
209 LIBS         = @LIBS@ $(W32_LIB) $(SOCKET_LIB) $(PTHREAD_LIB)
210
211
212 #############################################################################
213 # Compiler switches
214 #############################################################################
215
216 # The flag "-mno-win32" can be used by Cygwin to emulate a un?x type build.
217 # The flag "-mwindows -mno-cygwin" will cause Cygwin to use MingW32 for a
218 # Win32 GUI build.
219 # The flag "-pthread" is required if using Pthreads under Linux (and
220 # possibly other OSs).
221 SPECIAL_CFLAGS = @SPECIAL_CFLAGS@
222
223 # Either/Or of these next two lines
224 #DEBUG_CFLAGS = -g  # Debug build
225 DEBUG_CFLAGS  = -O3 # Full optimization
226
227 CFLAGS = @CFLAGS@ @CPPFLAGS@ $(DEBUG_CFLAGS) $(SPECIAL_CFLAGS) \
228          @STATIC_PCRE_ONLY@ -Ipcre -Wall
229
230 LDFLAGS = $(DEBUG_CFLAGS) $(SPECIAL_CFLAGS)
231
232
233 #############################################################################
234 # Build section.
235 #
236 # There should NOT be any targets above this line.
237 #############################################################################
238 all: $(PROGRAM)
239
240
241 #############################################################################
242 # Define this explicitly because Solaris is broken!
243 #############################################################################
244 %.o: %.c
245         $(CC) -c $(CFLAGS) $(CPPFLAGS) $< -o $@
246
247
248 #############################################################################
249 # Win32 config files
250 #############################################################################
251
252 %.txt:
253         sed -e $$'s,$$,\r,' < $< > $@ 
254
255 inifiles: $(W32_INIS)
256
257 junkbstr.txt: config
258         sed     -e 's!\actionsfile!sactions.txt!' \
259                         -e 's!\trust!strust.txt!' \
260                         -e 's!\jarfile!jar.log!' \
261                         -e 's!\logfile!junkbstr.log!' \
262                         -e 's!\re_filterfile!sregexp.txt!' \
263                         -e $$'s,$$,\r,' \
264                         -e 's!#Win32-only: !!' \
265         < $< > $@
266
267 sactions.txt: actionslist
268 strust.txt: trust
269 sregexp.txt: re_filterfile
270
271
272 #############################################################################
273 # redhat distribution
274 #############################################################################
275
276 redhat-dist:
277         @make clobber
278 # verify that i'm root needs to be done
279         rm -f ../ijbswa.tar.gz
280 # verify all version strings, FLAGS, etc. in the spec file
281         cat junkbuster-rh.spec | sed 's/^Version:.*/Version: $(RPM_VERSION)/g' | sed 's/^Release:.*/Release: $(RPM_PACKAGEV)/g' > /tmp/abc && cp -f /tmp/abc junkbuster-rh.spec
282         tar --exclude "CVS" --exclude "junkbuster-suse.spec" -cvzf ../ijbswa.tar.gz .
283 # verify all files in their correct location needs to be done
284         cd .. && rpm -ta ijbswa.tar.gz
285
286
287 #############################################################################
288 # suse distribution (need to be root to build)
289 #############################################################################
290
291 suse-dist:
292         @make clobber
293 # verify that i'm root needs to be done
294         rm -f ../ijbswa.tar.gz
295 # verify all version strings, FLAGS, etc. in the spec file
296         cat junkbuster-suse.spec | sed 's/^Version:.*/Version: $(RPM_VERSION)/g' | sed 's/^Release:.*/Release: $(RPM_PACKAGEV)/g' > /tmp/abc && cp -f /tmp/abc junkbuster-suse.spec
297         tar --exclude "CVS" --exclude "junkbuster-rh.spec" -cvzf ../ijbswa.tar.gz .
298 # verify all files in their correct location needs to be done
299 # never use buildroot to define the location inside the spec
300 # file or suse will fuck up the build process.
301         cd .. && rpm -ta --buildroot /tmp/xxx ijbswa.tar.gz
302
303 # handle with care. use with root.
304 suse-clean:
305         rpm -e junkbuster
306         rm -rf /etc/junkbuster
307         rm -rf /var/log/junkbuster
308         rm -f /etc/init.d/junkbuster
309         rm -f /usr/sbin/junkbuster
310         rm -f /usr/sbin/rcjunkbuster
311         rm -f /usr/share/man/man1/junkbuster.1.gz
312
313 #############################################################################
314 # Windows distribution
315 #############################################################################
316 win-dist:
317         $(ECHO) Not implemented.
318
319
320 #############################################################################
321 # Tarball distribution
322 #############################################################################
323 tarball-dist:
324         @make clean
325         make $(PROGRAM) 
326 #       remove all objects and create the tarball with the binary
327         cd .. && $(RM) ijb/a.out ijb/core ijb/*.$(OBJEXT) && tar --exclude "ijb/CVS" -cvzf ../ijb-distribution-$(VERSION).tar.gz ijb/
328         chmod a+r ../../ijb-distribution-$(VERSION).tar.gz
329         @$(ECHO) Tarball with binary created.
330
331 #############################################################################
332 #
333 # Documentation
334 #
335 # converts doc/source/*.sgml into html, text and man pages
336 #
337 #############################################################################
338 dok:
339         mkdir -p doc/text doc/man
340 #  user manual
341         rm -rf doc/webserver/user-manual
342         cd doc/source && db2html -s ldp.dsl user-manual.sgml && mv user-manual ../webserver
343 #  developer manual
344         rm -rf doc/webserver/developer-manual
345         cd doc/source && db2html -s ldp.dsl developer-manual.sgml && mv developer-manual ../webserver
346 #  faq
347         rm -rf doc/webserver/faq
348         cd doc/source && db2html -s ldp.dsl faq.sgml && mv faq ../webserver
349
350 #############################################################################
351 # Source file dependencies
352 #############################################################################
353
354 actions.@OBJEXT@:   actions.c   actions.h   config.h $(PROJECT_H_DEPS) errlog.h jcc.h list.h loaders.h miscutil.h actionlist.h
355 encode.@OBJEXT@:    encode.c    encode.h    config.h
356 errlog.@OBJEXT@:    errlog.c    errlog.h    config.h $(PROJECT_H_DEPS) @WIN_ONLY@w32log.h
357 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 showargs.h ssplit.h cgi.h deanimate.h @WIN_ONLY@win32.h 
358 gateway.@OBJEXT@:   gateway.c   gateway.h   config.h $(PROJECT_H_DEPS) errlog.h jbsockets.h jcc.h loadcfg.h
359 jbsockets.@OBJEXT@: jbsockets.c jbsockets.h config.h $(PROJECT_H_DEPS) filters.h
360 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 showargs.h @WIN_ONLY@w32log.h win32.h cgi.h
361 killpopup.@OBJEXT@: killpopup.c killpopup.h config.h $(PROJECT_H_DEPS) jcc.h loadcfg.h
362 list.@OBJEXT@:      list.c      list.h      config.h $(PROJECT_H_DEPS) list.h miscutil.h
363 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 showargs.h @WIN_ONLY@w32log.h win32.h
364 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
365 miscutil.@OBJEXT@:  miscutil.c  miscutil.h  config.h
366 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 showargs.h ssplit.h
367 showargs.@OBJEXT@:  showargs.c  showargs.h  config.h $(PROJECT_H_DEPS) errlog.h encode.h gateway.h jcc.h loadcfg.h miscutil.h parsers.h
368 ssplit.@OBJEXT@:    ssplit.c    ssplit.h    config.h miscutil.h
369 cgi.@OBJEXT@:       cgi.c       cgi.h       config.h $(PROJECT_H_DEPS) list.h pcrs.h encode.h ssplit.h jcc.h filters.h actions.h errlog.h miscutil.h
370 deanimate.@OBJEXT@: deanimate.c deanimate.h config.h $(PROJECT_H_DEPS)
371
372 # GNU regex
373 gnu_regex.@OBJEXT@: gnu_regex.c gnu_regex.h config.h
374
375 # PCRS
376 pcrs.@OBJEXT@: pcrs.c pcre/pcre.h pcrs.h
377
378 # PCRE
379 pcre/get.@OBJEXT@:        pcre/get.c        pcre/config.h pcre/internal.h pcre/pcre.h
380 pcre/maketables.@OBJEXT@: pcre/maketables.c pcre/config.h pcre/internal.h pcre/pcre.h
381 pcre/pcre.@OBJEXT@:       pcre/pcre.c       pcre/config.h pcre/internal.h pcre/pcre.h pcre/chartables.c 
382 pcre/pcreposix.@OBJEXT@:  pcre/pcreposix.c  pcre/config.h pcre/internal.h pcre/pcre.h pcre/pcreposix.h
383 pcre/study.@OBJEXT@:      pcre/study.c      pcre/config.h pcre/internal.h pcre/pcre.h
384
385 # An auxiliary program makes the PCRE default character table source
386
387 pcre/chartables.c:   pcre/dftables@EXEEXT@
388                 pcre/dftables@EXEEXT@ >pcre/chartables.c
389
390 pcre/dftables@EXEEXT@:       pcre/dftables.c pcre/maketables.c pcre/pcre.h pcre/internal.h pcre/config.h
391                 $(CC) -o pcre/dftables@EXEEXT@ $(CFLAGS) pcre/dftables.c
392
393 # Win32
394 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
395 w32taskbar.@OBJEXT@: w32taskbar.c config.h w32log.h w32taskbar.h
396 win32.@OBJEXT@: win32.c config.h jcc.h loadcfg.h pcre/pcre.h pcre/pcreposix.h pcrs.h project.h w32log.h win32.h
397
398 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/junkbust.ico config.h
399         windres -D__MINGW32__=0.2 -O coff -i $< -o $@
400
401 ## AmigaOS, GCC 2.95.1 (or lower, 2.95.3 does NOT work!)
402 #ifeq ($(shell $(CC) $(CFLAGS) -dumpmachine), m68k-amigaos)
403 #OBJS += amiga.o
404 #CFLAGS += -D__AMIGAVERSION__=\"$(VERSION_MAJOR).$(VERSION_MINOR)$(VERSION_POINT)\" -D__AMIGADATE__=\"`date +%d.%m.%Y`\" -W -Wall -m68020 -Os -noixemul -fbaserel -msmall-code
405 #LDFLAGS += -m68020 -noixemul -fbaserel
406 #LIBS = -lm /gg/lib/libb/libm020/libnix/swapstack.o
407 #amiga.o: amiga.c amiga.h config.h
408 #endif
409 #
410
411 $(PROGRAM): $(OBJS) $(W32_FILES)
412         $(LD) $(LDFLAGS) -o $(PROGRAM) $(OBJS) $(LIBS)
413
414 clean:
415         $(RM) a.out core $(OBJS) $(W32_FILES) $(W32_INIS)
416
417 clobber: clean
418         $(RM) $(PROGRAM) *.pdb *.lib *.exp TAGS junkbuster.log
419
420 tags: $(SRCS) $(HDRS)
421         etags $(SRCS) $(HDRS)
422
423 install: all
424         $(STRIP_PROG) $(PROGRAM)
425         $(INSTALL) $(PROGRAM) $(SBIN_DEST)
426         $(INSTALL) README README.TOO README.WIN README.re_filter README.cygwin $(DEST)
427         $(INSTALL) aclfile blocklist config cookiefile forward imagelist \
428                 popup re_filterfile trust $(DEST)
429         # FIXME: On SuSE, these are not found.  Where do they go?
430         $(ECHO) junkbuster.logrotate junkbuster.monthly junkbuster.weekly
431         $(GZIP_PROG) -c junkbuster.1 > $(MAN_DEST)/junkbuster.1.gz
432         $(INSTALL) junkbuster.init /sbin/init.d/junkbuster
433
434
435 #############################################################################
436
437 ## Local Variables:
438 ## tab-width: 3
439 ## end: