Copying from 3.0 branch
[privoxy.git] / GNUmakefile.in
1 # Note:  Makefile is built automatically from Makefile.in
2 #
3 # $Id: GNUmakefile.in,v 1.111 2002/06/05 00:26:21 hal9 Exp $
4 #
5 # Written by and Copyright (C) 2001 the SourceForge
6 # Privoxy team. http://www.privoxy.org/
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
31 #############################################################################
32 # Set make command correctly
33 #############################################################################
34 @SET_MAKE@
35
36 #############################################################################
37 # Version number (for RPM)
38 #############################################################################
39
40 VERSION_MAJOR = @VERSION_MAJOR@
41 VERSION_MINOR = @VERSION_MINOR@
42 VERSION_POINT = @VERSION_POINT@
43 CODE_STATUS   = @CODE_STATUS@
44 VERSION       = $(VERSION_MAJOR).$(VERSION_MINOR).$(VERSION_POINT)
45 RPM_VERSION   = $(VERSION)
46
47
48 #############################################################################
49 # Source directories
50 #############################################################################
51 DIR_PRIVOXY_ROOT     := .
52 DIR_PRIVOXY_SRC      := $(DIR_PRIVOXY_ROOT)/src
53 DIR_PRIVOXY_SRC_PCRE := $(DIR_PRIVOXY_ROOT)/pcre
54 DIR_PRIVOXY_OBJ      := $(DIR_PRIVOXY_ROOT)/obj
55
56 #############################################################################
57 # Directories for "make install"
58 #############################################################################
59
60 DEST         = @prefix@
61 CONFDEST     = @prefix@@sysconfdir@
62 SBIN_DEST    = @prefix@@sbindir@
63 MAN_DEST     = @prefix@@mandir@
64 DOK_WEB_USEM = doc/webserver/user-manual
65
66 #############################################################################
67 # Build tools
68 #############################################################################
69
70 PROGRAM    = privoxy@EXEEXT@
71 CC         = @CC@
72 ECHO       = echo
73 GZIP_PROG  = gzip
74 INSTALL    = @INSTALL@
75 INSTALL_P  = -m 0750 -g @GROUP@ -o @USER@ -b
76 INSTALL_T  = -m 0640 -g @GROUP@ -o @USER@ -b
77 INSTALL_D  = -m 0750 -g @GROUP@ -o @USER@ -d
78 LD         = @CC@
79 RM         = rm -f
80 STRIP_PROG = strip
81 SED        = sed
82 CAT        = cat
83 RPM        = rpm
84 MV         = mv
85 TAR        = tar
86 LN         = ln
87 WDUMP      = @WDUMP@ -dump
88 JADECAT    = @JADECAT@
89 JADEBIN    = @JADEBIN@
90 DOC_STATUS = @DOC_STATUS@
91 # Note: Please make sure that -d ldp.dsl\#html stays the last option to
92 #       $(JADEBIN), because for some targets "-notoc" will be appended
93 #       to it (--> "ldp.dsl\#html-notoc"). 
94 DB         = $(JADEBIN) $(JADECAT) -i$(DOC_STATUS) -ihtml -t sgml  -D.. -d ldp.dsl\#html
95 MAN2HTML   = @MAN2HTML@
96 G2H_CMD    = groff -mandoc -Thtml
97 TARGET_OS  = @host@
98 PERL       = perl
99 DOC_DIR    = doc/source
100 DOC_TMP    = $(DOC_DIR)/tmp
101
102
103 #User Group paras
104 USER       = @USER@
105 GROUP      = @GROUP@
106
107 # Program to do LF->CRLF
108 #
109 # The sed version should be the most portable, but it doesn't work for me,
110 # the other two do.  FIXME.
111 #   - Jon
112 #DOSFILTER  = $(SED) -e $$'s,$$,\r,'
113 #DOSFILTER  = gawk -v ORS='\r\n' '{print $0;}'
114 DOSFILTER  = $(PERL) -p -e 's/\n/\r\n/'
115
116 #############################################################################
117 # Setup for make distribution rh and suse for now 
118 #############################################################################
119
120 TAR_ARCH = /tmp/privoxy-$(RPM_VERSION).tar.gz
121 RPM_BASE = @RPM_BASE@
122
123 #############################################################################
124 # We include these files in our distributions
125 #############################################################################
126 # take care that no CVS .cvsignore or other crappy files
127 # are included here
128 # and escape every '#' in the find. doh.
129 CONFIG_FILES = config trust \
130                 default.action \
131                 standard.action user.action  \
132                 default.filter \
133                 `find templates/ -type f | grep -v "CVS" | grep -v "\.\#" | grep -v ".*~" | grep -v ".cvsignore" | grep -v "TAGS"`
134
135 DOC_FILES = AUTHORS LICENSE README ChangeLog \
136                 `find doc/text/ -type f | grep -v "CVS" | grep -v "\.\#" | grep -v ".*~" | grep -v ".cvsignore" | grep -v "TAGS"` \
137                 `find doc/webserver/ -name "*.html" | grep -v "\(webserver\|team\)\/index\.html"` \
138                 `find doc/webserver/ -name "*.css"` \
139                 privoxy.1
140
141 #############################################################################
142 # Filenames and libraries
143 #############################################################################
144
145 C_SRC  =          \
146   $(DIR_PRIVOXY_SRC)/actions.c   \
147   $(DIR_PRIVOXY_SRC)/cgi.c       \
148   $(DIR_PRIVOXY_SRC)/cgiedit.c   \
149   $(DIR_PRIVOXY_SRC)/cgisimple.c \
150   $(DIR_PRIVOXY_SRC)/deanimate.c \
151   $(DIR_PRIVOXY_SRC)/encode.c    \
152   $(DIR_PRIVOXY_SRC)/errlog.c    \
153   $(DIR_PRIVOXY_SRC)/filters.c   \
154   $(DIR_PRIVOXY_SRC)/gateway.c   \
155   $(DIR_PRIVOXY_SRC)/jbsockets.c \
156   $(DIR_PRIVOXY_SRC)/jcc.c       \
157   $(DIR_PRIVOXY_SRC)/killpopup.c \
158   $(DIR_PRIVOXY_SRC)/list.c      \
159   $(DIR_PRIVOXY_SRC)/loadcfg.c   \
160   $(DIR_PRIVOXY_SRC)/loaders.c   \
161   $(DIR_PRIVOXY_SRC)/miscutil.c  \
162   $(DIR_PRIVOXY_SRC)/parsers.c   \
163   $(DIR_PRIVOXY_SRC)/ssplit.c    \
164   $(DIR_PRIVOXY_SRC)/urlmatch.c
165
166 C_OBJS = $(C_SRC:$(DIR_PRIVOXY_SRC)/%.c=$(DIR_PRIVOXY_OBJ)/%.@OBJEXT@)
167 C_HDRS = $(C_SRC:.c=.h) project.h actionlist.h
168
169 W32_SRC   = @WIN_ONLY@$(DIR_PRIVOXY_SRC)/w32log.c $(DIR_PRIVOXY_SRC)/w32taskbar.c $(DIR_PRIVOXY_SRC)/win32.c
170 W32_FILES = @WIN_ONLY@$(DIR_PRIVOXY_OBJ)/w32res.res
171 W32_OBJS  = @WIN_ONLY@$(W32_SRC:$(DIR_PRIVOXY_SRC)/%.c=$(DIR_PRIVOXY_OBJ)/%.@OBJEXT@) $(W32_FILES)
172 W32_HDRS  = @WIN_ONLY@$(DIR_PRIVOXY_SRC)/w32log.h $(DIR_PRIVOXY_SRC)/w32taskbar.h $(DIR_PRIVOXY_SRC)/win32.h $(DIR_PRIVOXY_SRC)/w32res.h
173 W32_LIB   = @WIN_ONLY@-lwsock32 -lcomctl32
174 W32_INIS  = @WIN_ONLY@config.txt trust.txt
175
176 PCRS_SRC     = @STATIC_PCRS_ONLY@$(DIR_PRIVOXY_SRC)/pcrs.c
177 PCRS_OBJS    = @STATIC_PCRS_ONLY@$(PCRS_SRC:$(DIR_PRIVOXY_SRC)/%.c=$(DIR_PRIVOXY_OBJ)/%.@OBJEXT@)
178 PCRS_HDRS    = @STATIC_PCRS_ONLY@$(PCRS_SRC:.c=.h)
179
180 PCRE_SRC     = @STATIC_PCRE_ONLY@$(DIR_PRIVOXY_SRC_PCRE)/get.c $(DIR_PRIVOXY_SRC_PCRE)/maketables.c $(DIR_PRIVOXY_SRC_PCRE)/study.c $(DIR_PRIVOXY_SRC_PCRE)/pcre.c
181 PCRE_OBJS    = @STATIC_PCRE_ONLY@$(PCRE_SRC:$(DIR_PRIVOXY_SRC_PCRE)/%.c=$(DIR_PRIVOXY_OBJ)/%.@OBJEXT@)
182 PCRE_HDRS    = @STATIC_PCRE_ONLY@$(DIR_PRIVOXY_SRC_PCRE)/config.h $(DIR_PRIVOXY_SRC_PCRE)/chartables.c $(DIR_PRIVOXY_SRC_PCRE)/internal.h $(DIR_PRIVOXY_SRC_PCRE)/pcre.h
183
184 # No REGEX (maybe because dynamically linked pcreposix):
185 REGEX_SRC    =
186 @STATIC_PCRE_ONLY@REGEX_SRC = $(DIR_PRIVOXY_SRC_PCRE)/pcreposix.c
187
188 REGEX_OBJS   = $(REGEX_SRC:$(DIR_PRIVOXY_SRC_PCRE)/%.c=$(DIR_PRIVOXY_OBJ)/%.@OBJEXT@)
189 REGEX_HDRS   = $(REGEX_SRC:.c=.h)
190
191 # Dependencies introduced by #include "project.h".
192 PROJECT_H_DEPS = $(DIR_PRIVOXY_SRC)/project.h $(REGEX_HDRS) $(PCRS_HDRS) @STATIC_PCRE_ONLY@$(DIR_PRIVOXY_SRC_PCRE)/pcre.h
193
194 # Socket libraries for platforms that need them explicitly defined
195 SOCKET_LIB   = @SOCKET_LIB@
196
197 # PThreads library, if needed.
198 PTHREAD_LIB  = @PTHREAD_ONLY@@PTHREAD_LIB@
199
200 SRCS         = $(C_SRC)  $(W32_SRC)  $(PCRS_SRC)  $(PCRE_SRC)  $(REGEX_SRC)
201 OBJS         = $(C_OBJS) $(W32_OBJS) $(PCRS_OBJS) $(PCRE_OBJS) $(REGEX_OBJS)
202 HDRS         = $(C_HDRS) $(W32_HDRS) $(PCRS_HDRS) $(PCRE_OBJS) $(REGEX_HDRS)
203 LIBS         = @LIBS@ $(W32_LIB) $(SOCKET_LIB) $(PTHREAD_LIB)
204
205
206 #############################################################################
207 # Compiler switches
208 #############################################################################
209
210 # The flag "-mno-win32" can be used by Cygwin to emulate a un?x type build.
211 # The flag "-mwindows -mno-cygwin" will cause Cygwin to use MingW32 for a
212 # Win32 GUI build.
213 # The flag "-pthread" is required if using Pthreads under Linux (and
214 # possibly other OSs).
215 SPECIAL_CFLAGS = @SPECIAL_CFLAGS@
216
217 # Add your flags here 
218 OTHER_CFLAGS =   
219
220 CFLAGS = @CFLAGS@ @CPPFLAGS@ $(OTHER_CFLAGS) $(SPECIAL_CFLAGS) -Wall \
221          @STATIC_PCRE_ONLY@ -Ipcre 
222
223 LDFLAGS = $(DEBUG_CFLAGS) $(SPECIAL_CFLAGS)
224
225
226 #############################################################################
227 # Build section.
228 #
229 # There should NOT be any targets above this line.
230 #############################################################################
231 all: $(PROGRAM)
232
233
234 #############################################################################
235 # Phony targets
236 #############################################################################
237 .PHONY: all inifiles redhat-dist redhat-upload solaris-dist suse-dist \
238 suse-upload win-dist tarball-dist dok redhat-dok webserver clean clobber tags \
239 install conectiva-spec conectiva-dist conectiva-upload debian-dist \
240 debian-upload ensure-wdump ensure-jadebin ensure-dkprefix
241
242
243 #############################################################################
244 # Compile command
245 #############################################################################
246 $(DIR_PRIVOXY_OBJ)/%.o: $(DIR_PRIVOXY_SRC)/%.c $(DIR_PRIVOXY_OBJ)
247         $(CC) -c $(CFLAGS) $(CPPFLAGS) $< -o $@
248
249 $(DIR_PRIVOXY_OBJ)/%.o: $(DIR_PRIVOXY_SRC_PCRE)/%.c $(DIR_PRIVOXY_OBJ)
250         $(CC) -c $(CFLAGS) $(CPPFLAGS) $< -o $@
251
252 $(DIR_PRIVOXY_OBJ):
253         mkdir obj
254
255 #############################################################################
256 # Win32 config files
257 #############################################################################
258
259 inifiles: $(W32_INIS)
260
261 config.txt: config
262         $(SED) -e 's!\trustfile trust!trustfile trust.txt!' \
263                -e 's!\jarfile jarfile!jarfile jar.log!' \
264                -e 's!\logfile logfile!logfile privoxy.log!' \
265                -e 's!#Win32-only: !!' \
266                < $< | \
267                $(DOSFILTER) > $@
268         # LF to CRLF in default.action
269         $(DOSFILTER) <default.action >default.action.txt && mv default.action.txt default.action
270         # LF to CRLF in default.filter
271         $(DOSFILTER) <default.filter >default.filter.txt && mv default.filter.txt default.filter
272
273 trust.txt: trust
274         $(DOSFILTER) < $< > $@ 
275
276 re_filterfile.txt: re_filterfile
277         $(DOSFILTER) < $< > $@ 
278
279
280 #############################################################################
281 # Pre-dist check:
282 #############################################################################
283 dist-check:
284         @if [ -d CVS ]; then \
285            $(ECHO) "***************************************************"; \
286            $(ECHO) "***                                             ***"; \
287            $(ECHO) "***                  WARNING                    ***"; \
288            $(ECHO) "***                                             ***"; \
289            $(ECHO) "*** The presence of a CVS subdirectory suggests ***"; \
290            $(ECHO) "*** that you are trying to build a distribution ***"; \
291            $(ECHO) "*** package based on a checked out, not an      ***"; \
292            $(ECHO) "*** exported copy of the source tree. Please    ***"; \
293            $(ECHO) "*** see \"Releasing a new version\" in the        ***"; \
294            $(ECHO) "*** developer manual.                           ***"; \
295            $(ECHO) "***                                             ***"; \
296            $(ECHO) "***************************************************"; \
297            $(ECHO) "Type \"yes i am sure\" if you are sure that you"; \
298            $(ECHO) -n "really want to proceed: "; \
299            read answer; \
300            if [ "$$answer" != "yes i am sure" ]; then exit 1; fi \
301          fi;
302
303
304 #############################################################################
305 # RPM specifice stuff (SuSE or Redhat, ..)
306 #############################################################################
307 rpm-stuff: dist-check clean clobber 
308         for dir in RPMS SRPMS BUILD SOURCES SPECS; do \
309                 if [ ! -w $(RPM_BASE)/$$dir ]; then \
310                         $(ECHO) "$(RPM_BASE)/$$dir is not writable for you. Maybe try as root."; \
311                         $(ECHO) "Or add a suitable path to .rpmmacros like."; \
312                         $(ECHO) "%_topdir /home/foo/rpm-build"; \
313                         exit 1; \
314                 fi; \
315         done; \
316
317 check-release:
318         @if [ "$(RPM_PACKAGEV)" = "" ]; then \
319                 echo ; \
320                 echo "  ERROR: NO RPM_PACKAGEV VALUE"; \
321                 echo "  No value given for RPM_PACKAGEV. Please use:"; \
322                 echo "  make dist-upload RPM_PACKAGEV=release"; \
323                 echo "  where \"release\" is the release number you want to and"; \
324                 echo "  where \"dist\" is the name of the distro (redhat or suse)"; \
325                 echo ; \
326                 echo "  Ex: make redhat-upload RPM_PACKAGEV=1"; \
327                 echo ""; \
328                 echo "ATTENTION: If your distribution use a specific tag on the"; \
329                 echo "           release field (like \"cl\" for Conectiva, and"; \
330                 echo "           \"mdk\" for Mandrake), DO NOT put it on the value"; \
331                 echo "           given to RPM_PACKAGEV. It will be added automaticaly."; \
332                 echo "           Do it like you would do for a redhat package,"; \
333                 echo "           (i.e. just the number)."; \
334                 echo ; \
335                 exit 1; \
336         fi
337
338
339 #############################################################################
340 # Create Conectiva specfile from RedHat specfile
341 #############################################################################
342 conectiva-spec:
343         $(RM) privoxy-cl.spec
344         chmod a+x genclspec.sh
345         ./genclspec.sh
346
347 #############################################################################
348 # Conectiva distribution for x86
349 #############################################################################
350 conectiva-dist: rpm-stuff conectiva-spec
351
352         $(TAR) --exclude ".cvsignore" --exclude "CVS" --exclude "privoxy-suse.spec" --exclude "privoxy-rh.spec" --exclude "PACKAGERS" -czf $(TAR_ARCH) .
353         $(RPM) --clean -ta  $(TAR_ARCH)
354         if [ -f $(TAR_ARCH) ]; then  $(RM) $(TAR_ARCH); fi
355
356 conectiva-upload: check-release
357         make redhat-upload RPM_PACKAGEV=$(RPM_PACKAGEV)cl
358
359 #############################################################################
360 # redhat distribution alpha and x86
361 #############################################################################
362 redhat-dist: rpm-stuff
363
364         $(TAR) --exclude ".cvsignore" --exclude "CVS" --exclude "privoxy-suse.spec" --exclude "privoxy-cl.spec" --exclude "PACKAGERS" -czf $(TAR_ARCH) .
365         $(RPM) --clean -ta  $(TAR_ARCH)
366         if [ -f $(TAR_ARCH) ]; then  $(RM) $(TAR_ARCH); fi
367
368 # anonymously ncftps the rpms to sourceforge
369 redhat-upload: check-release
370         ncftpput -u anonymous -p ijbswa-developers@lists.sourceforge.net upload.sourceforge.net /incoming $(RPM_BASE)/SRPMS/privoxy-$(RPM_VERSION)-$(RPM_PACKAGEV).src.rpm
371 # better should use `arch` here instead of ix86 to support other platforms too
372         ncftpput -u anonymous -p ijbswa-developers@lists.sourceforge.net upload.sourceforge.net /incoming $(RPM_BASE)/RPMS/*/privoxy-$(RPM_VERSION)-$(RPM_PACKAGEV).*.rpm
373         @$(ECHO) -------------------------------------------------------
374         @$(ECHO) Now goto
375         @$(ECHO) http://sourceforge.net/project/admin/editpackages.php?group_id=11118
376         @$(ECHO) ... and release the files.
377         @$(ECHO) -------------------------------------------------------
378      # w3m http://sourceforge.net/project/admin/editpackages.php?group_id=11118
379
380 #############################################################################
381 # suse distribution. works fine. no need to be root. 
382 #############################################################################
383 suse-dist: rpm-stuff
384 #       TMPFILE=$$(mktemp -q /tmp/$(PROGRAM).XXXXXX); \
385 #       if $(SED) -e 's/^\(Version:\).*/\1 $(RPM_VERSION)/g' \
386 #              -e 's/^\(Release:\).*/\1 $(RPM_PACKAGEV)/g' \
387 #               privoxy-suse.spec > $$TMPFILE ; then \
388 #       $(MV) -f $$TMPFILE privoxy-suse.spec; \
389 #       else \
390 #               $(ECHO) "Could not set version info in specfile."; \
391 #       exit 1;\
392 #       fi
393
394         $(TAR) --exclude ".cvsignore" --exclude "CVS" --exclude "privoxy-rh.spec" --exclude "privoxy-cl.spec" --exclude "PACKAGERS" -czf $(TAR_ARCH) .
395         $(RPM) --clean -ta  $(TAR_ARCH)
396         if [ -f $(TAR_ARCH) ]; then  $(RM) $(TAR_ARCH); fi
397
398 # anonymously ncftps the rpms to sourceforge
399 suse-upload: check-release
400         ncftpput -u anonymous -p ijbswa-developers@lists.sourceforge.net upload.sourceforge.net /incoming $(RPM_BASE)/SRPMS/privoxy-suse-$(RPM_VERSION)-$(RPM_PACKAGEV).src.rpm
401 # better should use `arch` here instead of ix86 to support other platforms too
402         ncftpput -u anonymous -p ijbswa-developers@lists.sourceforge.net upload.sourceforge.net /incoming $(RPM_BASE)/RPMS/*/privoxy-suse-$(RPM_VERSION)-$(RPM_PACKAGEV).*.rpm
403         @$(ECHO) -------------------------------------------------------
404         @$(ECHO) Now goto
405         @$(ECHO) http://sourceforge.net/project/admin/editpackages.php?group_id=11118
406         @$(ECHO) ... and release the files.
407         @$(ECHO) -------------------------------------------------------
408
409 # handle with care. use with root.
410 suse-clean:
411         $(RPM) -e junkbuster-suse || true
412         $(RM) -r /etc/junkbuster
413         $(RM) -r /etc/rc.d/junkbuster*
414         $(RM) -r /var/run/junkbuster.pid 
415         $(RM) -r /var/log/junkbuster
416         $(RM) /etc/init.d/junkbuster
417         $(RM) /usr/sbin/junkbuster
418         $(RM) /usr/sbin/rcjunkbuster
419         $(RM) /usr/share/man/man1/junkbuster.1.gz
420         $(RPM) -e privoxy-suse || true
421         $(RM) -r /etc/privoxy
422         $(RM) -r /etc/rc.d/privoxy*
423         $(RM) -r /var/run/privoxy.pid 
424         $(RM) -r /var/log/privoxy
425         $(RM) /etc/init.d/privoxy
426         $(RM) /usr/sbin/privoxy
427         $(RM) /usr/sbin/rcprivoxy
428         $(RM) /usr/share/man/man1/privoxy.1.gz
429
430 #############################################################################
431 # generic distribution
432 #############################################################################
433 gen-dist: dist-check
434         @$(ECHO) ""
435         @$(ECHO) "You have run autoconf && autoheader && ./configure right?"
436         @$(ECHO) ""
437         $(MAKE) $(PROGRAM)
438         $(STRIP_PROG) $(PROGRAM)
439         $(LN) -s current ../privoxy-$(VERSION)-$(CODE_STATUS)
440 # add program
441         (cd .. && $(TAR) -cvhf --exclude "PACKAGERS" privoxy-$(TARGET_OS)-$(VERSION)-$(CODE_STATUS)-src.tar privoxy-$(VERSION)-$(CODE_STATUS)/$(PROGRAM))
442 # add config files
443         for foo in $(CONFIG_FILES); do \
444                 (cd .. && $(TAR) -uvhf --exclude "PACKAGERS" privoxy-$(TARGET_OS)-$(VERSION)-$(CODE_STATUS)-src.tar privoxy-$(VERSION)-$(CODE_STATUS)/$$foo;) \
445         done; 
446 # add documentation
447         for foo in $(DOC_FILES); do \
448                 (cd .. && $(TAR) -uvhf --exclude "PACKAGERS" privoxy-$(TARGET_OS)-$(VERSION)-$(CODE_STATUS)-src.tar privoxy-$(VERSION)-$(CODE_STATUS)/$$foo;) \
449         done;
450 # and zip the archive
451         $(RM) ../privoxy-$(VERSION)-$(CODE_STATUS)
452         $(GZIP_PROG) ../privoxy-$(TARGET_OS)-$(VERSION)-$(CODE_STATUS)-src.tar
453         @$(ECHO) Distribution with binary created.
454
455 # anonymously ncftps the package to sourceforge
456 gen-upload:
457         ncftpput -u anonymous -p ijbswa-developers@lists.sourceforge.net upload.sourceforge.net /incoming ../privoxy-$(TARGET_OS)-$(VERSION)-$(CODE_STATUS)-src.tar.gz
458         @$(ECHO) -------------------------------------------------------
459         @$(ECHO) Now goto
460         @$(ECHO) http://sourceforge.net/project/admin/editpackages.php?group_id=11118
461         @$(ECHO) ... and release the files.
462         @$(ECHO) -------------------------------------------------------
463
464 # use with care
465 gen-clean:
466         $(RM) privoxy-$(TARGET_OS)-$(VERSION)-$(CODE_STATUS)-src.tar*
467
468 #############################################################################
469 # solaris distribution. verified on SF machines by swa.
470 #############################################################################
471 solaris-dist: gen-dist
472         @$(ECHO) Done.
473 # anonymously ncftps the package to sourceforge
474 solaris-upload: gen-upload
475         @$(ECHO) Done.
476 # use with care
477 solaris-clean: gen-clean
478         @$(ECHO) Done.
479
480 #############################################################################
481 # hpux distribution
482 #############################################################################
483 hpux-dist:
484         @$(ECHO) coming soon. 
485 hpux-upload:
486         @$(ECHO) coming soon. 
487
488 #############################################################################
489 # debian distribution
490 #############################################################################
491 debian-dist:
492         @$(ECHO) Creating Debian package.  Will exist in parent directory.
493         dpkg-buildpackage -rfakeroot -us -uc
494 debian-upload:
495         ncftpput -u anonymous -p ijbswa-developers@lists.sourceforge.net upload.sourceforge.net /incoming ../privoxy_$(shell dpkg-parsechangelog | grep "Version" | sed "s/Version: //")_$(shell dpkg --print-architecture).deb
496         @$(ECHO) -------------------------------------------------------
497         @$(ECHO) Now goto
498         @$(ECHO) http://sourceforge.net/project/admin/editpackages.php?group_id=11118
499         @$(ECHO) ... and release the files.
500         @$(ECHO) -------------------------------------------------------
501
502
503 #############################################################################
504 # macosx distribution
505 #############################################################################
506 macosx-dist:
507         @$(ECHO) coming soon. 
508 macosx-upload:
509         @$(ECHO) coming soon. 
510
511 #############################################################################
512 # amiga distribution
513 #############################################################################
514 amiga-dist:
515         @$(ECHO) coming soon. 
516 amiga-upload:
517         @$(ECHO) coming soon. 
518
519 #############################################################################
520 # freebsd distribution. verified on SF machines by swa.
521 #############################################################################
522 freebsd-dist: gen-dist
523         @$(ECHO) Done.
524 # anonymously ncftps the package to sourceforge
525 freebsd-upload: gen-upload
526         @$(ECHO) Done.
527 # use with care
528 freebsd-clean: gen-clean
529         @$(ECHO) Done.
530
531 #############################################################################
532 # Windows distribution
533 #############################################################################
534 win-dist:
535         @$(ECHO) RTFM.  You shouldn't run configure before making
536         @$(ECHO) the Windows release, so you need to start again from
537         @$(ECHO) a clean CVS export.
538         @false
539
540
541 #############################################################################
542 # Tarball distribution: No CVS dirs, dotfiles, debian build dir,
543 # (FIXME:) only parts of the static / generated docs mix in doc/webserver
544 #############################################################################
545
546 tarball-dist: dist-check clean clobber
547         $(LN) -s current ../privoxy-$(VERSION)-$(CODE_STATUS)
548
549         for i in `find . -type f -a -not \( -path "*/CVS*" -o -name ".*" \
550         -o -path "*/debian/*" -o -path "*/actions/*" -o -name "*.php" -o -name "PACKAGERS" \)`; do \
551            files="$$files privoxy-$(VERSION)-$(CODE_STATUS)/$$i"; \
552         done &&  \
553         cd .. && $(TAR) -cvhf privoxy-$(VERSION)-$(CODE_STATUS)-src.tar $$files ; \
554
555 # and zip the archive
556         $(RM) ../privoxy-$(VERSION)-$(CODE_STATUS) 
557         $(GZIP_PROG) ../privoxy-$(VERSION)-$(CODE_STATUS)-src.tar
558         @$(ECHO) Tarball distribution created.
559
560 # anonymously ncftps the tarball to sourceforge
561 tarball-upload:
562         ncftpput -u anonymous -p ijbswa-developers@lists.sourceforge.net upload.sourceforge.net /incoming ../privoxy-$(VERSION)-$(CODE_STATUS)-src.tar.gz
563         @$(ECHO) -------------------------------------------------------
564         @$(ECHO) Now goto
565         @$(ECHO) http://sourceforge.net/project/admin/editpackages.php?group_id=11118
566         @$(ECHO) ... and release the files.
567         @$(ECHO) -------------------------------------------------------
568
569 tarball-clean:
570         $(RM) ../privoxy-$(VERSION)-$(CODE_STATUS)-src.tar.gz
571
572 #############################################################################
573 #
574 # Documentation
575 #
576 # converts doc/source/*.sgml into html, text and man pages
577 #
578 #############################################################################
579
580
581 dok:
582         cd $(DOC_DIR) && $(MAKE)
583
584 #############################################################################
585 #
586 # Webserver
587 #
588 # moves dokumentation to webserver
589 #
590 #############################################################################
591 webserver: tidy
592         @$(ECHO) -------------------------------------------------------
593         @$(ECHO) You have run make dok/redhat-dok before, right?
594         @$(ECHO) Note that this command scps all stuff to the webserver,
595         @$(ECHO) it will not remove obsolete documents.
596         @$(ECHO) -------------------------------------------------------
597
598         @$(ECHO) Uploading 
599         @cd doc/webserver; \
600           upload=`find . -type f -a -not \( -path "*/CVS*" -o -path "*/results*" \)`; \
601           $(TAR) c $$upload | ssh ijbswa.sourceforge.net 'cd /home/groups/i/ij/ijbswa/htdocs/; tar xvm 2>&1 | grep -v timestamp'
602
603         @$(ECHO) Fixing permissions
604         @ssh ijbswa.sourceforge.net 'chmod -R 775 /home/groups/i/ij/ijbswa/htdocs 2>/dev/null; true'
605         @ssh ijbswa.sourceforge.net 'find /home/groups/i/ij/ijbswa/htdocs/ -type f | xargs chmod 664 2>/dev/null; true'
606         @ssh ijbswa.sourceforge.net 'chmod 666 /home/groups/i/ij/ijbswa/htdocs/actions/results/actions-feedback.txt 2>/dev/null; true'
607
608
609 web-actions: tidy
610         @$(ECHO) Uploading 
611         @cd doc/webserver/actions; \
612           upload=`find . -type f -a -not \( -path "*/CVS*" -o -path "*/results*" \)`; \
613           $(TAR) c $$upload | ssh ijbswa.sourceforge.net 'cd /home/groups/i/ij/ijbswa/htdocs/actions; tar xvm'
614
615         @$(ECHO) Fixing permissions
616         @ssh ijbswa.sourceforge.net 'find /home/groups/i/ij/ijbswa/htdocs/actions/ -type f | xargs chmod 664 2>/dev/null'
617         @ssh ijbswa.sourceforge.net 'chmod 666 /home/groups/i/ij/ijbswa/htdocs/actions/results/actions-feedback.txt 2>/dev/null'
618
619 #############################################################################
620 # Source file dependencies
621 #############################################################################
622
623 $(DIR_PRIVOXY_OBJ)/actions.@OBJEXT@:   $(DIR_PRIVOXY_SRC)/actions.c   $(DIR_PRIVOXY_SRC)/actions.h   $(DIR_PRIVOXY_SRC)/config.h $(PROJECT_H_DEPS) $(DIR_PRIVOXY_SRC)/errlog.h  $(DIR_PRIVOXY_SRC)/jcc.h       $(DIR_PRIVOXY_SRC)/list.h    $(DIR_PRIVOXY_SRC)/loaders.h   $(DIR_PRIVOXY_SRC)/miscutil.h  $(DIR_PRIVOXY_SRC)/actionlist.h
624 $(DIR_PRIVOXY_OBJ)/cgi.@OBJEXT@:       $(DIR_PRIVOXY_SRC)/cgi.c       $(DIR_PRIVOXY_SRC)/cgi.h       $(DIR_PRIVOXY_SRC)/config.h $(PROJECT_H_DEPS) $(DIR_PRIVOXY_SRC)/cgiedit.h $(DIR_PRIVOXY_SRC)/cgisimple.h $(DIR_PRIVOXY_SRC)/list.h    $(DIR_PRIVOXY_SRC)/pcrs.h      $(DIR_PRIVOXY_SRC)/encode.h    $(DIR_PRIVOXY_SRC)/ssplit.h     $(DIR_PRIVOXY_SRC)/jcc.h      $(DIR_PRIVOXY_SRC)/filters.h  $(DIR_PRIVOXY_SRC)/actions.h $(DIR_PRIVOXY_SRC)/errlog.h    $(DIR_PRIVOXY_SRC)/miscutil.h
625 $(DIR_PRIVOXY_OBJ)/cgiedit.@OBJEXT@:   $(DIR_PRIVOXY_SRC)/cgiedit.c   $(DIR_PRIVOXY_SRC)/cgiedit.h   $(DIR_PRIVOXY_SRC)/config.h $(PROJECT_H_DEPS) $(DIR_PRIVOXY_SRC)/cgi.h     $(DIR_PRIVOXY_SRC)/list.h      $(DIR_PRIVOXY_SRC)/pcrs.h    $(DIR_PRIVOXY_SRC)/encode.h    $(DIR_PRIVOXY_SRC)/ssplit.h    $(DIR_PRIVOXY_SRC)/jcc.h        $(DIR_PRIVOXY_SRC)/filters.h  $(DIR_PRIVOXY_SRC)/actions.h  $(DIR_PRIVOXY_SRC)/errlog.h  $(DIR_PRIVOXY_SRC)/miscutil.h
626 $(DIR_PRIVOXY_OBJ)/cgisimple.@OBJEXT@: $(DIR_PRIVOXY_SRC)/cgisimple.c $(DIR_PRIVOXY_SRC)/cgisimple.h $(DIR_PRIVOXY_SRC)/config.h $(PROJECT_H_DEPS) $(DIR_PRIVOXY_SRC)/cgi.h     $(DIR_PRIVOXY_SRC)/list.h      $(DIR_PRIVOXY_SRC)/pcrs.h    $(DIR_PRIVOXY_SRC)/encode.h    $(DIR_PRIVOXY_SRC)/ssplit.h    $(DIR_PRIVOXY_SRC)/jcc.h        $(DIR_PRIVOXY_SRC)/filters.h  $(DIR_PRIVOXY_SRC)/actions.h  $(DIR_PRIVOXY_SRC)/errlog.h  $(DIR_PRIVOXY_SRC)/miscutil.h
627 $(DIR_PRIVOXY_OBJ)/deanimate.@OBJEXT@: $(DIR_PRIVOXY_SRC)/deanimate.c $(DIR_PRIVOXY_SRC)/deanimate.h $(DIR_PRIVOXY_SRC)/config.h $(PROJECT_H_DEPS)
628 $(DIR_PRIVOXY_OBJ)/encode.@OBJEXT@:    $(DIR_PRIVOXY_SRC)/encode.c    $(DIR_PRIVOXY_SRC)/encode.h    $(DIR_PRIVOXY_SRC)/config.h
629 $(DIR_PRIVOXY_OBJ)/errlog.@OBJEXT@:    $(DIR_PRIVOXY_SRC)/errlog.c    $(DIR_PRIVOXY_SRC)/errlog.h    $(DIR_PRIVOXY_SRC)/config.h $(PROJECT_H_DEPS) @WIN_ONLY@$(DIR_PRIVOXY_SRC)/w32log.h
630 $(DIR_PRIVOXY_OBJ)/filters.@OBJEXT@:   $(DIR_PRIVOXY_SRC)/filters.c   $(DIR_PRIVOXY_SRC)/filters.h   $(DIR_PRIVOXY_SRC)/config.h $(PROJECT_H_DEPS) $(DIR_PRIVOXY_SRC)/errlog.h  $(DIR_PRIVOXY_SRC)/encode.h    $(DIR_PRIVOXY_SRC)/gateway.h $(DIR_PRIVOXY_SRC)/jbsockets.h $(DIR_PRIVOXY_SRC)/jcc.h       $(DIR_PRIVOXY_SRC)/loadcfg.h    $(DIR_PRIVOXY_SRC)/parsers.h  $(DIR_PRIVOXY_SRC)/ssplit.h   $(DIR_PRIVOXY_SRC)/cgi.h     $(DIR_PRIVOXY_SRC)/deanimate.h @WIN_ONLY@$(DIR_PRIVOXY_SRC)/win32.h 
631 $(DIR_PRIVOXY_OBJ)/gateway.@OBJEXT@:   $(DIR_PRIVOXY_SRC)/gateway.c   $(DIR_PRIVOXY_SRC)/gateway.h   $(DIR_PRIVOXY_SRC)/config.h $(PROJECT_H_DEPS) $(DIR_PRIVOXY_SRC)/errlog.h  $(DIR_PRIVOXY_SRC)/jbsockets.h $(DIR_PRIVOXY_SRC)/jcc.h     $(DIR_PRIVOXY_SRC)/loadcfg.h
632 $(DIR_PRIVOXY_OBJ)/jbsockets.@OBJEXT@: $(DIR_PRIVOXY_SRC)/jbsockets.c $(DIR_PRIVOXY_SRC)/jbsockets.h $(DIR_PRIVOXY_SRC)/config.h $(PROJECT_H_DEPS) $(DIR_PRIVOXY_SRC)/filters.h
633 $(DIR_PRIVOXY_OBJ)/jcc.@OBJEXT@:       $(DIR_PRIVOXY_SRC)/jcc.c       $(DIR_PRIVOXY_SRC)/jcc.h       $(DIR_PRIVOXY_SRC)/config.h $(PROJECT_H_DEPS) $(DIR_PRIVOXY_SRC)/errlog.h  $(DIR_PRIVOXY_SRC)/filters.h   $(DIR_PRIVOXY_SRC)/gateway.h $(DIR_PRIVOXY_SRC)/jbsockets.h $(DIR_PRIVOXY_SRC)/killpopup.h $(DIR_PRIVOXY_SRC)/loadcfg.h    $(DIR_PRIVOXY_SRC)/loaders.h  $(DIR_PRIVOXY_SRC)/miscutil.h $(DIR_PRIVOXY_SRC)/parsers.h @WIN_ONLY@$(DIR_PRIVOXY_SRC)/w32log.h    $(DIR_PRIVOXY_SRC)/win32.h $(DIR_PRIVOXY_SRC)/cgi.h
634 $(DIR_PRIVOXY_OBJ)/killpopup.@OBJEXT@: $(DIR_PRIVOXY_SRC)/killpopup.c $(DIR_PRIVOXY_SRC)/killpopup.h $(DIR_PRIVOXY_SRC)/config.h $(PROJECT_H_DEPS) $(DIR_PRIVOXY_SRC)/jcc.h     $(DIR_PRIVOXY_SRC)/loadcfg.h
635 $(DIR_PRIVOXY_OBJ)/list.@OBJEXT@:      $(DIR_PRIVOXY_SRC)/list.c      $(DIR_PRIVOXY_SRC)/list.h      $(DIR_PRIVOXY_SRC)/config.h $(PROJECT_H_DEPS) $(DIR_PRIVOXY_SRC)/list.h    $(DIR_PRIVOXY_SRC)/miscutil.h
636 $(DIR_PRIVOXY_OBJ)/loadcfg.@OBJEXT@:   $(DIR_PRIVOXY_SRC)/loadcfg.c   $(DIR_PRIVOXY_SRC)/loadcfg.h   $(DIR_PRIVOXY_SRC)/config.h $(PROJECT_H_DEPS) $(DIR_PRIVOXY_SRC)/errlog.h  $(DIR_PRIVOXY_SRC)/filters.h   $(DIR_PRIVOXY_SRC)/gateway.h $(DIR_PRIVOXY_SRC)/jbsockets.h $(DIR_PRIVOXY_SRC)/jcc.h       $(DIR_PRIVOXY_SRC)/killpopup.h  $(DIR_PRIVOXY_SRC)/loaders.h  $(DIR_PRIVOXY_SRC)/miscutil.h $(DIR_PRIVOXY_SRC)/parsers.h @WIN_ONLY@$(DIR_PRIVOXY_SRC)/w32log.h    $(DIR_PRIVOXY_SRC)/win32.h
637 $(DIR_PRIVOXY_OBJ)/loaders.@OBJEXT@:   $(DIR_PRIVOXY_SRC)/loaders.c   $(DIR_PRIVOXY_SRC)/loaders.h   $(DIR_PRIVOXY_SRC)/config.h $(PROJECT_H_DEPS) $(DIR_PRIVOXY_SRC)/errlog.h  $(DIR_PRIVOXY_SRC)/encode.h    $(DIR_PRIVOXY_SRC)/filters.h $(DIR_PRIVOXY_SRC)/gateway.h   $(DIR_PRIVOXY_SRC)/jcc.h       $(DIR_PRIVOXY_SRC)/loadcfg.h    $(DIR_PRIVOXY_SRC)/miscutil.h $(DIR_PRIVOXY_SRC)/parsers.h  $(DIR_PRIVOXY_SRC)/ssplit.h
638 $(DIR_PRIVOXY_OBJ)/miscutil.@OBJEXT@:  $(DIR_PRIVOXY_SRC)/miscutil.c  $(DIR_PRIVOXY_SRC)/miscutil.h  $(DIR_PRIVOXY_SRC)/config.h
639 $(DIR_PRIVOXY_OBJ)/parsers.@OBJEXT@:   $(DIR_PRIVOXY_SRC)/parsers.c   $(DIR_PRIVOXY_SRC)/parsers.h   $(DIR_PRIVOXY_SRC)/config.h $(PROJECT_H_DEPS) $(DIR_PRIVOXY_SRC)/errlog.h  $(DIR_PRIVOXY_SRC)/encode.h    $(DIR_PRIVOXY_SRC)/filters.h $(DIR_PRIVOXY_SRC)/jbsockets.h $(DIR_PRIVOXY_SRC)/jcc.h       $(DIR_PRIVOXY_SRC)/loadcfg.h    $(DIR_PRIVOXY_SRC)/loaders.h  $(DIR_PRIVOXY_SRC)/miscutil.h $(DIR_PRIVOXY_SRC)/ssplit.h
640 $(DIR_PRIVOXY_OBJ)/ssplit.@OBJEXT@:    $(DIR_PRIVOXY_SRC)/ssplit.c    $(DIR_PRIVOXY_SRC)/ssplit.h    $(DIR_PRIVOXY_SRC)/config.h                   $(DIR_PRIVOXY_SRC)/miscutil.h
641 $(DIR_PRIVOXY_OBJ)/urlmatch.@OBJEXT@:  $(DIR_PRIVOXY_SRC)/urlmatch.c  $(DIR_PRIVOXY_SRC)/urlmatch.h  $(DIR_PRIVOXY_SRC)/config.h $(PROJECT_H_DEPS) $(DIR_PRIVOXY_SRC)/errlog.h  $(DIR_PRIVOXY_SRC)/miscutil.h  $(DIR_PRIVOXY_SRC)/ssplit.h
642
643 # PCRS
644 $(DIR_PRIVOXY_OBJ)/pcrs.@OBJEXT@: $(DIR_PRIVOXY_SRC)/pcrs.c $(DIR_PRIVOXY_SRC_PCRE)/pcre.h $(DIR_PRIVOXY_SRC)/pcrs.h
645
646 # PCRE
647 $(DIR_PRIVOXY_OBJ)/get.@OBJEXT@:        $(DIR_PRIVOXY_SRC_PCRE)/get.c        $(DIR_PRIVOXY_SRC_PCRE)/config.h $(DIR_PRIVOXY_SRC_PCRE)/internal.h $(DIR_PRIVOXY_SRC_PCRE)/pcre.h
648 $(DIR_PRIVOXY_OBJ)/maketables.@OBJEXT@: $(DIR_PRIVOXY_SRC_PCRE)/maketables.c $(DIR_PRIVOXY_SRC_PCRE)/config.h $(DIR_PRIVOXY_SRC_PCRE)/internal.h $(DIR_PRIVOXY_SRC_PCRE)/pcre.h
649 $(DIR_PRIVOXY_OBJ)/pcre.@OBJEXT@:       $(DIR_PRIVOXY_SRC_PCRE)/pcre.c       $(DIR_PRIVOXY_SRC_PCRE)/config.h $(DIR_PRIVOXY_SRC_PCRE)/internal.h $(DIR_PRIVOXY_SRC_PCRE)/pcre.h $(DIR_PRIVOXY_SRC_PCRE)/chartables.c 
650 $(DIR_PRIVOXY_OBJ)/pcreposix.@OBJEXT@:  $(DIR_PRIVOXY_SRC_PCRE)/pcreposix.c  $(DIR_PRIVOXY_SRC_PCRE)/config.h $(DIR_PRIVOXY_SRC_PCRE)/internal.h $(DIR_PRIVOXY_SRC_PCRE)/pcre.h $(DIR_PRIVOXY_SRC_PCRE)/pcreposix.h
651 $(DIR_PRIVOXY_OBJ)/study.@OBJEXT@:      $(DIR_PRIVOXY_SRC_PCRE)/study.c      $(DIR_PRIVOXY_SRC_PCRE)/config.h $(DIR_PRIVOXY_SRC_PCRE)/internal.h $(DIR_PRIVOXY_SRC_PCRE)/pcre.h
652
653 # An auxiliary program makes the PCRE default character table source
654
655 $(DIR_PRIVOXY_SRC_PCRE)/chartables.c:   $(DIR_PRIVOXY_OBJ)/dftables@EXEEXT@
656                 $(DIR_PRIVOXY_SRC_PCRE)/dftables@EXEEXT@ >$(DIR_PRIVOXY_SRC_PCRE)/chartables.c
657
658 $(DIR_PRIVOXY_OBJ)/dftables@EXEEXT@:       $(DIR_PRIVOXY_SRC_PCRE)/dftables.c $(DIR_PRIVOXY_SRC_PCRE)/maketables.c $(DIR_PRIVOXY_SRC_PCRE)/pcre.h $(DIR_PRIVOXY_SRC_PCRE)/internal.h $(DIR_PRIVOXY_SRC_PCRE)/config.h
659                 $(CC) -o $(DIR_PRIVOXY_SRC_PCRE)/dftables@EXEEXT@ $(CFLAGS) $(DIR_PRIVOXY_SRC_PCRE)/dftables.c
660
661 # Win32
662 $(DIR_PRIVOXY_OBJ)/w32log.@OBJEXT@: w32log.c errlog.h config.h jcc.h loadcfg.h miscutil.h $(DIR_PRIVOXY_SRC_PCRE)/pcre.h $(DIR_PRIVOXY_SRC_PCRE)/pcreposix.h pcrs.h project.h w32log.h w32taskbar.h win32.h
663 $(DIR_PRIVOXY_OBJ)/w32taskbar.@OBJEXT@: w32taskbar.c config.h w32log.h w32taskbar.h
664 $(DIR_PRIVOXY_OBJ)/win32.@OBJEXT@: win32.c config.h jcc.h loadcfg.h $(DIR_PRIVOXY_SRC_PCRE)/pcre.h $(DIR_PRIVOXY_SRC_PCRE)/pcreposix.h pcrs.h project.h w32log.h win32.h
665
666 $(DIR_PRIVOXY_OBJ)/w32res.res: $(DIR_PRIVOXY_SRC)/w32res.rc \
667                 $(DIR_PRIVOXY_SRC)/w32res.h \
668                 $(DIR_PRIVOXY_SRC)/config.h \
669                 $(DIR_PRIVOXY_SRC)/icons/ico00001.ico \
670                 $(DIR_PRIVOXY_SRC)/icons/ico00002.ico \
671                 $(DIR_PRIVOXY_SRC)/icons/ico00003.ico \
672                 $(DIR_PRIVOXY_SRC)/icons/ico00004.ico \
673                 $(DIR_PRIVOXY_SRC)/icons/ico00005.ico \
674                 $(DIR_PRIVOXY_SRC)/icons/ico00006.ico \
675                 $(DIR_PRIVOXY_SRC)/icons/ico00007.ico \
676                 $(DIR_PRIVOXY_SRC)/icons/ico00008.ico \
677                 $(DIR_PRIVOXY_SRC)/icons/idle.ico \
678                 $(DIR_PRIVOXY_SRC)/icons/privoxy.ico
679         windres -D__MINGW32__=0.2 -O coff -i $< -o $@
680
681 # AmigaOS
682 @AMIGAOS_ONLY@OBJS += $(DIR_PRIVOXY_OBJ)/amiga.@OBJEXT@
683 @AMIGAOS_ONLY@CFLAGS += -D__AMIGAVERSION__=\"$(VERSION_MAJOR).$(VERSION_MINOR)$(VERSION_POINT)\" -D__AMIGADATE__=\"`date +%d.%m.%Y`\" -W -m68020 -noixemul -fbaserel -msmall-code
684 @AMIGAOS_ONLY@LDFLAGS += -m68020 -noixemul -fbaserel
685 @AMIGAOS_ONLY@LIBS = -lm /gg/lib/libb/libm020/libnix/swapstack.o
686 $(DIR_PRIVOXY_OBJ)/amiga.@OBJEXT@: $(DIR_PRIVOXY_SRC)/amiga.c $(DIR_PRIVOXY_SRC)/amiga.h $(DIR_PRIVOXY_SRC)/config.h
687
688
689 $(PROGRAM): $(OBJS) $(W32_FILES)
690         $(LD) $(LDFLAGS) -o $(PROGRAM) $(OBJS) $(LIBS)
691
692 clean:
693         $(RM) a.out $(OBJS) $(W32_FILES) $(W32_INIS) $(PROGRAM) \
694         `find . -name TAGS -o -name tags`
695
696 tidy:
697         $(RM) `find . -name "*~"`
698 #       $(RM) `find . -name "#*#"` # what is this for??
699         $(RM) `find . -name ".\#*"`
700
701 clobber: tidy
702         $(RM) GNUmakefile configure config.h.in config.h config.cache config.status config.log logfile \
703               privoxy.log core *.tar.gz *.tar privoxy-cl.spec $(DOC_DIR)/ldp.dsl \
704                     $(DOC_DIR)/GNUmakefile
705
706 #
707 # FIXME: What is all this? 
708 #
709         $(RM) cscope.*  *.pdb *.lib *.exp 
710
711 distclean: clobber
712
713 tags: $(SRCS) $(HDRS)
714         etags $(SRCS) $(HDRS)
715
716 install: all
717         #
718         # FIXME: This is a dirty hack to have an install target
719         #        that works at least for some setups. This needs
720         #        to be fixed!
721         #
722         $(STRIP_PROG) $(PROGRAM)
723         $(INSTALL) $(INSTALL_D) $(SBIN_DEST)
724         $(INSTALL) $(INSTALL_D) $(DEST)/user-manual
725         $(INSTALL) $(INSTALL_D) $(CONFDEST)/templates
726         $(INSTALL) $(INSTALL_D) $(DEST)/$(DOK_WEB_USEM)
727         $(INSTALL) $(INSTALL_P) $(PROGRAM) $(SBIN_DEST)
728         if [ -d "$(DOK_WEB_USEM)" ]; then $(INSTALL) $(INSTALL_T) $(DOK_WEB_USEM)/[a-z]* $(DEST)/$(DOK_WEB_USEM); fi
729         $(INSTALL) $(INSTALL_T) templates/[a-z]* $(CONFDEST)/templates
730         $(INSTALL) $(INSTALL_T) config default.action default.filter trust $(CONFDEST)
731         # FIXME $(ECHO) privoxy.logrotate privoxy.monthly privoxy.weekly
732         # FIXME: Need new manual! $(GZIP_PROG) -c privoxy.1 > $(MAN_DEST)/privoxy.1.gz
733         $(INSTALL) $(INSTALL_P) privoxy.init /etc/init.d/privoxy
734
735 coffee:
736          @perl -e 'print pack "C*", (31,139,8,8,153,63,226,60,2,3,99,111,102,102,101,101,0,109,143,205,13,192,32,8,133,\
737                   239,78,241,110,234,1,28,160,171,152,208,53,26,117,247,22,165,73,137,125,9,1,62,126,2,128,169,5,243,143,\
738                   13,139,49,164,65,100,149,152,102,73,141,88,73,178,116,205,100,69,253,36,102,81,49,83,236,19,225,171,131,\
739                   214,172,163,73,4,168,123,115,71,126,247,122,94,128,178,227,95,154,12,86,215,122,197,249,146,187,54,220,125,\
740                   193,51,228,11,1,0,0);'|zcat
741
742 #############################################################################
743
744 ## Local Variables:
745 ## tab-width: 3
746 ## end:
747
748 # $Log: GNUmakefile.in,v $
749 # Revision 1.111  2002/06/05 00:26:21  hal9
750 # Move all doc build stuff to doc/source/GNUmakefile, leaving a 'make dok'
751 # target only in toplevel. Add DOC_STATUS variable so docs can be built without
752 # touching sgml source.
753 #
754 # Revision 1.110  2002/06/04 14:51:48  jongfoster
755 # Updating for new paths:
756 # - Source files in src/
757 # - Object files in obj/
758 #
759 # Revision 1.109  2002/05/28 09:16:15  oes
760 # Added comment for -notoc kludge
761 #
762 # Revision 1.108  2002/05/28 03:56:08  hal9
763 # make dok-index target for privoxy-index.html. Fix *bak dead soldiers in
764 # doc/webserver.
765 #
766 # Revision 1.107  2002/05/27 23:26:33  mal0rd
767 # Made doc-generation configuration automatic.
768 # References to DB2HTML were removed, not used.
769 # --with-docbook now only needed if in odd path.
770 #
771 # Revision 1.106  2002/05/26 04:55:11  mal0rd
772 # Added debian-dist and debian-upload targets.  Also documented usage.
773 #
774 # Revision 1.105  2002/05/25 22:48:19  hal9
775 # Add -notoc to README build (per oes's dsl magic).
776 #
777 # Revision 1.104  2002/05/24 00:03:49  oes
778 # Use p_doc.css for the Homepage for consistency
779 #
780 # Revision 1.103  2002/05/23 23:19:00  oes
781 # Use dsl without TOC for the homepage
782 #
783 # Revision 1.102  2002/05/16 01:20:17  hal9
784 # make announce target added.
785 #
786 # Revision 1.101  2002/05/15 12:28:46  oes
787 # Trying to keep Hal happy :)
788 #
789 # Revision 1.100  2002/05/08 13:48:18  hal9
790 # Ooops, that trashed JB v2.0.2 comment. Fixed.
791 #
792 # Revision 1.99  2002/05/08 13:42:07  hal9
793 # This fixes the numbering problem on index.html in contact info section (.1.). Using
794 # perl, since its way too convoluted to try to fix proper with docbook.
795 #
796 # Revision 1.98  2002/05/03 14:33:06  oes
797 # Replaced ldp(OK).dsl handling with generation via autoconf; handle all file exeptions to src tarball via find
798 #
799 # Revision 1.97  2002/04/27 20:27:43  swa
800 # no longer needed due to new
801 # PACKAGE_VERSION process
802 #
803 # Revision 1.96  2002/04/27 17:44:32  morcego
804 # - Correcting typo in my name (Rodrigo, not Rodgrigo) :-)
805 # - Using the RM macro everywhere rm is called (either we use, or don't)
806 # - Same for RPM
807 #
808 # Revision 1.95  2002/04/27 15:37:25  swa
809 # replacing directory in document creation process
810 # no longer necessary.
811 #
812 # Revision 1.94  2002/04/27 08:23:29  swa
813 # pdf process reviewed and cleaned up
814 #
815 # Revision 1.93  2002/04/27 04:55:53  morcego
816 # privoxy-cl.spec now gets removed by clobber target
817 #
818 # Revision 1.92  2002/04/27 04:53:40  morcego
819 # Adding --exclude "PACKAGERS" to every tar command that applies (not for
820 #   webserver target)
821 #
822 # Revision 1.91  2002/04/27 04:44:51  morcego
823 # GNUmakefile.in: The tarball created on redhat-dist and suse-dist now ignore
824 #   the PACKAGERS file, as well privoxy-cl.spec (in case it was created)
825 # GNUmakefile.in: New targets -> conectiva-spec, conectiva-dist and
826 #   conectiva-upload
827 # genclspec.sh  : New file to generate, from privoxy-rh.spec, a specfile
828 #   for Conectiva Linux
829 #
830 # Revision 1.90  2002/04/26 17:46:53  swa
831 # be consistent
832 #
833 # Revision 1.89  2002/04/26 17:20:54  swa
834 # just produce single html files to proces them later with Destiller or somesuch. looks prettier.
835 #
836 # Revision 1.88  2002/04/25 19:13:57  morcego
837 # Removed RPM release number declaration on configure.in
838 # Changed makefile to use given value for RPM_PACKAGEV when on uploading
839 # targets (will produce an error, explaining who to do it, if no value
840 # if provided).
841 #
842 # Revision 1.87  2002/04/23 14:10:59  swa
843 # now create pdf documents
844 #
845 # Revision 1.86  2002/04/15 04:30:27  hal9
846 # Missed two -pi.bak's on perl/cygwin problem.
847 #
848 # Revision 1.85  2002/04/14 01:05:34  hal9
849 # Revert dok-webserver change for SF logo.
850 #
851 # Revision 1.84  2002/04/13 22:43:25  hal9
852 # -Fix dok-webserver for SF logo (more perl).
853 # -Change all perl -pi to perl -pi.bak for Cygwin problem.
854 #
855 # Revision 1.83  2002/04/12 09:39:25  oes
856 # Excluding yet more files from tarball; making dist warning yet more scary
857 #
858 # Revision 1.82  2002/04/11 21:07:11  oes
859 # Excluding more files from tarball build
860 #
861 # Revision 1.81  2002/04/11 14:40:27  oes
862 # Fixed typo -- Thanks, Moritz!
863 #
864 # Revision 1.80  2002/04/11 12:50:00  oes
865 # Fixed tarball-dist target
866 #
867 # Revision 1.79  2002/04/11 06:49:28  oes
868 # webserver target: silenced timestamp warnings resulting from uploading westwards, made permissions fixing independant of screwed local dir permissions, suppress (false alarm) make error if not owner of feedback log
869 #
870 # Revision 1.78  2002/04/09 13:37:11  sarantis
871 # fix tar options typo
872 #
873 # Revision 1.77  2002/04/09 13:28:53  swa
874 # build suse and gen-dist with html docs
875 #
876 # Revision 1.76  2002/04/08 22:43:41  oes
877 # Fix: Include dotfiles in fixing webserver permissions
878 #
879 # Revision 1.75  2002/04/08 22:14:59  oes
880 # Silencing tar warnings in the web* targets
881 #
882 # Revision 1.74  2002/04/08 15:22:44  hal9
883 # This has finishing touches for dok building. Should be ready to go.
884 # -The main doc build is now 'make dok', should work on Redhat too.
885 # -Removed man page from main doc build. It is built separately due to
886 #  perl scripts that most aren't likely to have.
887 #
888 # Revision 1.73  2002/04/08 14:03:24  oes
889 # oes for al: Fix install target
890 #
891 # Revision 1.72  2002/04/08 13:42:11  oes
892 # Added safety check to *-dist targets; fixed permissions for feedback logfile
893 #
894 # Revision 1.71  2002/04/07 20:32:03  hal9
895 # -Add meta data kludge for make dok-webserver via $(PERL).
896 # -Add subdirs for 'make dok-release'.
897 #
898 # Revision 1.70  2002/04/07 08:59:40  swa
899 # generated files. do NOT edit.
900 # fixed directory bug in makefile.
901 #
902 # Revision 1.69  2002/04/07 08:10:47  swa
903 # create some of the webserver docs
904 # automatically (in particular if
905 # those docs recycle other documentation
906 # fragments). Now committed webserver's
907 # index file.
908 #
909 # Revision 1.68  2002/04/07 07:58:11  swa
910 # create some of the webserver docs
911 # automatically (in particular if
912 # those docs recycle other documentation
913 # fragments)
914 #
915 # Revision 1.67  2002/04/07 05:31:42  hal9
916 # Add 'dok-release' target:
917 # -Set doc entities to VERSION and CODE_STATUS during make.
918 # -Set doc conditional content flags (stable vs non-stable).
919 # A separate target for the time being but needs to be incorporated into
920 # dok build at some point.
921 # -Filter out a spurious ^G from new man page > html converion in man2html.
922 #
923 # Revision 1.66  2002/04/06 20:28:21  jongfoster
924 # Prettifying groff2html.
925 # Using GNU Make's conditional makefile feature rather than shell "if"s.
926 # (The shell "if"s were hiding errors)
927 # "perl" -> "$(PERL)"
928 # Spaces->tabs in a couple of places.
929 #
930 # Revision 1.65  2002/04/06 05:16:39  hal9
931 # -Add 'authors' and 'man' targets for AUTHORS and man-page (WIP).
932 # -Both of these will soon be generated files.
933 #
934 # Revision 1.64  2002/04/04 22:14:51  oes
935 # No longer rely on find honoring -iname
936 #
937 # Revision 1.63  2002/04/04 21:06:22  swa
938 # cosmetics.
939 #
940 # Revision 1.62  2002/04/04 20:49:50  swa
941 # attempt to consolidate the
942 # different dokbook versions.
943 #
944 # Revision 1.61  2002/04/04 19:18:21  swa
945 # readme was leftover directory. use w3m instead
946 # of lynx to be consistent among developers. use
947 # consistent target naming.
948 #
949 # Revision 1.60  2002/04/04 12:25:41  oes
950 # Tidy webserver upload w/o *~ files, CVS dirs and logfiles and with proper dir and file permissions
951 #
952 # Revision 1.59  2002/04/04 08:32:45  swa
953 # wrong name for tarball-dist target. further fixed content of tarball dist
954 #
955 # Revision 1.58  2002/04/04 06:32:58  hal9
956 # New dok targets for make readme.
957 #
958 # Revision 1.57  2002/04/04 00:36:36  gliptak
959 # always use pcre for matching
960 #
961 # Revision 1.56  2002/04/03 22:28:03  gliptak
962 # Removed references to gnu_regex
963 #
964 # Revision 1.55  2002/04/03 19:54:29  swa
965 # freebsd tested to work. attempt to move tarball dist target forward
966 #
967 # Revision 1.54  2002/04/03 14:54:07  oes
968 # Standard clean and clobber semantics II
969 #
970 # Revision 1.53  2002/04/03 14:19:16  oes
971 # Standard clean and clobber semantics
972 #
973 # Revision 1.52  2002/04/03 02:56:18  hal9
974 # Revert previous FAQ numbering kludge.
975 #
976 # Revision 1.51  2002/04/02 13:03:56  oes
977 # Added fix for webserver permissions
978 #
979 # Revision 1.50  2002/04/02 03:46:24  hal9
980 # Rewrite ldpOK.dsl so that sections are NOT numbered on FAQ, in an effort
981 # to make the Table of Contents not so 'busy' looking. SuSE needs testing :)
982 #
983 # Revision 1.49  2002/03/30 22:20:12  swa
984 # cd didn't work. neither did find.
985 #
986 # Revision 1.48  2002/03/30 19:04:06  swa
987 # people release differently. no good.
988 # I want to make parts of the docs only.
989 #
990 # Revision 1.47  2002/03/30 09:05:21  swa
991 # better packaging. better rpm building.
992 # tar failed on sun (no exclude there).
993 #
994 # Revision 1.46  2002/03/29 20:09:01  swa
995 # al's patch
996 #
997 # Revision 1.45  2002/03/29 19:45:45  swa
998 # for lazy swa
999 #
1000 # Revision 1.44  2002/03/29 17:42:44  gliptak
1001 # Correcting for Solaris tar limitations
1002 #
1003 # Revision 1.43  2002/03/29 07:40:03  swa
1004 # fixed make webserver. doh
1005 #
1006 # Revision 1.42  2002/03/29 06:59:04  swa
1007 # other users could not modify files on webserver
1008 #
1009 # Revision 1.41  2002/03/28 20:43:00  swa
1010 # set make correctly
1011 #
1012 # Revision 1.40  2002/03/28 04:22:44  hal9
1013 # More on man2html stuff.
1014 #
1015 # Revision 1.39  2002/03/28 01:04:14  hal9
1016 # More man2html stuff for docs.
1017 #
1018 # Revision 1.38  2002/03/27 16:02:30  swa
1019 # have a generic target
1020 #
1021 # Revision 1.37  2002/03/27 15:30:26  swa
1022 # have a consistent appearance
1023 #
1024 # Revision 1.36  2002/03/27 14:58:08  swa
1025 # can be used by mutilple targets
1026 #
1027 # Revision 1.35  2002/03/27 14:53:19  swa
1028 # added solaris-dist
1029 #
1030 # Revision 1.34  2002/03/27 10:30:11  swa
1031 # we want a html man file on the webserver
1032 #
1033 # Revision 1.33  2002/03/27 03:05:35  hal9
1034 # Added man2html target for docs (redhat-dok only for now)
1035 #
1036 # Revision 1.32  2002/03/26 22:29:54  swa
1037 # we have a new homepage!
1038 #
1039 # Revision 1.31  2002/03/26 14:00:18  swa
1040 # fixed make tarball, tarball-dist, tarball-clean
1041 #
1042 # Revision 1.30  2002/03/25 12:52:25  swa
1043 # new targets
1044 #
1045 # Revision 1.29  2002/03/24 17:03:55  jongfoster
1046 # Name change
1047 #
1048 # Revision 1.28  2002/03/24 16:19:48  swa
1049 # configure needs to be generated.
1050 #
1051 # Revision 1.27  2002/03/24 16:13:57  swa
1052 # generated files are a nono in cvs
1053 #
1054 # Revision 1.26  2002/03/24 15:36:02  swa
1055 # did not build.
1056 #
1057 # Revision 1.25  2002/03/24 14:31:08  swa
1058 # remove more crappy files. set RPM
1059 # release version correctly.
1060 #
1061 # Revision 1.24  2002/03/24 14:19:55  swa
1062 # set rpm package release in configure.in. nowhere else.
1063 #
1064 # Revision 1.23  2002/03/24 13:06:49  swa
1065 # suse-clean now runs fine
1066 #
1067 # Revision 1.22  2002/03/24 12:56:21  swa
1068 # name change related issues.
1069 #
1070 # Revision 1.21  2002/03/24 12:43:57  swa
1071 # name change
1072 #
1073 # Revision 1.20  2002/03/24 11:39:17  jongfoster
1074 # Renaming config files
1075 #
1076 # Revision 1.19  2002/03/22 20:53:03  morcego
1077 # - Ongoing process to change name to JunkbusterNG
1078 # - configure/configure.in: no change needed
1079 # - GNUmakefile.in:
1080 #         - TAR_ARCH = /tmp/JunkbusterNG-$(RPM_VERSION).tar.gz
1081 #         - PROGRAM    = jbng@EXEEXT@
1082 #         - rh-spec now references as junkbusterng-rh.spec
1083 #         - redhat-upload: references changed to junkbusterng-* (package names)
1084 #         - tarball-dist: references changed to JunkbusterNG-distribution-*
1085 #         - tarball-src: now JunkbusterNG-*
1086 #         - install: initscript now junkbusterng.init and junkbusterng (when
1087 #                    installed)
1088 # - junkbuster-rh.spec: renamed to junkbusterng-rh.spec
1089 # - junkbusterng.spec:
1090 #         - References to the expression ijb where changed where possible
1091 #         - New package name: junkbusterng (all in lower case, acording to
1092 #           the LSB recomendation)
1093 #         - Version changed to: 2.9.13
1094 #         - Release: 1
1095 #         - Added: junkbuster to obsoletes and conflicts (Not sure this is
1096 #           right. If it obsoletes, why conflict ? Have to check it later)
1097 #         - Summary changed: Stefan, please check and aprove it
1098 #         - Changes description to use the new name
1099 #         - Sed string was NOT changed. Have to wait to the manpage to
1100 #           change first
1101 #         - Keeping the user junkbuster for now. It will require some aditional
1102 #           changes on the script (scheduled for the next specfile release)
1103 #         - Added post entry to move the old logfile to the new log directory
1104 #         - Removing "chkconfig --add" entry (not good to have it automaticaly
1105 #           added to the startup list).
1106 #         - Added preun section to stop the service with the old name, as well
1107 #           as remove it from the startup list
1108 #         - Removed the chkconfig --del entry from the conditional block on
1109 #           the preun scriptlet (now handled on the %files section)
1110 # - junkbuster.init: renamed to junkbusterng.init
1111 # - junkbusterng.init:
1112 #         - Changed JB_BIN to jbng
1113 #         - Created JB_OBIN with the old value of JB_BIN (junkbuster), to
1114 #           be used where necessary (config dir)
1115 #
1116 # Aditional notes:
1117 # - The config directory is /etc/junkbuster yet. Have to change it on the
1118 # specfile, after it is changes on the code
1119 # - The only files that got renamed on the cvs tree were the rh specfile and
1120 # the init file. Some file references got changes on the makefile and on the
1121 # rh-spec (as listed above)
1122 #
1123 # Revision 1.18  2002/03/21 23:00:00  swa
1124 # want to autogenerate stuff.
1125 #
1126 # Revision 1.17  2002/03/19 19:30:04  morcego
1127 # - Fixing stylesheet checking on configure. If it is found, no further checks
1128 #   should be done
1129 #
1130 # - configure will now check for db2html or docbook2html (should work now
1131 #   on SuSe without the docbktls package)
1132 #
1133 # Revision 1.16  2002/03/14 22:32:32  hal9
1134 # Bumped the RPM version.
1135 #
1136 # Revision 1.15  2002/03/08 20:00:28  swa
1137 # some leftovers.
1138 #
1139 # Revision 1.14  2002/03/07 18:25:56  swa
1140 # synced redhat and suse build process
1141 #
1142 # Revision 1.13  2002/03/07 17:17:56  oes
1143 # (Hopefully) fixed for older make versions
1144 #
1145 # Revision 1.12  2002/03/07 15:28:27  swa
1146 # more informative
1147 #
1148 # Revision 1.11  2002/03/06 14:33:18  sarantis
1149 # Use proper temp file, not "abc".
1150 #
1151 # Revision 1.10  2002/03/06 14:19:35  sarantis
1152 # Cleanup PID_FILE_PATH from redhat-dist target
1153 #
1154 # Revision 1.9  2002/03/05 17:31:11  morcego
1155 # Search for docbook.dsl. Should solve portability problems for SuSe.
1156 #
1157 # Revision 1.8  2002/03/05 14:07:42  morcego
1158 # configure now detects rpm topdir, and change GNUmakefile acordingly
1159 #    (based on sugestion by Sarantis Paskalis)
1160 #
1161 # Revision 1.7  2002/03/05 13:43:28  morcego
1162 # Checking for text browser, so redhat-dok can work.
1163 #
1164 # Revision 1.6  2002/03/05 13:10:51  morcego
1165 # Changes to implement redhat-dok (Hal Burgiss)
1166 # Changes to make it work on other distros and out-of-the-shelf configurations
1167 #
1168 # Revision 1.5  2002/02/27 15:30:39  hal9
1169 # Reset $(RPM_PACKAGEV) to 1 (was 2)
1170 #
1171 # Revision 1.4  2002/01/17 21:44:04  jongfoster
1172 # Adding urlmatch.[ch]
1173 #
1174 # Revision 1.3  2002/01/04 15:26:08  oes
1175 # Added tarball-src target
1176 #
1177 # Revision 1.2  2001/12/30 14:07:31  steudten
1178 # - Add signal handling (unix)
1179 # - Add SIGHUP handler (unix)
1180 # - Add creation of pidfile (unix)
1181 # - Add action 'top' in rc file (RH)
1182 # - Add entry 'SIGNALS' to manpage
1183 # - Add exit message to logfile (unix)
1184 #
1185 # Revision 1.1  2001/12/01 11:22:57  jongfoster
1186 # Renaming Makefile.in to GNUmakefile.in so that non-GNU versions of
1187 # make break in a more obvious way.
1188 # Adding .PHONY section.
1189 #
1190 # Revision 1.40  2001/12/01 00:24:11  jongfoster
1191 # Renaming various config files
1192 # Fixing CR->CRLF under Win32 (I hope)
1193 #
1194 # Revision 1.39  2001/11/06 12:07:30  steudten
1195 # Add --clean for building rpm in target redhat-dist.
1196 #
1197 # Revision 1.38  2001/11/05 21:35:23  steudten
1198 # Complete rewrite for the 'redhat-dist' target.
1199 # Checks for writeable RPM build directories for calling user.
1200 # So you must not be root, just set the modes to 1777 to
1201 # build a RH package.
1202 # Fix the upload-target to be arch independant.
1203 # Add target for 'solaris-dist' - coming soon.
1204 #
1205 # Revision 1.37  2001/11/01 00:52:04  hal9
1206 # Redhat-upload stuff per Stefan.
1207 #
1208 # Revision 1.36  2001/10/31 19:26:13  swa
1209 # automate process of uploading new releases
1210 # to sf.
1211 #
1212 # Revision 1.35  2001/10/15 22:14:59  joergs
1213 # Removed -O2 and -Wall from AmigaOS-only CFLAGS since they are now in
1214 #  the general CFLAGS already.
1215 #
1216 # Revision 1.34  2001/10/15 18:28:06  steudten
1217 # remove config.cache for target clobber.
1218 # Cleanup make dist for RH and S.u.S.E.
1219 #
1220 # Revision 1.33  2001/10/10 12:43:33  oes
1221 # Added ugly hack to make install target work at least for some setups.
1222 #
1223 # Revision 1.32  2001/10/09 22:38:19  jongfoster
1224 # Correcting actionsfile filename for Win32 INI build
1225 #
1226 # Revision 1.31  2001/09/23 10:13:48  swa
1227 # upload process established. run make webserver and
1228 # the documentation is moved to the webserver. documents
1229 # are now linked correctly.
1230 #
1231 # Revision 1.30  2001/09/19 17:55:49  oes
1232 # Fixed CFLAGS
1233 #
1234 # Revision 1.29  2001/09/16 17:34:27  jongfoster
1235 # Removing showargs.[ch], adding cgi(simple|edit).[ch]
1236 # Replacing $(OBJEXT) with @OBJEXT@ - this seems to be a common source
1237 # of build problems.
1238 #
1239 # Revision 1.28  2001/09/13 15:19:08  swa
1240 # we want text files as well.
1241 #
1242 # Revision 1.27  2001/09/13 13:11:37  steudten
1243 #
1244 # Replace DEBUG_CFLAGS with OTHER_CFLAGS
1245 #
1246 # Revision 1.26  2001/09/12 23:44:54  david__schmidt
1247 # Mac OSX (Darwin) support added.
1248 #
1249 # Revision 1.25  2001/09/12 22:55:45  joergs
1250 # AmigaOS support added.
1251 #
1252 # Revision 1.24  2001/09/12 17:28:59  david__schmidt
1253 #
1254 # OS/2 port: update autoconf'd support for the platform.
1255 #
1256 # Revision 1.23  2001/09/12 16:28:42  swa
1257 # added "make dok" section to generate html pages from
1258 # the sgml source documents. note that the we do not want
1259 # generated stuff in cvs.
1260 #
1261 # Revision 1.22  2001/09/10 16:31:23  swa
1262 # buildroot definition in the specfile fucks up the build
1263 # process under suse. hence I moved it to the "rpm -ta"
1264 # command
1265 #
1266 # Revision 1.21  2001/09/10 11:12:49  oes
1267 # Turning on -Wall
1268 #
1269 # Revision 1.20  2001/08/02 22:04:29  jongfoster
1270 # Removing some remaining references to obsolete w32rulesdlg.[ch]
1271 #
1272 # Revision 1.19  2001/07/30 22:14:03  jongfoster
1273 # Removing obsolete w32rulesdlg.c and w32rulesdlg.h
1274 #
1275 # Revision 1.18  2001/07/29 17:09:17  jongfoster
1276 # Major changes to build system in order to fix these bugs:
1277 # - pthreads under Linux was broken - changed -lpthread to -pthread
1278 # - Compiling in MinGW32 mode under CygWin now correctly detects
1279 #   which shared libraries are available
1280 # - Solaris support (?) (Not tested under Solaris yet)
1281 #
1282 # Revision 1.17  2001/07/28 16:44:54  oes
1283 # Fixed sed LF->CRLF conversion and removed deprecated files
1284 #
1285 # Revision 1.16  2001/07/15 19:45:33  jongfoster
1286 # Added support for linking with POSIX threads library
1287 #
1288 # Revision 1.15  2001/07/13 13:48:07  oes
1289 #  - Moved STATIC #define for pcre to (ac)config.h
1290 #  - Made -Ipcre depandant on static pcre compilation to
1291 #    avoid version conflicts
1292 #  - Included compilation and depandancies for new deanimate.c
1293 #  - Made changes to the pcre/pcreposix/pcrs build process
1294 #    as required by the new library autodetection in
1295 #    configure.in
1296 #
1297 # Revision 1.14  2001/07/01 16:27:44  oes
1298 # Fixed misplaced dependancy
1299 #
1300 # Revision 1.13  2001/06/29 13:18:36  oes
1301 # - added depandancy of filters.o on cgi.h
1302 #
1303 # Revision 1.12  2001/06/12 17:15:56  swa
1304 # fixes, because a clean build on rh6.1 was impossible.
1305 # GZIP confuses make, %configure confuses rpm, etc.
1306 #
1307 # Revision 1.11  2001/06/11 11:26:35  sarantis
1308 # RPM version should be the same as ijbswa version.  The rpm release is
1309 # specified in the specfile.
1310 #
1311 # Revision 1.10  2001/06/07 17:27:45  swa
1312 # added suse build section
1313 #
1314 # Revision 1.9  2001/06/04 18:31:58  swa
1315 # files are now prefixed with either `confdir' or `logdir'.
1316 # `make redhat-dist' replaces both entries confdir and logdir
1317 # with redhat values
1318 #
1319 # Revision 1.8  2001/06/04 10:44:57  swa
1320 # `make redhatr-dist' now works. Except for the paths
1321 # in the config file.
1322 #
1323 # Revision 1.7  2001/06/03 17:09:09  swa
1324 # swa for oes: reversed my earlier change
1325 #
1326 # Revision 1.6  2001/06/03 17:07:27  swa
1327 # swa for oes
1328 #
1329 # Revision 1.5  2001/06/03 13:57:26  swa
1330 # compile cgi.c (for andreas' GUI)
1331 #
1332 # Revision 1.4  2001/05/31 21:18:45  jongfoster
1333 # Added files actions.[ch], actionlist.h, list.[ch] to Makefile
1334 #
1335 # Revision 1.3  2001/05/29 20:02:48  joergs
1336 # Changes for AmigaOS added.
1337 #
1338 # Revision 1.2  2001/05/17 22:23:23  oes
1339 #  - Added auto-generation of CRLFs for Win32 config files
1340 #  - Added comment-prefix to all Win32-only options in the config file
1341 #    and provided auto stripping of this prefix for the Win32 platform by make
1342 #
1343 # Revision 1.1.1.1  2001/05/15 13:59:00  oes
1344 # Initial import of version 2.9.3 source tree
1345 #
1346 #