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