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