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