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