1 # Note: Makefile is built automatically from Makefile.in
3 # $Id: GNUmakefile.in,v 1.24 2002/03/24 14:19:55 swa Exp $
5 # Written by and Copyright (C) 2001 the SourceForge
6 # Privoxy team. http://ijbswa.sourceforge.net
8 # Based on the Internet Junkbuster originally written
9 # by and Copyright (C) 1997 Anonymous Coders and
10 # Junkbusters Corporation. http://www.junkbusters.com
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.
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.
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.
31 #############################################################################
32 # Version number (for RPM)
33 #############################################################################
35 VERSION_MAJOR = @VERSION_MAJOR@
36 VERSION_MINOR = @VERSION_MINOR@
37 VERSION_POINT = @VERSION_POINT@
38 CODE_STATUS = @CODE_STATUS@
39 VERSION = $(VERSION_MAJOR).$(VERSION_MINOR).$(VERSION_POINT)
40 # will automatically be postfixed with -$(RPM_PACKAGEV) in the SPECfile
41 RPM_VERSION = $(VERSION)
42 RPM_PACKAGEV = @VERSION_RPM_PACKAGE@
45 #############################################################################
46 # Directories for "make install"
47 #############################################################################
49 DEST = @sysconfdir@/privoxy
54 #############################################################################
56 #############################################################################
58 PROGRAM = privoxy@EXEEXT@
75 DB = $(JADEBIN) -t sgml -ihtml -D.. -d ldpOK.dsl\#html
79 # Program to do LF->CRLF
81 # The sed version should be the most portable, but it doesn't for for me,
82 # the other two do. FIXME.
84 #DOSFILTER = $(SED) -e $$'s,$$,\r,'
85 #DOSFILTER = gawk -v ORS='\r\n' '{print $0;}'
86 DOSFILTER = perl -p -e 's/\n/\r\n/'
88 #############################################################################
89 # Setup for make distribution rh and suse for now
90 #############################################################################
92 TAR_ARCH = /tmp/privoxy-$(RPM_VERSION).tar.gz
95 #############################################################################
96 # Filenames and libraries
97 #############################################################################
99 C_SRC = actions.c cgi.c cgiedit.c cgisimple.c deanimate.c encode.c \
100 errlog.c filters.c gateway.c jbsockets.c jcc.c killpopup.c \
101 list.c loadcfg.c loaders.c miscutil.c parsers.c ssplit.c \
104 C_OBJS = $(C_SRC:.c=.@OBJEXT@)
105 C_HDRS = $(C_SRC:.c=.h) project.h actionlist.h
107 W32_SRC = @WIN_ONLY@w32log.c w32taskbar.c win32.c
108 W32_FILES = @WIN_ONLY@w32.res
109 W32_OBJS = @WIN_ONLY@$(W32_SRC:.c=.@OBJEXT@) $(W32_FILES)
110 W32_HDRS = @WIN_ONLY@w32log.h w32taskbar.h win32.h w32res.h
111 W32_LIB = @WIN_ONLY@-lwsock32 -lcomctl32
112 W32_INIS = @WIN_ONLY@config.txt trust.txt
114 PCRS_SRC = @STATIC_PCRS_ONLY@pcrs.c
115 PCRS_OBJS = @STATIC_PCRS_ONLY@$(PCRS_SRC:.c=.@OBJEXT@)
116 PCRS_HDRS = @STATIC_PCRS_ONLY@$(PCRS_SRC:.c=.h)
118 PCRE_SRC = @STATIC_PCRE_ONLY@pcre/get.c pcre/maketables.c pcre/study.c pcre/pcre.c
119 PCRE_OBJS = @STATIC_PCRE_ONLY@$(PCRE_SRC:.c=.@OBJEXT@)
120 PCRE_HDRS = @STATIC_PCRE_ONLY@pcre/config.h pcre/chartables.c pcre/internal.h pcre/pcre.h
122 # No REGEX (Either because dynamically linked pcreposix, or no regex at all):
125 @GNU_REGEX_ONLY@REGEX_SRC = gnu_regex.c
127 @PCRE_REGEX_ONLY@@STATIC_PCRE_ONLY@REGEX_SRC = pcre/pcreposix.c
129 REGEX_OBJS = $(REGEX_SRC:.c=.@OBJEXT@)
130 REGEX_HDRS = $(REGEX_SRC:.c=.h)
132 # Dependencies introduced by #include "project.h".
133 PROJECT_H_DEPS = project.h $(REGEX_HDRS) $(PCRS_HDRS) @STATIC_PCRE_ONLY@pcre/pcre.h
135 # Socket libraries for platforms that need them explicitly defined
136 SOCKET_LIB = @SOCKET_LIB@
138 # PThreads library, if needed.
139 PTHREAD_LIB = @PTHREAD_ONLY@@PTHREAD_LIB@
141 SRCS = $(C_SRC) $(W32_SRC) $(PCRS_SRC) $(PCRE_SRC) $(REGEX_SRC)
142 OBJS = $(C_OBJS) $(W32_OBJS) $(PCRS_OBJS) $(PCRE_OBJS) $(REGEX_OBJS)
143 HDRS = $(C_HDRS) $(W32_HDRS) $(PCRS_HDRS) $(PCRE_OBJS) $(REGEX_HDRS)
144 LIBS = @LIBS@ $(W32_LIB) $(SOCKET_LIB) $(PTHREAD_LIB)
147 #############################################################################
149 #############################################################################
151 # The flag "-mno-win32" can be used by Cygwin to emulate a un?x type build.
152 # The flag "-mwindows -mno-cygwin" will cause Cygwin to use MingW32 for a
154 # The flag "-pthread" is required if using Pthreads under Linux (and
155 # possibly other OSs).
156 SPECIAL_CFLAGS = @SPECIAL_CFLAGS@
158 # Add your flags here
161 CFLAGS = @CFLAGS@ @CPPFLAGS@ $(OTHER_CFLAGS) $(SPECIAL_CFLAGS) -Wall \
162 @STATIC_PCRE_ONLY@ -Ipcre
164 LDFLAGS = $(DEBUG_CFLAGS) $(SPECIAL_CFLAGS)
167 #############################################################################
170 # There should NOT be any targets above this line.
171 #############################################################################
175 #############################################################################
177 #############################################################################
178 .PHONY: all inifiles redhat-dist redhat-upload solaris-dist suse-dist \
179 suse-upload win-dist tarball-dist dok redhat-dok webserver clean clobber tags \
183 #############################################################################
184 # Define this explicitly because Solaris is broken!
185 #############################################################################
187 $(CC) -c $(CFLAGS) $(CPPFLAGS) $< -o $@
190 #############################################################################
192 #############################################################################
194 inifiles: $(W32_INIS)
197 $(SED) -e 's!\trustfile trust!trustfile trust.txt!' \
198 -e 's!\jarfile jarfile!jarfile jar.log!' \
199 -e 's!\logfile logfile!logfile privoxy.log!' \
200 -e 's!#Win32-only: !!' \
203 # LF to CRLF in default.action
204 $(DOSFILTER) <default.action >default.action.txt && mv default.action.txt default.action
205 # LF to CRLF in default.filter
206 $(DOSFILTER) <default.filter >default.filter.txt && mv default.filter.txt default.filter
209 $(DOSFILTER) < $< > $@
211 re_filterfile.txt: re_filterfile
212 $(DOSFILTER) < $< > $@
215 #############################################################################
216 # redhat distribution alpha and x86
217 #############################################################################
220 for dir in RPMS SRPMS BUILD SOURCES SPECS; do \
221 if [ ! -w $(RPM_BASE)/$$dir ]; then \
222 $(ECHO) "$(RPM_BASE)/$$dir is not writable for you. Maybe try as root."; \
223 $(ECHO) "Or add a suitable path to .rpmmacros like."; \
224 $(ECHO) "%_topdir /home/foo/rpm-build"; \
230 if [ -f $(TAR_ARCH) ]; then $(RM) $(TAR_ARCH); fi
232 TMPFILE=$$(mktemp -q /tmp/$(PROGRAM).XXXXXX); \
233 if $(SED) -e 's/^\(Version:\).*/\1 $(RPM_VERSION)/g' \
234 -e 's/^\(Release:\).*/\1 $(RPM_PACKAGEV)/g' \
235 privoxy-rh.spec > $$TMPFILE ; then \
236 $(MV) -f $$TMPFILE privoxy-rh.spec; \
238 $(ECHO) "Could not set version info in specfile."; \
242 $(TAR) --exclude "CVS" --exclude "privoxy-suse.spec" -czf $(TAR_ARCH) .
243 $(RPM) --clean -ta $(TAR_ARCH)
244 if [ -f $(TAR_ARCH) ]; then $(RM) $(TAR_ARCH); fi
247 # anonymously ncftps the rpms to sourceforge
250 ncftpput -u anonymous -p ijbswa-developers@lists.sourceforge.net upload.sourceforge.net /incoming $(RPM_BASE)/SRPMS/privoxy-$(RPM_VERSION)-$(RPM_PACKAGEV).src.rpm
251 # better should use `arch` here instead of ix86 to support other platforms too
252 ncftpput -u anonymous -p ijbswa-developers@lists.sourceforge.net upload.sourceforge.net /incoming $(RPM_BASE)/RPMS/*/privoxy-$(RPM_VERSION)-$(RPM_PACKAGEV).*.rpm
253 @$(ECHO) -------------------------------------------------------
255 @$(ECHO) http://sourceforge.net/project/admin/editpackages.php?group_id=11118
256 @$(ECHO) ... and release the files.
257 @$(ECHO) -------------------------------------------------------
258 # w3m http://sourceforge.net/project/admin/editpackages.php?group_id=11118
260 #############################################################################
261 # sun solaris distribution
262 #############################################################################
264 @$(ECHO) coming soon.
266 #############################################################################
267 # suse distribution (need to be root to build)
268 #############################################################################
271 for dir in RPMS SRPMS BUILD SOURCES SPECS; do \
272 if [ ! -w $(RPM_BASE)/$$dir ]; then \
273 $(ECHO) "$(RPM_BASE)/$$dir is not writable for you. Maybe try as root."; \
274 $(ECHO) "Or add a suitable path to .rpmmacros like."; \
275 $(ECHO) "%_topdir /home/foo/rpm-build"; \
281 if [ -f $(TAR_ARCH) ]; then $(RM) $(TAR_ARCH); fi
283 TMPFILE=$$(mktemp -q /tmp/$(PROGRAM).XXXXXX); \
284 if $(SED) -e 's/^\(Version:\).*/\1 $(RPM_VERSION)/g' \
285 -e 's/^\(Release:\).*/\1 $(RPM_PACKAGEV)/g' \
286 privoxy-suse.spec > $$TMPFILE ; then \
287 $(MV) -f $$TMPFILE privoxy-suse.spec; \
289 $(ECHO) "Could not set version info in specfile."; \
293 $(TAR) --exclude "CVS" --exclude "privoxy-rh.spec" -czf $(TAR_ARCH) .
294 $(RPM) --clean -ta $(TAR_ARCH)
295 if [ -f $(TAR_ARCH) ]; then $(RM) $(TAR_ARCH); fi
298 # anonymously ncftps the rpms to sourceforge
301 ncftpput -u anonymous -p ijbswa-developers@lists.sourceforge.net upload.sourceforge.net /incoming $(RPM_BASE)/SRPMS/privoxy-suse-$(RPM_VERSION)-$(RPM_PACKAGEV).src.rpm
302 # better should use `arch` here instead of ix86 to support other platforms too
303 ncftpput -u anonymous -p ijbswa-developers@lists.sourceforge.net upload.sourceforge.net /incoming $(RPM_BASE)/RPMS/*/privoxy-suse-$(RPM_VERSION)-$(RPM_PACKAGEV).*.rpm
304 @$(ECHO) -------------------------------------------------------
306 @$(ECHO) http://sourceforge.net/project/admin/editpackages.php?group_id=11118
307 @$(ECHO) ... and release the files.
308 @$(ECHO) -------------------------------------------------------
310 # handle with care. use with root.
312 rpm -e junkbuster-suse || true
313 rm -rf /etc/junkbuster
314 rm -rf /etc/rc.d/junkbuster*
315 rm -rf /var/run/junkbuster.pid
316 rm -rf /var/log/junkbuster
317 rm -f /etc/init.d/junkbuster
318 rm -f /usr/sbin/junkbuster
319 rm -f /usr/sbin/rcjunkbuster
320 rm -f /usr/share/man/man1/junkbuster.1.gz
321 rpm -e privoxy-suse || true
323 rm -rf /etc/rc.d/privoxy*
324 rm -rf /var/run/privoxy.pid
325 rm -rf /var/log/privoxy
326 rm -f /etc/init.d/privoxy
327 rm -f /usr/sbin/privoxy
328 rm -f /usr/sbin/rcprivoxy
329 rm -f /usr/share/man/man1/privoxy.1.gz
331 #############################################################################
332 # Windows distribution
333 #############################################################################
335 $(ECHO) Not implemented.
338 #############################################################################
339 # Tarball distribution
340 #############################################################################
344 # remove all objects and create the tarball with the binary
345 cd .. && $(RM) ijb/a.out ijb/core ijb/*.@OBJEXT@ && tar --exclude "ijb/CVS" -cvzf ../privoxy-distribution-$(VERSION).tar.gz ijb/
346 chmod a+r ../../privoxy-distribution-$(VERSION).tar.gz
347 @$(ECHO) Tarball with binary created.
349 #############################################################################
353 # converts doc/source/*.sgml into html, text and man pages
355 #############################################################################
356 dok: doc/source/ldpOK.dsl
357 mkdir -p doc/text doc/man
359 rm -rf doc/webserver/user-manual
360 cd doc/source && $(DB2HTML) -s ldpOK.dsl user-manual.sgml && mv user-manual ../webserver
361 cd doc/source && $(DB2HTML) -s ldpOK.dsl --nochunks user-manual.sgml > tmp.html && lynx -dump tmp.html > ../text/user-manual.txt && rm -rf tmp.html user-manual
363 rm -rf doc/webserver/developer-manual
364 cd doc/source && $(DB2HTML) -s ldpOK.dsl developer-manual.sgml && mv developer-manual ../webserver
365 cd doc/source && $(DB2HTML) -s ldpOK.dsl --nochunks developer-manual.sgml > tmp.html && lynx -dump tmp.html > ../text/developer-manual.txt && rm -rf tmp.html developer-manual
367 rm -rf doc/webserver/faq
368 cd doc/source && $(DB2HTML) -s ldpOK.dsl faq.sgml && mv faq ../webserver
369 cd doc/source && $(DB2HTML) -s ldpOK.dsl --nochunks faq.sgml > tmp.html && lynx -dump tmp.html > ../text/faq.txt && rm -rf tmp.html faq
371 redhat-dok: doc/source/ldpOK.dsl
372 mkdir -p doc/text doc/man doc/source/user-manual \
373 doc/source/developer-manual doc/source/faq
375 rm -rf doc/webserver/user-manual
376 cd doc/source/user-manual && $(DB) ../user-manual.sgml && cd .. &&\
377 mv user-manual ../webserver
378 cd doc/source && $(DB) -V nochunks user-manual.sgml > tmp.html && \
379 $(WDUMP) tmp.html > ../text/user-manual.txt && rm -rf tmp.html \
382 rm -rf doc/webserver/developer-manual
383 cd doc/source/developer-manual && $(DB) ../developer-manual.sgml &&\
384 cd .. && mv developer-manual ../webserver
385 cd doc/source && $(DB) -V nochunks developer-manual.sgml > tmp.html && \
386 $(WDUMP) tmp.html > ../text/developer-manual.txt && rm -rf tmp.html \
389 rm -rf doc/webserver/faq
390 cd doc/source/faq && $(DB) ../faq.sgml && cd .. && mv faq ../webserver
391 cd doc/source && $(DB) -V nochunks faq.sgml > tmp.html && $(WDUMP) \
392 tmp.html > ../text/faq.txt && rm -rf tmp.html faq
394 doc/source/ldpOK.dsl:
395 if [ "$(DKPREFIX)" != "none" ]; then \
396 sed -e "s@/usr/share/sgml/docbook/dsssl-stylesheets@$(DKPREFIX)@g" doc/source/ldp.dsl > doc/source/ldpOK.dsl; \
398 cp doc/source/ldp.dsl doc/source/ldpOK.dsl; \
401 #############################################################################
405 # moves dokumentation to webserver
407 #############################################################################
409 @$(ECHO) -------------------------------------------------------
410 @$(ECHO) You have run make dok/redhat-dok before, right?
411 @$(ECHO) Note that this command scps all stuff to the webserver,
412 @$(ECHO) it will not remove obsolete documents.
413 @$(ECHO) -------------------------------------------------------
414 chmod -R a+r doc/webserver
415 find doc/webserver -type d -exec chmod a+rx {} \;
416 cd doc/webserver && scp -Cr . ijbswa.sourceforge.net:/home/groups/i/ij/ijbswa/htdocs/
418 #############################################################################
419 # Source file dependencies
420 #############################################################################
422 actions.@OBJEXT@: actions.c actions.h config.h $(PROJECT_H_DEPS) errlog.h jcc.h list.h loaders.h miscutil.h actionlist.h
423 cgi.@OBJEXT@: cgi.c cgi.h config.h $(PROJECT_H_DEPS) cgiedit.h cgisimple.h list.h pcrs.h encode.h ssplit.h jcc.h filters.h actions.h errlog.h miscutil.h
424 cgiedit.@OBJEXT@: cgiedit.c cgiedit.h config.h $(PROJECT_H_DEPS) cgi.h list.h pcrs.h encode.h ssplit.h jcc.h filters.h actions.h errlog.h miscutil.h
425 cgisimple.@OBJEXT@: cgisimple.c cgisimple.h config.h $(PROJECT_H_DEPS) cgi.h list.h pcrs.h encode.h ssplit.h jcc.h filters.h actions.h errlog.h miscutil.h
426 deanimate.@OBJEXT@: deanimate.c deanimate.h config.h $(PROJECT_H_DEPS)
427 encode.@OBJEXT@: encode.c encode.h config.h
428 errlog.@OBJEXT@: errlog.c errlog.h config.h $(PROJECT_H_DEPS) @WIN_ONLY@w32log.h
429 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 ssplit.h cgi.h deanimate.h @WIN_ONLY@win32.h
430 gateway.@OBJEXT@: gateway.c gateway.h config.h $(PROJECT_H_DEPS) errlog.h jbsockets.h jcc.h loadcfg.h
431 jbsockets.@OBJEXT@: jbsockets.c jbsockets.h config.h $(PROJECT_H_DEPS) filters.h
432 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 @WIN_ONLY@w32log.h win32.h cgi.h
433 killpopup.@OBJEXT@: killpopup.c killpopup.h config.h $(PROJECT_H_DEPS) jcc.h loadcfg.h
434 list.@OBJEXT@: list.c list.h config.h $(PROJECT_H_DEPS) list.h miscutil.h
435 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 @WIN_ONLY@w32log.h win32.h
436 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
437 miscutil.@OBJEXT@: miscutil.c miscutil.h config.h
438 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 ssplit.h
439 ssplit.@OBJEXT@: ssplit.c ssplit.h config.h miscutil.h
440 urlmatch.@OBJEXT@: urlmatch.c urlmatch.h config.h $(PROJECT_H_DEPS) errlog.h miscutil.h ssplit.h
443 gnu_regex.@OBJEXT@: gnu_regex.c gnu_regex.h config.h
446 pcrs.@OBJEXT@: pcrs.c pcre/pcre.h pcrs.h
449 pcre/get.@OBJEXT@: pcre/get.c pcre/config.h pcre/internal.h pcre/pcre.h
450 pcre/maketables.@OBJEXT@: pcre/maketables.c pcre/config.h pcre/internal.h pcre/pcre.h
451 pcre/pcre.@OBJEXT@: pcre/pcre.c pcre/config.h pcre/internal.h pcre/pcre.h pcre/chartables.c
452 pcre/pcreposix.@OBJEXT@: pcre/pcreposix.c pcre/config.h pcre/internal.h pcre/pcre.h pcre/pcreposix.h
453 pcre/study.@OBJEXT@: pcre/study.c pcre/config.h pcre/internal.h pcre/pcre.h
455 # An auxiliary program makes the PCRE default character table source
457 pcre/chartables.c: pcre/dftables@EXEEXT@
458 pcre/dftables@EXEEXT@ >pcre/chartables.c
460 pcre/dftables@EXEEXT@: pcre/dftables.c pcre/maketables.c pcre/pcre.h pcre/internal.h pcre/config.h
461 $(CC) -o pcre/dftables@EXEEXT@ $(CFLAGS) pcre/dftables.c
464 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 w32taskbar.h win32.h
465 w32taskbar.@OBJEXT@: w32taskbar.c config.h w32log.h w32taskbar.h
466 win32.@OBJEXT@: win32.c config.h jcc.h loadcfg.h pcre/pcre.h pcre/pcreposix.h pcrs.h project.h w32log.h win32.h
468 w32.res: w32.rc w32res.h 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/idle.ico icons/junkbust.ico config.h
469 windres -D__MINGW32__=0.2 -O coff -i $< -o $@
472 @AMIGAOS_ONLY@OBJS += amiga.o
473 @AMIGAOS_ONLY@CFLAGS += -D__AMIGAVERSION__=\"$(VERSION_MAJOR).$(VERSION_MINOR)$(VERSION_POINT)\" -D__AMIGADATE__=\"`date +%d.%m.%Y`\" -W -m68020 -noixemul -fbaserel -msmall-code
474 @AMIGAOS_ONLY@LDFLAGS += -m68020 -noixemul -fbaserel
475 @AMIGAOS_ONLY@LIBS = -lm /gg/lib/libb/libm020/libnix/swapstack.o
476 @AMIGAOS_ONLY@amiga.o: amiga.c amiga.h config.h
479 $(PROGRAM): $(OBJS) $(W32_FILES)
480 $(LD) $(LDFLAGS) -o $(PROGRAM) $(OBJS) $(LIBS)
483 $(RM) a.out core $(OBJS) $(W32_FILES) $(W32_INIS)
486 $(RM) $(PROGRAM) cscope.* logfile *.pdb *.lib *.exp `find . -name tags` `find . -name TAGS` config.status config.h.in config.log junkbuster.log privoxy.log config.cache *~ *.tar.gz
488 tags: $(SRCS) $(HDRS)
489 etags $(SRCS) $(HDRS)
492 $(LN) -s current ../privoxy-$(VERSION)-$(CODE_STATUS)
493 $(TAR) -C.. -cvhzf privoxy-$(VERSION)-$(CODE_STATUS)-src.tar.gz privoxy-$(VERSION)-$(CODE_STATUS)
494 $(RM) ../privoxy-$(VERSION)-$(CODE_STATUS)
498 # FIXME: This is a dirty hack to have an install target
499 # that works at least for some setups. This needs
502 $(STRIP_PROG) $(PROGRAM)
503 $(INSTALL) $(PROGRAM) $(SBIN_DEST)
504 mkdir -p $(DEST)/user-manual
505 mkdir -p $(DEST)/templates
506 cp -r doc/webserver/user-manual $(DEST)
507 cp -r templates $(DEST)
508 $(INSTALL) config default.action default.filter trust $(DEST)
509 # FIXME $(ECHO) privoxy.logrotate privoxy.monthly privoxy.weekly
510 # FIXME: Need new manual! $(GZIP_PROG) -c privoxy.1 > $(MAN_DEST)/privoxy.1.gz
511 $(INSTALL) privoxy.init /etc/init.d/privoxy
514 #############################################################################
520 # $Log: GNUmakefile.in,v $
521 # Revision 1.24 2002/03/24 14:19:55 swa
522 # set rpm package release in configure.in. nowhere else.
524 # Revision 1.23 2002/03/24 13:06:49 swa
525 # suse-clean now runs fine
527 # Revision 1.22 2002/03/24 12:56:21 swa
528 # name change related issues.
530 # Revision 1.21 2002/03/24 12:43:57 swa
533 # Revision 1.20 2002/03/24 11:39:17 jongfoster
534 # Renaming config files
536 # Revision 1.19 2002/03/22 20:53:03 morcego
537 # - Ongoing process to change name to JunkbusterNG
538 # - configure/configure.in: no change needed
540 # - TAR_ARCH = /tmp/JunkbusterNG-$(RPM_VERSION).tar.gz
541 # - PROGRAM = jbng@EXEEXT@
542 # - rh-spec now references as junkbusterng-rh.spec
543 # - redhat-upload: references changed to junkbusterng-* (package names)
544 # - tarball-dist: references changed to JunkbusterNG-distribution-*
545 # - tarball-src: now JunkbusterNG-*
546 # - install: initscript now junkbusterng.init and junkbusterng (when
548 # - junkbuster-rh.spec: renamed to junkbusterng-rh.spec
549 # - junkbusterng.spec:
550 # - References to the expression ijb where changed where possible
551 # - New package name: junkbusterng (all in lower case, acording to
552 # the LSB recomendation)
553 # - Version changed to: 2.9.13
555 # - Added: junkbuster to obsoletes and conflicts (Not sure this is
556 # right. If it obsoletes, why conflict ? Have to check it later)
557 # - Summary changed: Stefan, please check and aprove it
558 # - Changes description to use the new name
559 # - Sed string was NOT changed. Have to wait to the manpage to
561 # - Keeping the user junkbuster for now. It will require some aditional
562 # changes on the script (scheduled for the next specfile release)
563 # - Added post entry to move the old logfile to the new log directory
564 # - Removing "chkconfig --add" entry (not good to have it automaticaly
565 # added to the startup list).
566 # - Added preun section to stop the service with the old name, as well
567 # as remove it from the startup list
568 # - Removed the chkconfig --del entry from the conditional block on
569 # the preun scriptlet (now handled on the %files section)
570 # - junkbuster.init: renamed to junkbusterng.init
571 # - junkbusterng.init:
572 # - Changed JB_BIN to jbng
573 # - Created JB_OBIN with the old value of JB_BIN (junkbuster), to
574 # be used where necessary (config dir)
577 # - The config directory is /etc/junkbuster yet. Have to change it on the
578 # specfile, after it is changes on the code
579 # - The only files that got renamed on the cvs tree were the rh specfile and
580 # the init file. Some file references got changes on the makefile and on the
581 # rh-spec (as listed above)
583 # Revision 1.18 2002/03/21 23:00:00 swa
584 # want to autogenerate stuff.
586 # Revision 1.17 2002/03/19 19:30:04 morcego
587 # - Fixing stylesheet checking on configure. If it is found, no further checks
590 # - configure will now check for db2html or docbook2html (should work now
591 # on SuSe without the docbktls package)
593 # Revision 1.16 2002/03/14 22:32:32 hal9
594 # Bumped the RPM version.
596 # Revision 1.15 2002/03/08 20:00:28 swa
599 # Revision 1.14 2002/03/07 18:25:56 swa
600 # synced redhat and suse build process
602 # Revision 1.13 2002/03/07 17:17:56 oes
603 # (Hopefully) fixed for older make versions
605 # Revision 1.12 2002/03/07 15:28:27 swa
608 # Revision 1.11 2002/03/06 14:33:18 sarantis
609 # Use proper temp file, not "abc".
611 # Revision 1.10 2002/03/06 14:19:35 sarantis
612 # Cleanup PID_FILE_PATH from redhat-dist target
614 # Revision 1.9 2002/03/05 17:31:11 morcego
615 # Search for docbook.dsl. Should solve portability problems for SuSe.
617 # Revision 1.8 2002/03/05 14:07:42 morcego
618 # configure now detects rpm topdir, and change GNUmakefile acordingly
619 # (based on sugestion by Sarantis Paskalis)
621 # Revision 1.7 2002/03/05 13:43:28 morcego
622 # Checking for text browser, so redhat-dok can work.
624 # Revision 1.6 2002/03/05 13:10:51 morcego
625 # Changes to implement redhat-dok (Hal Burgiss)
626 # Changes to make it work on other distros and out-of-the-shelf configurations
628 # Revision 1.5 2002/02/27 15:30:39 hal9
629 # Reset $(RPM_PACKAGEV) to 1 (was 2)
631 # Revision 1.4 2002/01/17 21:44:04 jongfoster
632 # Adding urlmatch.[ch]
634 # Revision 1.3 2002/01/04 15:26:08 oes
635 # Added tarball-src target
637 # Revision 1.2 2001/12/30 14:07:31 steudten
638 # - Add signal handling (unix)
639 # - Add SIGHUP handler (unix)
640 # - Add creation of pidfile (unix)
641 # - Add action 'top' in rc file (RH)
642 # - Add entry 'SIGNALS' to manpage
643 # - Add exit message to logfile (unix)
645 # Revision 1.1 2001/12/01 11:22:57 jongfoster
646 # Renaming Makefile.in to GNUmakefile.in so that non-GNU versions of
647 # make break in a more obvious way.
648 # Adding .PHONY section.
650 # Revision 1.40 2001/12/01 00:24:11 jongfoster
651 # Renaming various config files
652 # Fixing CR->CRLF under Win32 (I hope)
654 # Revision 1.39 2001/11/06 12:07:30 steudten
655 # Add --clean for building rpm in target redhat-dist.
657 # Revision 1.38 2001/11/05 21:35:23 steudten
658 # Complete rewrite for the 'redhat-dist' target.
659 # Checks for writeable RPM build directories for calling user.
660 # So you must not be root, just set the modes to 1777 to
661 # build a RH package.
662 # Fix the upload-target to be arch independant.
663 # Add target for 'solaris-dist' - coming soon.
665 # Revision 1.37 2001/11/01 00:52:04 hal9
666 # Redhat-upload stuff per Stefan.
668 # Revision 1.36 2001/10/31 19:26:13 swa
669 # automate process of uploading new releases
672 # Revision 1.35 2001/10/15 22:14:59 joergs
673 # Removed -O2 and -Wall from AmigaOS-only CFLAGS since they are now in
674 # the general CFLAGS already.
676 # Revision 1.34 2001/10/15 18:28:06 steudten
677 # remove config.cache for target clobber.
678 # Cleanup make dist for RH and S.u.S.E.
680 # Revision 1.33 2001/10/10 12:43:33 oes
681 # Added ugly hack to make install target work at least for some setups.
683 # Revision 1.32 2001/10/09 22:38:19 jongfoster
684 # Correcting actionsfile filename for Win32 INI build
686 # Revision 1.31 2001/09/23 10:13:48 swa
687 # upload process established. run make webserver and
688 # the documentation is moved to the webserver. documents
689 # are now linked correctly.
691 # Revision 1.30 2001/09/19 17:55:49 oes
694 # Revision 1.29 2001/09/16 17:34:27 jongfoster
695 # Removing showargs.[ch], adding cgi(simple|edit).[ch]
696 # Replacing $(OBJEXT) with @OBJEXT@ - this seems to be a common source
699 # Revision 1.28 2001/09/13 15:19:08 swa
700 # we want text files as well.
702 # Revision 1.27 2001/09/13 13:11:37 steudten
704 # Replace DEBUG_CFLAGS with OTHER_CFLAGS
706 # Revision 1.26 2001/09/12 23:44:54 david__schmidt
707 # Mac OSX (Darwin) support added.
709 # Revision 1.25 2001/09/12 22:55:45 joergs
710 # AmigaOS support added.
712 # Revision 1.24 2001/09/12 17:28:59 david__schmidt
714 # OS/2 port: update autoconf'd support for the platform.
716 # Revision 1.23 2001/09/12 16:28:42 swa
717 # added "make dok" section to generate html pages from
718 # the sgml source documents. note that the we do not want
719 # generated stuff in cvs.
721 # Revision 1.22 2001/09/10 16:31:23 swa
722 # buildroot definition in the specfile fucks up the build
723 # process under suse. hence I moved it to the "rpm -ta"
726 # Revision 1.21 2001/09/10 11:12:49 oes
729 # Revision 1.20 2001/08/02 22:04:29 jongfoster
730 # Removing some remaining references to obsolete w32rulesdlg.[ch]
732 # Revision 1.19 2001/07/30 22:14:03 jongfoster
733 # Removing obsolete w32rulesdlg.c and w32rulesdlg.h
735 # Revision 1.18 2001/07/29 17:09:17 jongfoster
736 # Major changes to build system in order to fix these bugs:
737 # - pthreads under Linux was broken - changed -lpthread to -pthread
738 # - Compiling in MinGW32 mode under CygWin now correctly detects
739 # which shared libraries are available
740 # - Solaris support (?) (Not tested under Solaris yet)
742 # Revision 1.17 2001/07/28 16:44:54 oes
743 # Fixed sed LF->CRLF conversion and removed deprecated files
745 # Revision 1.16 2001/07/15 19:45:33 jongfoster
746 # Added support for linking with POSIX threads library
748 # Revision 1.15 2001/07/13 13:48:07 oes
749 # - Moved STATIC #define for pcre to (ac)config.h
750 # - Made -Ipcre depandant on static pcre compilation to
751 # avoid version conflicts
752 # - Included compilation and depandancies for new deanimate.c
753 # - Made changes to the pcre/pcreposix/pcrs build process
754 # as required by the new library autodetection in
757 # Revision 1.14 2001/07/01 16:27:44 oes
758 # Fixed misplaced dependancy
760 # Revision 1.13 2001/06/29 13:18:36 oes
761 # - added depandancy of filters.o on cgi.h
763 # Revision 1.12 2001/06/12 17:15:56 swa
764 # fixes, because a clean build on rh6.1 was impossible.
765 # GZIP confuses make, %configure confuses rpm, etc.
767 # Revision 1.11 2001/06/11 11:26:35 sarantis
768 # RPM version should be the same as ijbswa version. The rpm release is
769 # specified in the specfile.
771 # Revision 1.10 2001/06/07 17:27:45 swa
772 # added suse build section
774 # Revision 1.9 2001/06/04 18:31:58 swa
775 # files are now prefixed with either `confdir' or `logdir'.
776 # `make redhat-dist' replaces both entries confdir and logdir
779 # Revision 1.8 2001/06/04 10:44:57 swa
780 # `make redhatr-dist' now works. Except for the paths
781 # in the config file.
783 # Revision 1.7 2001/06/03 17:09:09 swa
784 # swa for oes: reversed my earlier change
786 # Revision 1.6 2001/06/03 17:07:27 swa
789 # Revision 1.5 2001/06/03 13:57:26 swa
790 # compile cgi.c (for andreas' GUI)
792 # Revision 1.4 2001/05/31 21:18:45 jongfoster
793 # Added files actions.[ch], actionlist.h, list.[ch] to Makefile
795 # Revision 1.3 2001/05/29 20:02:48 joergs
796 # Changes for AmigaOS added.
798 # Revision 1.2 2001/05/17 22:23:23 oes
799 # - Added auto-generation of CRLFs for Win32 config files
800 # - Added comment-prefix to all Win32-only options in the config file
801 # and provided auto stripping of this prefix for the Win32 platform by make
803 # Revision 1.1.1.1 2001/05/15 13:59:00 oes
804 # Initial import of version 2.9.3 source tree