Moved functions to process the action list into this new file.
[privoxy.git] / Makefile.in
1 # Note:  Makefile is built automatically from Makefile.in
2 #
3 # $Id: Makefile.in,v 1.2 2001/05/17 22:23:23 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.2  2001/05/17 22:23:23  oes
32 #  - Added auto-generation of CRLFs for Win32 config files
33 #  - Added comment-prefix to all Win32-only options in the config file
34 #    and provided auto stripping of this prefix for the Win32 platform by make
35 #
36 # Revision 1.1.1.1  2001/05/15 13:59:00  oes
37 # Initial import of version 2.9.3 source tree
38 #
39 #
40
41
42 # define version (will be wired into the rpm.)
43 VERSION_MAJOR = @VERSION_MAJOR@
44 VERSION_MINOR = @VERSION_MINOR@
45 VERSION_POINT = @VERSION_POINT@
46 VERSION       = $(VERSION_MAJOR).$(VERSION_MINOR).$(VERSION_POINT)
47 RPM_VERSION   = $(VERSION)
48
49 # The version is currently specified in config.h, which is
50 # written by "configure".
51 #
52 #VERSION_CFLAGS = -DVERSION_MAJOR=$(VERSION_MAJOR) \
53 #                 -DVERSION_MINOR=$(VERSION_MINOR) \
54 #                 -DVERSION_POINT=$(VERSION_POINT) \
55 #                 -DVERSION="$(VERSION)"
56
57 # Directories for "make install"
58 DEST        = /etc/junkbuster
59 SBIN_DEST   = @sbindir@
60 MAN_DEST    = @mandir@
61
62 # The flag "-mno-win32" can be used by Cygwin to emulate a un?x type install.
63 # The flag "-mwindows -mno-cygwin" will cause Cygwin to use MingW32 for Win32 install.
64 CYGWIN_FLAGS = @CYGWIN_FLAGS@
65
66 # Need to define this in order to link PCRE statically under Win32
67 # Also define under UNIX to use system PCRE headers.
68 PCRE_WIN_FLAGS = @STATIC_PCRE_ONLY@-DSTATIC
69
70 # Either/Or of these next two lines
71 #DEBUG_CFLAGS = -g
72 DEBUG_CFLAGS  = -O3
73
74 # Solaris needs a special define:
75 # FIXME: This is always commented out
76 SOLARIS_FLAGS = @SOLARIS_ONLY@-D__EXTENSIONS__=1
77
78 #  -DSTDC_HEADERS Now in config.h
79 # Do we need  -DHAVE_STRING  ???
80 CFLAGS = @CFLAGS@ @CPPFLAGS@ \
81          -D__MT__=1 -D__STDC__=1 $(SOLARIS_FLAGS) -DHAVE_STRING $(DEBUG_CFLAGS) \
82          -Ipcre $(CYGWIN_FLAGS) $(PCRE_WIN_FLAGS)
83
84 PROGRAM = junkbuster@EXEEXT@
85 CC      = gcc
86 ECHO    = echo
87 GZIP    = gzip
88 INSTALL = cp -f
89 LD      = gcc
90 OBJEXT  = @OBJEXT@
91 RM      = rm -f
92 STRIP   = strip
93
94 C_SRC  = encode.c errlog.c filters.c gateway.c jbsockets.c jcc.c \
95          killpopup.c loadcfg.c loaders.c miscutil.c parsers.c \
96          showargs.c ssplit.c
97          
98 C_OBJS = $(C_SRC:.c=.$(OBJEXT))
99 C_HDRS = $(C_SRC:.c=.h) project.h
100
101 W32_SRC   = @WIN_ONLY@w32log.c w32rulesdlg.c w32taskbar.c win32.c
102 W32_FILES = @WIN_ONLY@w32.res
103 W32_OBJS  = @WIN_ONLY@$(W32_SRC:.c=.$(OBJEXT)) $(W32_FILES)
104 W32_HDRS  = @WIN_ONLY@w32log.h w32res.h w32rulesdlg.h w32taskbar.h
105 W32_LIB   = @WIN_ONLY@-lwsock32 -lcomctl32
106 W32_INIS  = @WIN_ONLY@junkbstr.txt saclfile.txt sblock.txt scookie.txt  \
107             @WIN_ONLY@sforward.txt simage.txt spopup.txt strust.txt sregexp.txt
108
109 PCRS_SRC     = @PCRS_ONLY@pcrs.c
110 PCRS_OBJS    = $(PCRS_SRC:.c=.$(OBJEXT))
111 PCRS_HDRS    = $(PCRS_SRC:.c=.h)
112
113 PCRE_SRC     = @STATIC_PCRE_ONLY@pcre/get.c pcre/maketables.c pcre/study.c pcre/pcre.c
114 PCRE_OBJS    = @STATIC_PCRE_ONLY@$(PCRE_SRC:.c=.$(OBJEXT))
115 PCRE_HDRS    = @STATIC_PCRE_ONLY@pcre/config.h pcre/chartables.c pcre/internal.h pcre/pcre.h
116 PCRE_LIB     = @LIBRARY_PCRE_ONLY@-lpcre
117
118 # No REGEX:
119 @NO_REGEX_ONLY@REGEX_SRC    =
120 # Without PCRE:
121 @GNU_REGEX_ONLY@REGEX_SRC    = gnu_regex.c
122 # With PCRE:
123 @PCRE_REGEX_ONLY@REGEX_SRC    = @STATIC_PCRE_ONLY@pcre/pcreposix.c
124
125 REGEX_OBJS   = $(REGEX_SRC:.c=.$(OBJEXT))
126 REGEX_HDRS   = $(REGEX_SRC:.c=.h)
127
128 # Dependencies introduced by #include "project.h".
129 PROJECT_H_DEPS = project.h $(REGEX_HDRS) $(PCRS_HDRS) @STATIC_PCRE_ONLY@pcre/pcre.h
130
131 # Only need this on Solaris
132 # FIXME: This is always commented out
133 SOCKET_LIB   = @SOLARIS_ONLY@-lsocket -lnsl
134
135 LIBS         = $(PCRE_LIB) $(W32_LIB) $(SOCKET_LIB)
136
137 SRCS         = $(C_SRC)  $(W32_SRC)  $(PCRS_SRC)  $(PCRE_SRC)  $(REGEX_SRC)
138 OBJS         = $(C_OBJS) $(W32_OBJS) $(PCRS_OBJS) $(PCRE_OBJS) $(REGEX_OBJS)
139 HDRS         = $(C_HDRS) $(W32_HDRS) $(PCRS_HDRS) $(PCRE_OBJS) $(REGEX_HDRS)
140
141
142 # -------------------------------------------------------------------------
143 # Do not change anything below this line
144 # And there should NOT be any targets above this line.
145 # -------------------------------------------------------------------------
146 LDFLAGS = $(DEBUG_CFLAGS) $(CYGWIN_FLAGS)
147
148
149 all: $(PROGRAM)
150
151
152 SUFFIX     = .txt:o
153 .SUFFIXES  : .txt
154
155 %.txt:
156         sed -e 's/$$/&\r/' < $< > $@
157
158 inifiles: $(W32_INIS)
159
160 junkbstr.txt: config
161         sed     -e 's!\(/etc/junkbuster\|.\)/blocklist!sblock.txt!' \
162                         -e 's!\(/etc/junkbuster\|.\)/popup!spopup.txt!' \
163                         -e 's!\(/etc/junkbuster\|.\)/cookiefile!scookie.txt!' \
164                         -e 's!\(/etc/junkbuster\|.\)/forward!sforward.txt!' \
165                         -e 's!\(/etc/junkbuster\|.\)/trust!strust.txt!' \
166                         -e 's!\(/etc/junkbuster\|.\)/aclfile!sacl.txt!' \
167                         -e 's!\(/var/log/junkbuster\|.\)/jarfile!jar.log!' \
168                         -e 's!\(/var/log/junkbuster\|.\)/junkbuster\.log!junkbstr.log!' \
169                         -e 's!\(/etc/junkbuster\|.\)/imagelist!simage.txt!' \
170                         -e 's!\(/etc/junkbuster\|.\)/re_filterfile!sregexp.txt!' \
171                         -e 's!$$!&\r!' \
172                         -e 's!#Win32-only: !!' \
173         < $< > $@
174
175 saclfile.txt: aclfile
176 sblock.txt: blocklist
177 scookie.txt: cookiefile
178 sforward.txt: forward
179 simage.txt: imagelist
180 spopup.txt: popup
181 strust.txt: trust
182 sregexp.txt: re_filterfile
183
184
185 # -------------------------------------------------------------------------
186 #
187 # -------------------------------------------------------------------------
188 rpm-dist:
189         @make clean
190 # verify that i'm root needs to be done
191         cd .. && tar --exclude "ijb/CVS" -cvzf ijb.tar.gz ijb/
192 # verify all version strings, FLAGS, etc. in the spec file
193         cat ../../SPECS/junkbuster.spec | sed 's/^Version:.*/Version: $(RPM_VERSION)/g' | sed 's/^Release:.*/Release: $(VERSION_POINT)/g' > /tmp/abc && cp -f /tmp/abc ../../SPECS/junkbuster.spec
194         cd ../../ && rpm -ba SPECS/junkbuster.spec
195         chmod -R a+r ../../RPMS
196         chmod -R a+r ../../SRPMS
197
198 # -------------------------------------------------------------------------
199 #
200 # -------------------------------------------------------------------------
201 win-dist:
202         $(ECHO) Not implemented.
203
204 # -------------------------------------------------------------------------
205 #
206 # -------------------------------------------------------------------------
207 tarball-dist:
208         @make clean
209         make $(PROGRAM) 
210 #       remove all objects and create the tarball with the binary
211         cd .. && $(RM) ijb/a.out ijb/core ijb/*.$(OBJEXT) && tar --exclude "ijb/CVS" -cvzf ../ijb-distribution-$(VERSION).tar.gz ijb/
212         chmod a+r ../../ijb-distribution-$(VERSION).tar.gz
213         @$(ECHO) Tarball with binary created.
214
215 # -------------------------------------------------------------------------
216 #
217 # -------------------------------------------------------------------------
218
219 encode.@OBJEXT@:    encode.c    encode.h    config.h
220 errlog.@OBJEXT@:    errlog.c    errlog.h    config.h $(PROJECT_H_DEPS) @WIN_ONLY@w32log.h
221 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 @WIN_ONLY@win32.h 
222 gateway.@OBJEXT@:   gateway.c   gateway.h   config.h $(PROJECT_H_DEPS) errlog.h jbsockets.h jcc.h loadcfg.h
223 jbsockets.@OBJEXT@: jbsockets.c jbsockets.h config.h $(PROJECT_H_DEPS) filters.h
224 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
225 killpopup.@OBJEXT@: killpopup.c killpopup.h config.h $(PROJECT_H_DEPS) jcc.h loadcfg.h
226 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
227 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
228 miscutil.@OBJEXT@:  miscutil.c  miscutil.h  config.h
229 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
230 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
231 ssplit.@OBJEXT@:    ssplit.c    ssplit.h    config.h miscutil.h
232
233 # GNU regex
234 gnu_regex.@OBJEXT@: gnu_regex.c gnu_regex.h config.h
235
236 # PCRS
237 pcrs.@OBJEXT@: pcrs.c pcre/pcre.h pcrs.h
238
239 # PCRE
240 pcre/get.@OBJEXT@:        pcre/get.c        pcre/config.h pcre/internal.h pcre/pcre.h
241 pcre/maketables.@OBJEXT@: pcre/maketables.c pcre/config.h pcre/internal.h pcre/pcre.h
242 pcre/pcre.@OBJEXT@:       pcre/pcre.c       pcre/config.h pcre/internal.h pcre/pcre.h pcre/chartables.c 
243 pcre/pcreposix.@OBJEXT@:  pcre/pcreposix.c  pcre/config.h pcre/internal.h pcre/pcre.h pcre/pcreposix.h
244 pcre/study.@OBJEXT@:      pcre/study.c      pcre/config.h pcre/internal.h pcre/pcre.h
245
246 # An auxiliary program makes the PCRE default character table source
247
248 pcre/chartables.c:   pcre/dftables
249                 pcre/dftables >pcre/chartables.c
250
251 pcre/dftables:       pcre/dftables.c pcre/maketables.c pcre/pcre.h pcre/internal.h pcre/config.h
252                 $(CC) -o pcre/dftables $(CFLAGS) pcre/dftables.c
253
254 # Win32
255 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
256 w32rulesdlg.@OBJEXT@: w32rulesdlg.c config.h w32rulesdlg.h win32.h
257 w32taskbar.@OBJEXT@: w32taskbar.c config.h w32log.h w32taskbar.h
258 win32.@OBJEXT@: win32.c config.h jcc.h loadcfg.h pcre/pcre.h pcre/pcreposix.h pcrs.h project.h w32log.h win32.h
259
260 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
261         windres -D__MINGW32__=0.2 -O coff -i $< -o $@
262
263 ## AmigaOS, GCC 2.95.1 (or lower, 2.95.3 does NOT work!)
264 #ifeq ($(shell $(CC) $(CFLAGS) -dumpmachine), m68k-amigaos)
265 #OBJS += amiga.o
266 #CFLAGS += -D__AMIGAVERSION__=\"$(VERSION_MAJOR).$(VERSION_MINOR)$(VERSION_POINT)\" -D__AMIGADATE__=\"`date +%d.%m.%Y`\" -W -Wall -m68020 -Os -noixemul -fbaserel -msmall-code
267 #LDFLAGS += -m68020 -noixemul -fbaserel
268 #LIBS = -lm /gg/lib/libb/libm020/libnix/swapstack.o
269 #amiga.o: amiga.c amiga.h config.h
270 #endif
271 #
272
273 $(PROGRAM): $(OBJS) $(W32_FILES)
274         $(LD) $(LDFLAGS) -o $(PROGRAM) $(OBJS) $(LIBS)
275
276 clean:
277         $(RM) a.out core $(OBJS) $(W32_FILES) $(W32_INIS)
278
279 clobber: clean
280         $(RM) $(PROGRAM) *.pdb *.lib *.exp TAGS junkbuster.log
281
282 tags: $(SRCS) $(HDRS)
283         etags $(SRCS) $(HDRS)
284
285 install: all
286         $(STRIP) $(PROGRAM)
287         $(INSTALL) $(PROGRAM) $(SBIN_DEST)
288         $(INSTALL) README README.TOO README.WIN README.re_filter README.cygwin $(DEST)
289         $(INSTALL) aclfile blocklist config cookiefile forward imagelist \
290                 popup re_filterfile trust $(DEST)
291         # FIXME: On SuSE, these are not found.  Where do they go?
292         $(ECHO) junkbuster.logrotate junkbuster.monthly junkbuster.weekly
293         $(GZIP) -c junkbuster.1 > $(MAN_DEST)/junkbuster.1.gz
294         $(INSTALL) junkbuster.init /sbin/init.d/junkbuster
295
296
297 ## Local Variables:
298 ## tab-width: 3
299 ## end: