for lazy swa
[privoxy.git] / GNUmakefile.in
1 # Note:  Makefile is built automatically from Makefile.in
2 #
3 # $Id: GNUmakefile.in,v 1.44 2002/03/29 17:42:44 gliptak 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 # will automatically be postfixed with -$(RPM_PACKAGEV) in the SPECfile
46 RPM_VERSION   = $(VERSION)
47 RPM_PACKAGEV  = @VERSION_RPM_PACKAGE@
48
49
50 #############################################################################
51 # Directories for "make install"
52 #############################################################################
53
54 DEST        = @sysconfdir@/privoxy
55 SBIN_DEST   = @sbindir@
56 MAN_DEST    = @mandir@
57
58
59 #############################################################################
60 # Build tools
61 #############################################################################
62
63 PROGRAM    = privproxy@EXEEXT@
64 CC         = @CC@
65 ECHO       = echo
66 GZIP_PROG  = gzip
67 INSTALL    = cp -f
68 LD         = @CC@
69 RM         = rm -f
70 STRIP_PROG = strip
71 SED        = sed
72 CAT        = cat
73 RPM        = rpm
74 MV         = mv
75 TAR        = tar
76 LN         = ln
77 WDUMP      = @WDUMP@ -dump
78 JADEBIN    = @JADEBIN@
79 DB         = $(JADEBIN) -t sgml -ihtml -D.. -d ldpOK.dsl\#html
80 DB2HTML    = @DB2HTML@
81 DKPREFIX   = @DKPREFIX@
82 MAN2HTML   = @MAN2HTML@
83 G2H_CMD    = groff -mandoc -Thtml
84 TARGET_OS  = @host@
85
86 # Program to do LF->CRLF
87 #
88 # The sed version should be the most portable, but it doesn't for for me,
89 # the other two do.  FIXME.
90 #   - Jon
91 #DOSFILTER  = $(SED) -e $$'s,$$,\r,'
92 #DOSFILTER  = gawk -v ORS='\r\n' '{print $0;}'
93 DOSFILTER  = perl -p -e 's/\n/\r\n/'
94
95 #############################################################################
96 # Setup for make distribution rh and suse for now 
97 #############################################################################
98
99 TAR_ARCH = /tmp/privoxy-$(RPM_VERSION).tar.gz
100 RPM_BASE = @RPM_BASE@
101
102 #############################################################################
103 # Filenames and libraries
104 #############################################################################
105
106 C_SRC  = actions.c cgi.c cgiedit.c cgisimple.c deanimate.c encode.c \
107          errlog.c filters.c gateway.c jbsockets.c jcc.c killpopup.c \
108          list.c loadcfg.c loaders.c miscutil.c parsers.c ssplit.c \
109          urlmatch.c
110
111 C_OBJS = $(C_SRC:.c=.@OBJEXT@)
112 C_HDRS = $(C_SRC:.c=.h) project.h actionlist.h
113
114 CONFIG_FILES = config trust \
115                 default.action \
116                 basic.action intermediate.action advanced.action \
117                 default.filter \
118                 templates/*
119
120 DOC_FILES = AUTHORS LICENSE README ChangeLog doc/text/* privoxy.1
121
122 W32_SRC   = @WIN_ONLY@w32log.c w32taskbar.c win32.c
123 W32_FILES = @WIN_ONLY@w32.res
124 W32_OBJS  = @WIN_ONLY@$(W32_SRC:.c=.@OBJEXT@) $(W32_FILES)
125 W32_HDRS  = @WIN_ONLY@w32log.h w32taskbar.h win32.h w32res.h
126 W32_LIB   = @WIN_ONLY@-lwsock32 -lcomctl32
127 W32_INIS  = @WIN_ONLY@config.txt trust.txt
128
129 PCRS_SRC     = @STATIC_PCRS_ONLY@pcrs.c
130 PCRS_OBJS    = @STATIC_PCRS_ONLY@$(PCRS_SRC:.c=.@OBJEXT@)
131 PCRS_HDRS    = @STATIC_PCRS_ONLY@$(PCRS_SRC:.c=.h)
132
133 PCRE_SRC     = @STATIC_PCRE_ONLY@pcre/get.c pcre/maketables.c pcre/study.c pcre/pcre.c
134 PCRE_OBJS    = @STATIC_PCRE_ONLY@$(PCRE_SRC:.c=.@OBJEXT@)
135 PCRE_HDRS    = @STATIC_PCRE_ONLY@pcre/config.h pcre/chartables.c pcre/internal.h pcre/pcre.h
136
137 # No REGEX (Either because dynamically linked pcreposix, or no regex at all):
138 REGEX_SRC    =
139 # GNU REGEX:
140 @GNU_REGEX_ONLY@REGEX_SRC    = gnu_regex.c
141 # PCRE REGEX:
142 @PCRE_REGEX_ONLY@@STATIC_PCRE_ONLY@REGEX_SRC = pcre/pcreposix.c
143
144 REGEX_OBJS   = $(REGEX_SRC:.c=.@OBJEXT@)
145 REGEX_HDRS   = $(REGEX_SRC:.c=.h)
146
147 # Dependencies introduced by #include "project.h".
148 PROJECT_H_DEPS = project.h $(REGEX_HDRS) $(PCRS_HDRS) @STATIC_PCRE_ONLY@pcre/pcre.h
149
150 # Socket libraries for platforms that need them explicitly defined
151 SOCKET_LIB   = @SOCKET_LIB@
152
153 # PThreads library, if needed.
154 PTHREAD_LIB  = @PTHREAD_ONLY@@PTHREAD_LIB@
155
156 SRCS         = $(C_SRC)  $(W32_SRC)  $(PCRS_SRC)  $(PCRE_SRC)  $(REGEX_SRC)
157 OBJS         = $(C_OBJS) $(W32_OBJS) $(PCRS_OBJS) $(PCRE_OBJS) $(REGEX_OBJS)
158 HDRS         = $(C_HDRS) $(W32_HDRS) $(PCRS_HDRS) $(PCRE_OBJS) $(REGEX_HDRS)
159 LIBS         = @LIBS@ $(W32_LIB) $(SOCKET_LIB) $(PTHREAD_LIB)
160
161
162 #############################################################################
163 # Compiler switches
164 #############################################################################
165
166 # The flag "-mno-win32" can be used by Cygwin to emulate a un?x type build.
167 # The flag "-mwindows -mno-cygwin" will cause Cygwin to use MingW32 for a
168 # Win32 GUI build.
169 # The flag "-pthread" is required if using Pthreads under Linux (and
170 # possibly other OSs).
171 SPECIAL_CFLAGS = @SPECIAL_CFLAGS@
172
173 # Add your flags here 
174 OTHER_CFLAGS =   
175
176 CFLAGS = @CFLAGS@ @CPPFLAGS@ $(OTHER_CFLAGS) $(SPECIAL_CFLAGS) -Wall \
177          @STATIC_PCRE_ONLY@ -Ipcre 
178
179 LDFLAGS = $(DEBUG_CFLAGS) $(SPECIAL_CFLAGS)
180
181
182 #############################################################################
183 # Build section.
184 #
185 # There should NOT be any targets above this line.
186 #############################################################################
187 all: $(PROGRAM)
188
189
190 #############################################################################
191 # Phony targets
192 #############################################################################
193 .PHONY: all inifiles redhat-dist redhat-upload solaris-dist suse-dist \
194 suse-upload win-dist tarball-dist dok redhat-dok webserver clean clobber tags \
195 install
196
197
198 #############################################################################
199 # Define this explicitly because Solaris is broken!
200 #############################################################################
201 %.o: %.c
202         $(CC) -c $(CFLAGS) $(CPPFLAGS) $< -o $@
203
204
205 #############################################################################
206 # Win32 config files
207 #############################################################################
208
209 inifiles: $(W32_INIS)
210
211 config.txt: config
212         $(SED) -e 's!\trustfile trust!trustfile trust.txt!' \
213                -e 's!\jarfile jarfile!jarfile jar.log!' \
214                -e 's!\logfile logfile!logfile privoxy.log!' \
215                -e 's!#Win32-only: !!' \
216                < $< | \
217                $(DOSFILTER) > $@
218         # LF to CRLF in default.action
219         $(DOSFILTER) <default.action >default.action.txt && mv default.action.txt default.action
220         # LF to CRLF in default.filter
221         $(DOSFILTER) <default.filter >default.filter.txt && mv default.filter.txt default.filter
222
223 trust.txt: trust
224         $(DOSFILTER) < $< > $@ 
225
226 re_filterfile.txt: re_filterfile
227         $(DOSFILTER) < $< > $@ 
228
229
230 #############################################################################
231 # redhat distribution alpha and x86
232 #############################################################################
233
234 redhat-dist:
235         for dir in RPMS SRPMS BUILD SOURCES SPECS; do \
236                 if [ ! -w $(RPM_BASE)/$$dir ]; then \
237                         $(ECHO) "$(RPM_BASE)/$$dir is not writable for you. Maybe try as root."; \
238                         $(ECHO) "Or add a suitable path to .rpmmacros like."; \
239                         $(ECHO) "%_topdir /home/foo/rpm-build"; \
240                         exit 1; \
241                 fi; \
242         done; \
243
244         $(MAKE) clobber
245         if [ -f $(TAR_ARCH) ]; then $(RM) $(TAR_ARCH); fi
246
247         TMPFILE=$$(mktemp -q /tmp/$(PROGRAM).XXXXXX); \
248         if $(SED) -e 's/^\(Version:\).*/\1 $(RPM_VERSION)/g' \
249              -e 's/^\(Release:\).*/\1 $(RPM_PACKAGEV)/g' \
250               privoxy-rh.spec > $$TMPFILE ; then \
251       $(MV) -f $$TMPFILE privoxy-rh.spec; \
252    else \
253       $(ECHO) "Could not set version info in specfile."; \
254       exit 1;\
255    fi
256
257         $(TAR) --exclude "CVS" --exclude "privoxy-suse.spec" -czf $(TAR_ARCH) .
258         $(RPM) --clean -ta  $(TAR_ARCH)
259         if [ -f $(TAR_ARCH) ]; then  $(RM) $(TAR_ARCH); fi
260
261 #
262 # anonymously ncftps the rpms to sourceforge
263 #
264 redhat-upload:
265         ncftpput -u anonymous -p ijbswa-developers@lists.sourceforge.net upload.sourceforge.net /incoming $(RPM_BASE)/SRPMS/privoxy-$(RPM_VERSION)-$(RPM_PACKAGEV).src.rpm
266 # better should use `arch` here instead of ix86 to support other platforms too
267         ncftpput -u anonymous -p ijbswa-developers@lists.sourceforge.net upload.sourceforge.net /incoming $(RPM_BASE)/RPMS/*/privoxy-$(RPM_VERSION)-$(RPM_PACKAGEV).*.rpm
268         @$(ECHO) -------------------------------------------------------
269         @$(ECHO) Now goto
270         @$(ECHO) http://sourceforge.net/project/admin/editpackages.php?group_id=11118
271         @$(ECHO) ... and release the files.
272         @$(ECHO) -------------------------------------------------------
273      # w3m http://sourceforge.net/project/admin/editpackages.php?group_id=11118
274
275 #############################################################################
276 # generic distribution
277 #############################################################################
278
279 gen-dist:
280         @$(ECHO) ""
281         @$(ECHO) "You have run autoconf && autoheader && ./configure right?"
282         @$(ECHO) ""
283         $(MAKE) $(PROGRAM)
284         $(STRIP_PROG) $(PROGRAM)
285         $(LN) -s current ../privoxy-$(VERSION)-$(CODE_STATUS)
286 # add program
287         cd .. && $(TAR) -cvhf privoxy-$(TARGET_OS)-$(VERSION)-$(CODE_STATUS)-src.tar privoxy-$(VERSION)-$(CODE_STATUS)/$(PROGRAM)
288 # add config files
289         for foo in $(CONFIG_FILES); do \
290                 cd .. && $(TAR) --exclude "CVS" --exclude "#*" --exclude ".#*" --exclude ".cvsignore" -uvhf privoxy-$(TARGET_OS)-$(VERSION)-$(CODE_STATUS)-src.tar privoxy-$(VERSION)-$(CODE_STATUS)/$$foo; \
291         done; 
292 # add documentation
293         for foo in $(DOC_FILES); do \
294                 cd .. && $(TAR) --exclude "CVS" --exclude "#*" --exclude ".#*" --exclude ".cvsignore" -uvhf privoxy-$(TARGET_OS)-$(VERSION)-$(CODE_STATUS)-src.tar privoxy-$(VERSION)-$(CODE_STATUS)/$$foo; \
295         done; 
296 # and zip the archive
297         $(RM) ../privoxy-$(VERSION)-$(CODE_STATUS)
298         $(GZIP_PROG) privoxy-$(TARGET_OS)-$(VERSION)-$(CODE_STATUS)-src.tar
299         @$(ECHO) Distribution with binary created.
300
301 # anonymously ncftps the tarball to sourceforge
302 gen-upload:
303         ncftpput -u anonymous -p ijbswa-developers@lists.sourceforge.net upload.sourceforge.net /incoming privoxy-$(TARGET_OS)-$(VERSION)-$(CODE_STATUS)-src.tar.gz
304         @$(ECHO) -------------------------------------------------------
305         @$(ECHO) Now goto
306         @$(ECHO) http://sourceforge.net/project/admin/editpackages.php?group_id=11118
307         @$(ECHO) ... and release the files.
308         @$(ECHO) -------------------------------------------------------
309
310 # use with care
311 gen-clean:
312         $(RM) privoxy-$(TARGET_OS)-$(VERSION)-$(CODE_STATUS)-src.tar*
313
314 #############################################################################
315 # solaris distribution
316 #############################################################################
317 solaris-dist: gen-dist
318         @$(ECHO) Done.
319 # anonymously ncftps the tarball to sourceforge
320 solaris-upload: gen-upload
321         @$(ECHO) Done.
322 # use with care
323 solaris-clean: gen-clean
324         @$(ECHO) Done.
325
326 #############################################################################
327 # hpux distribution
328 #############################################################################
329 hpux-dist:
330         @$(ECHO) coming soon. 
331 hpux-upload:
332         @$(ECHO) coming soon. 
333
334 #############################################################################
335 # debian distribution
336 #############################################################################
337 debian-dist:
338         @$(ECHO) coming soon. 
339 debian-upload:
340         @$(ECHO) coming soon. 
341
342 #############################################################################
343 # macosx distribution
344 #############################################################################
345 macosx-dist:
346         @$(ECHO) coming soon. 
347 macosx-upload:
348         @$(ECHO) coming soon. 
349
350 #############################################################################
351 # amiga distribution
352 #############################################################################
353 amiga-dist:
354         @$(ECHO) coming soon. 
355 amiga-upload:
356         @$(ECHO) coming soon. 
357
358 #############################################################################
359 # freebsd distribution
360 #############################################################################
361 freebsd-dist:
362         @$(ECHO) coming soon. 
363 freebsd-upload:
364         @$(ECHO) coming soon. 
365
366 #############################################################################
367 # suse distribution. works fine. no need to be root. 
368 #############################################################################
369 suse-dist:
370         for dir in RPMS SRPMS BUILD SOURCES SPECS; do \
371                 if [ ! -w $(RPM_BASE)/$$dir ]; then \
372                         $(ECHO) "$(RPM_BASE)/$$dir is not writable for you. Maybe try as root."; \
373                         $(ECHO) "Or add a suitable path to .rpmmacros like."; \
374                         $(ECHO) "%_topdir /home/foo/rpm-build"; \
375                         exit 1; \
376                 fi; \
377         done; \
378
379         $(MAKE) clobber
380         if [ -f $(TAR_ARCH) ]; then $(RM) $(TAR_ARCH); fi
381
382         TMPFILE=$$(mktemp -q /tmp/$(PROGRAM).XXXXXX); \
383         if $(SED) -e 's/^\(Version:\).*/\1 $(RPM_VERSIO)/g' \
384              -e 's/^\(Release:\).*/\1 $(RPM_PACKAGEV)/g' \
385               privoxy-suse.spec > $$TMPFILE ; then \
386       $(MV) -f $$TMPFILE privoxy-suse.spec; \
387    else \
388       $(ECHO) "Could not set version info in specfile."; \
389       exit 1;\
390    fi
391
392         $(TAR) --exclude "CVS" --exclude "privoxy-rh.spec" -czf $(TAR_ARCH) .
393         $(RPM) --clean -ta  $(TAR_ARCH)
394         if [ -f $(TAR_ARCH) ]; then  $(RM) $(TAR_ARCH); fi
395
396 #
397 # anonymously ncftps the rpms to sourceforge
398 #
399 suse-upload:
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 -rf /etc/junkbuster
413         rm -rf /etc/rc.d/junkbuster*
414         rm -rf /var/run/junkbuster.pid 
415         rm -rf /var/log/junkbuster
416         rm -f /etc/init.d/junkbuster
417         rm -f /usr/sbin/junkbuster
418         rm -f /usr/sbin/rcjunkbuster
419         rm -f /usr/share/man/man1/junkbuster.1.gz
420         rpm -e privoxy-suse || true
421         rm -rf /etc/privoxy
422         rm -rf /etc/rc.d/privoxy*
423         rm -rf /var/run/privoxy.pid 
424         rm -rf /var/log/privoxy
425         rm -f /etc/init.d/privoxy
426         rm -f /usr/sbin/privoxy
427         rm -f /usr/sbin/rcprivoxy
428         rm -f /usr/share/man/man1/privoxy.1.gz
429
430 #############################################################################
431 # Windows distribution
432 #############################################################################
433 win-dist:
434         $(ECHO) Not implemented.
435
436
437 #############################################################################
438 # Tarball distribution
439 #############################################################################
440 tarball-dist: clobber
441         $(LN) -s current ../privoxy-$(VERSION)-$(CODE_STATUS)
442         cd .. && $(TAR) --exclude "CVS" --exclude "#*" --exclude ".#*" --exclude ".cvsignore" -cvhzf privoxy-$(VERSION)-$(CODE_STATUS)-src.tar.gz privoxy-$(VERSION)-$(CODE_STATUS)
443         $(RM) ../privoxy-$(VERSION)-$(CODE_STATUS)
444         @$(ECHO) Tarball (without any binary) created.
445
446 # anonymously ncftps the tarball to sourceforge
447 tarball-upload:
448         ncftpput -u anonymous -p ijbswa-developers@lists.sourceforge.net upload.sourceforge.net /incoming privoxy-$(VERSION)-$(CODE_STATUS)-src.tar.gz
449         @$(ECHO) -------------------------------------------------------
450         @$(ECHO) Now goto
451         @$(ECHO) http://sourceforge.net/project/admin/editpackages.php?group_id=11118
452         @$(ECHO) ... and release the files.
453         @$(ECHO) -------------------------------------------------------
454
455 # handle with care
456 tarball-clean:
457         $(RM) privoxy-$(VERSION)-$(CODE_STATUS)-src.tar.gz
458
459 #############################################################################
460 #
461 # Documentation
462 #
463 # converts doc/source/*.sgml into html, text and man pages
464 #
465 #############################################################################
466 dok: doc/source/ldpOK.dsl man2html-swa
467         mkdir -p doc/text doc/man
468 #  user manual
469         rm -rf doc/webserver/user-manual
470         cd doc/source && $(DB2HTML) -s ldpOK.dsl user-manual.sgml && mv user-manual ../webserver
471         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
472 ##  developer manual
473         rm -rf doc/webserver/developer-manual
474         cd doc/source && $(DB2HTML) -s ldpOK.dsl developer-manual.sgml && mv developer-manual ../webserver
475         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
476 ##  faq
477         rm -rf doc/webserver/faq
478         cd doc/source && $(DB2HTML) -s ldpOK.dsl faq.sgml && mv faq ../webserver
479         cd doc/source && $(DB2HTML) -s ldpOK.dsl --nochunks faq.sgml > tmp.html && lynx -dump tmp.html > ../text/faq.txt && rm -rf tmp.html faq
480 ## kludge to force recreation on next run. Rodgrigo?
481         @rm -f doc/source/ldpOK.dsl
482
483 man2html-swa:
484         mkdir -p doc/webserver/man-page
485         if [ "$(MAN2HTML)" != "false" ]; then \
486                 $(ECHO) "<html><head><title>Privoxy|Doc/Man page</title><link rel=\"stylesheet\" type=\"text/css\" href=\"../p_web.css\"></head><body><H2>NAME</H2>" > doc/webserver/man-page/privoxy-man-page.html; \
487                 man ./privoxy.1 | $(MAN2HTML) -bare \
488                  >> doc/webserver/man-page/privoxy-man-page.html; \
489                 $(ECHO) "</body></html>" >> doc/webserver/man-page/privoxy-man-page.html; \
490      else \
491           $(MAKE) groff2html; \
492         fi
493
494 redhat-dok: doc/source/ldpOK.dsl man2html
495         mkdir -p doc/text doc/man doc/source/user-manual \
496           doc/source/developer-manual doc/source/faq
497 ##  user manual
498         rm -rf doc/webserver/user-manual
499         cd doc/source/user-manual && $(DB) ../user-manual.sgml && cd .. &&\
500           mv user-manual ../webserver
501         cd doc/source && $(DB) -V nochunks user-manual.sgml > tmp.html && \
502           $(WDUMP) tmp.html > ../text/user-manual.txt && rm -rf tmp.html \
503           user-manual
504 ##  developer manual
505         rm -rf doc/webserver/developer-manual
506         cd doc/source/developer-manual && $(DB) ../developer-manual.sgml &&\
507           cd .. && mv developer-manual ../webserver
508         cd doc/source && $(DB) -V nochunks developer-manual.sgml > tmp.html && \
509           $(WDUMP) tmp.html > ../text/developer-manual.txt && rm -rf tmp.html \
510           developer-manual
511 ##  faq
512         rm -rf doc/webserver/faq
513         cd doc/source/faq && $(DB) ../faq.sgml && cd .. && mv faq ../webserver
514         cd doc/source && $(DB) -V nochunks faq.sgml > tmp.html && $(WDUMP) \
515           tmp.html > ../text/faq.txt && rm -rf tmp.html faq
516 ## kludge to force recreation on next run. Rodgrigo?
517         @rm -f doc/source/ldpOK.dsl
518
519
520 doc/source/ldpOK.dsl:
521         if [ "$(DKPREFIX)" != "none" ]; then \
522                 sed -e "s@/usr/share/sgml/docbook/dsssl-stylesheets@$(DKPREFIX)@g" doc/source/ldp.dsl > doc/source/ldpOK.dsl; \
523         else \
524                 cp doc/source/ldp.dsl doc/source/ldpOK.dsl; \
525         fi
526
527 # For those with man2html ala RH7's.
528 man2html:
529         mkdir -p doc/webserver/man-page
530         if [ "$(MAN2HTML)" != "false" ]; then \
531                 $(MAN2HTML) privoxy.1 |grep -v "^Content-type" > doc/webserver/man-page/privoxy-man-page.html; \
532            perl -pi -e 's/<A .*Contents<\/A>//; s/<A .*man2html<\/A>/man2html/' doc/webserver/man-page/privoxy-man-page.html; \
533      else \
534           $(MAKE) groff2html; \
535         fi
536
537 # Otherwise we get plain groff conversion.
538 groff2html:
539         $(G2H_CMD) ./privoxy.1 > doc/webserver/man-page/privoxy-man-page.html
540
541
542 #############################################################################
543 #
544 # Webserver
545 #
546 # moves dokumentation to webserver
547 #
548 #############################################################################
549 webserver:
550         @$(ECHO) -------------------------------------------------------
551         @$(ECHO) You have run make dok/redhat-dok before, right?
552         @$(ECHO) Note that this command scps all stuff to the webserver,
553         @$(ECHO) it will not remove obsolete documents.
554         @$(ECHO) -------------------------------------------------------
555         find doc/webserver -type f -exec chmod 664 {} \;
556 # not sure if we need next line.swa.
557         chmod 775 doc/webserver/redirect.php
558         find doc/webserver -type d -exec chmod a+rx {} \;
559         cd doc/webserver && scp -Cr . ijbswa.sourceforge.net:/home/groups/i/ij/ijbswa/htdocs/
560
561 webquick:
562         find doc/webserver -type f -exec chmod 664 {} \;
563 # not sure if we need next line.swa.
564         chmod 775 doc/webserver/redirect.php
565         find doc/webserver -type d -exec chmod a+rx {} \;
566         cd doc/webserver/submit && scp -Cr . ijbswa.sourceforge.net:/home/groups/i/ij/ijbswa/htdocs/submit
567
568
569 #############################################################################
570 # Source file dependencies
571 #############################################################################
572
573 actions.@OBJEXT@:   actions.c   actions.h   config.h $(PROJECT_H_DEPS) errlog.h jcc.h list.h loaders.h miscutil.h actionlist.h
574 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
575 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
576 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
577 deanimate.@OBJEXT@: deanimate.c deanimate.h config.h $(PROJECT_H_DEPS)
578 encode.@OBJEXT@:    encode.c    encode.h    config.h
579 errlog.@OBJEXT@:    errlog.c    errlog.h    config.h $(PROJECT_H_DEPS) @WIN_ONLY@w32log.h
580 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 
581 gateway.@OBJEXT@:   gateway.c   gateway.h   config.h $(PROJECT_H_DEPS) errlog.h jbsockets.h jcc.h loadcfg.h
582 jbsockets.@OBJEXT@: jbsockets.c jbsockets.h config.h $(PROJECT_H_DEPS) filters.h
583 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
584 killpopup.@OBJEXT@: killpopup.c killpopup.h config.h $(PROJECT_H_DEPS) jcc.h loadcfg.h
585 list.@OBJEXT@:      list.c      list.h      config.h $(PROJECT_H_DEPS) list.h miscutil.h
586 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
587 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
588 miscutil.@OBJEXT@:  miscutil.c  miscutil.h  config.h
589 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
590 ssplit.@OBJEXT@:    ssplit.c    ssplit.h    config.h miscutil.h
591 urlmatch.@OBJEXT@:  urlmatch.c  urlmatch.h  config.h $(PROJECT_H_DEPS) errlog.h miscutil.h ssplit.h
592
593 # GNU regex
594 gnu_regex.@OBJEXT@: gnu_regex.c gnu_regex.h config.h
595
596 # PCRS
597 pcrs.@OBJEXT@: pcrs.c pcre/pcre.h pcrs.h
598
599 # PCRE
600 pcre/get.@OBJEXT@:        pcre/get.c        pcre/config.h pcre/internal.h pcre/pcre.h
601 pcre/maketables.@OBJEXT@: pcre/maketables.c pcre/config.h pcre/internal.h pcre/pcre.h
602 pcre/pcre.@OBJEXT@:       pcre/pcre.c       pcre/config.h pcre/internal.h pcre/pcre.h pcre/chartables.c 
603 pcre/pcreposix.@OBJEXT@:  pcre/pcreposix.c  pcre/config.h pcre/internal.h pcre/pcre.h pcre/pcreposix.h
604 pcre/study.@OBJEXT@:      pcre/study.c      pcre/config.h pcre/internal.h pcre/pcre.h
605
606 # An auxiliary program makes the PCRE default character table source
607
608 pcre/chartables.c:   pcre/dftables@EXEEXT@
609                 pcre/dftables@EXEEXT@ >pcre/chartables.c
610
611 pcre/dftables@EXEEXT@:       pcre/dftables.c pcre/maketables.c pcre/pcre.h pcre/internal.h pcre/config.h
612                 $(CC) -o pcre/dftables@EXEEXT@ $(CFLAGS) pcre/dftables.c
613
614 # Win32
615 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
616 w32taskbar.@OBJEXT@: w32taskbar.c config.h w32log.h w32taskbar.h
617 win32.@OBJEXT@: win32.c config.h jcc.h loadcfg.h pcre/pcre.h pcre/pcreposix.h pcrs.h project.h w32log.h win32.h
618
619 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/privoxy.ico config.h
620         windres -D__MINGW32__=0.2 -O coff -i $< -o $@
621
622 # AmigaOS
623 @AMIGAOS_ONLY@OBJS += amiga.o
624 @AMIGAOS_ONLY@CFLAGS += -D__AMIGAVERSION__=\"$(VERSION_MAJOR).$(VERSION_MINOR)$(VERSION_POINT)\" -D__AMIGADATE__=\"`date +%d.%m.%Y`\" -W -m68020 -noixemul -fbaserel -msmall-code
625 @AMIGAOS_ONLY@LDFLAGS += -m68020 -noixemul -fbaserel
626 @AMIGAOS_ONLY@LIBS = -lm /gg/lib/libb/libm020/libnix/swapstack.o
627 @AMIGAOS_ONLY@amiga.o: amiga.c amiga.h config.h
628
629
630 $(PROGRAM): $(OBJS) $(W32_FILES)
631         $(LD) $(LDFLAGS) -o $(PROGRAM) $(OBJS) $(LIBS)
632
633 clean:
634         $(RM) a.out core $(OBJS) $(W32_FILES) $(W32_INIS) $(PROGRAM) junkbuster
635
636 clobber: clean
637         $(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 configure
638
639 tags: $(SRCS) $(HDRS)
640         etags $(SRCS) $(HDRS)
641
642 install: all
643         #
644         # FIXME: This is a dirty hack to have an install target
645         #        that works at least for some setups. This needs
646         #        to be fixed!
647         #
648         $(STRIP_PROG) $(PROGRAM)
649         $(INSTALL) $(PROGRAM) $(SBIN_DEST)
650         mkdir -p $(DEST)/user-manual
651         mkdir -p $(DEST)/templates
652         cp -r doc/webserver/user-manual $(DEST)
653         cp -r templates $(DEST)
654         $(INSTALL) config default.action default.filter trust $(DEST)
655         # FIXME $(ECHO) privoxy.logrotate privoxy.monthly privoxy.weekly
656         # FIXME: Need new manual! $(GZIP_PROG) -c privoxy.1 > $(MAN_DEST)/privoxy.1.gz
657         $(INSTALL) privoxy.init /etc/init.d/privoxy
658
659
660 #############################################################################
661
662 ## Local Variables:
663 ## tab-width: 3
664 ## end:
665
666 # $Log: GNUmakefile.in,v $
667 # Revision 1.44  2002/03/29 17:42:44  gliptak
668 # Correcting for Solaris tar limitations
669 #
670 # Revision 1.43  2002/03/29 07:40:03  swa
671 # fixed make webserver. doh
672 #
673 # Revision 1.42  2002/03/29 06:59:04  swa
674 # other users could not modify files on webserver
675 #
676 # Revision 1.41  2002/03/28 20:43:00  swa
677 # set make correctly
678 #
679 # Revision 1.40  2002/03/28 04:22:44  hal9
680 # More on man2html stuff.
681 #
682 # Revision 1.39  2002/03/28 01:04:14  hal9
683 # More man2html stuff for docs.
684 #
685 # Revision 1.38  2002/03/27 16:02:30  swa
686 # have a generic target
687 #
688 # Revision 1.37  2002/03/27 15:30:26  swa
689 # have a consistent appearance
690 #
691 # Revision 1.36  2002/03/27 14:58:08  swa
692 # can be used by mutilple targets
693 #
694 # Revision 1.35  2002/03/27 14:53:19  swa
695 # added solaris-dist
696 #
697 # Revision 1.34  2002/03/27 10:30:11  swa
698 # we want a html man file on the webserver
699 #
700 # Revision 1.33  2002/03/27 03:05:35  hal9
701 # Added man2html target for docs (redhat-dok only for now)
702 #
703 # Revision 1.32  2002/03/26 22:29:54  swa
704 # we have a new homepage!
705 #
706 # Revision 1.31  2002/03/26 14:00:18  swa
707 # fixed make tarball, tarball-dist, tarball-clean
708 #
709 # Revision 1.30  2002/03/25 12:52:25  swa
710 # new targets
711 #
712 # Revision 1.29  2002/03/24 17:03:55  jongfoster
713 # Name change
714 #
715 # Revision 1.28  2002/03/24 16:19:48  swa
716 # configure needs to be generated.
717 #
718 # Revision 1.27  2002/03/24 16:13:57  swa
719 # generated files are a nono in cvs
720 #
721 # Revision 1.26  2002/03/24 15:36:02  swa
722 # did not build.
723 #
724 # Revision 1.25  2002/03/24 14:31:08  swa
725 # remove more crappy files. set RPM
726 # release version correctly.
727 #
728 # Revision 1.24  2002/03/24 14:19:55  swa
729 # set rpm package release in configure.in. nowhere else.
730 #
731 # Revision 1.23  2002/03/24 13:06:49  swa
732 # suse-clean now runs fine
733 #
734 # Revision 1.22  2002/03/24 12:56:21  swa
735 # name change related issues.
736 #
737 # Revision 1.21  2002/03/24 12:43:57  swa
738 # name change
739 #
740 # Revision 1.20  2002/03/24 11:39:17  jongfoster
741 # Renaming config files
742 #
743 # Revision 1.19  2002/03/22 20:53:03  morcego
744 # - Ongoing process to change name to JunkbusterNG
745 # - configure/configure.in: no change needed
746 # - GNUmakefile.in:
747 #         - TAR_ARCH = /tmp/JunkbusterNG-$(RPM_VERSION).tar.gz
748 #         - PROGRAM    = jbng@EXEEXT@
749 #         - rh-spec now references as junkbusterng-rh.spec
750 #         - redhat-upload: references changed to junkbusterng-* (package names)
751 #         - tarball-dist: references changed to JunkbusterNG-distribution-*
752 #         - tarball-src: now JunkbusterNG-*
753 #         - install: initscript now junkbusterng.init and junkbusterng (when
754 #                    installed)
755 # - junkbuster-rh.spec: renamed to junkbusterng-rh.spec
756 # - junkbusterng.spec:
757 #         - References to the expression ijb where changed where possible
758 #         - New package name: junkbusterng (all in lower case, acording to
759 #           the LSB recomendation)
760 #         - Version changed to: 2.9.13
761 #         - Release: 1
762 #         - Added: junkbuster to obsoletes and conflicts (Not sure this is
763 #           right. If it obsoletes, why conflict ? Have to check it later)
764 #         - Summary changed: Stefan, please check and aprove it
765 #         - Changes description to use the new name
766 #         - Sed string was NOT changed. Have to wait to the manpage to
767 #           change first
768 #         - Keeping the user junkbuster for now. It will require some aditional
769 #           changes on the script (scheduled for the next specfile release)
770 #         - Added post entry to move the old logfile to the new log directory
771 #         - Removing "chkconfig --add" entry (not good to have it automaticaly
772 #           added to the startup list).
773 #         - Added preun section to stop the service with the old name, as well
774 #           as remove it from the startup list
775 #         - Removed the chkconfig --del entry from the conditional block on
776 #           the preun scriptlet (now handled on the %files section)
777 # - junkbuster.init: renamed to junkbusterng.init
778 # - junkbusterng.init:
779 #         - Changed JB_BIN to jbng
780 #         - Created JB_OBIN with the old value of JB_BIN (junkbuster), to
781 #           be used where necessary (config dir)
782 #
783 # Aditional notes:
784 # - The config directory is /etc/junkbuster yet. Have to change it on the
785 # specfile, after it is changes on the code
786 # - The only files that got renamed on the cvs tree were the rh specfile and
787 # the init file. Some file references got changes on the makefile and on the
788 # rh-spec (as listed above)
789 #
790 # Revision 1.18  2002/03/21 23:00:00  swa
791 # want to autogenerate stuff.
792 #
793 # Revision 1.17  2002/03/19 19:30:04  morcego
794 # - Fixing stylesheet checking on configure. If it is found, no further checks
795 #   should be done
796 #
797 # - configure will now check for db2html or docbook2html (should work now
798 #   on SuSe without the docbktls package)
799 #
800 # Revision 1.16  2002/03/14 22:32:32  hal9
801 # Bumped the RPM version.
802 #
803 # Revision 1.15  2002/03/08 20:00:28  swa
804 # some leftovers.
805 #
806 # Revision 1.14  2002/03/07 18:25:56  swa
807 # synced redhat and suse build process
808 #
809 # Revision 1.13  2002/03/07 17:17:56  oes
810 # (Hopefully) fixed for older make versions
811 #
812 # Revision 1.12  2002/03/07 15:28:27  swa
813 # more informative
814 #
815 # Revision 1.11  2002/03/06 14:33:18  sarantis
816 # Use proper temp file, not "abc".
817 #
818 # Revision 1.10  2002/03/06 14:19:35  sarantis
819 # Cleanup PID_FILE_PATH from redhat-dist target
820 #
821 # Revision 1.9  2002/03/05 17:31:11  morcego
822 # Search for docbook.dsl. Should solve portability problems for SuSe.
823 #
824 # Revision 1.8  2002/03/05 14:07:42  morcego
825 # configure now detects rpm topdir, and change GNUmakefile acordingly
826 #    (based on sugestion by Sarantis Paskalis)
827 #
828 # Revision 1.7  2002/03/05 13:43:28  morcego
829 # Checking for text browser, so redhat-dok can work.
830 #
831 # Revision 1.6  2002/03/05 13:10:51  morcego
832 # Changes to implement redhat-dok (Hal Burgiss)
833 # Changes to make it work on other distros and out-of-the-shelf configurations
834 #
835 # Revision 1.5  2002/02/27 15:30:39  hal9
836 # Reset $(RPM_PACKAGEV) to 1 (was 2)
837 #
838 # Revision 1.4  2002/01/17 21:44:04  jongfoster
839 # Adding urlmatch.[ch]
840 #
841 # Revision 1.3  2002/01/04 15:26:08  oes
842 # Added tarball-src target
843 #
844 # Revision 1.2  2001/12/30 14:07:31  steudten
845 # - Add signal handling (unix)
846 # - Add SIGHUP handler (unix)
847 # - Add creation of pidfile (unix)
848 # - Add action 'top' in rc file (RH)
849 # - Add entry 'SIGNALS' to manpage
850 # - Add exit message to logfile (unix)
851 #
852 # Revision 1.1  2001/12/01 11:22:57  jongfoster
853 # Renaming Makefile.in to GNUmakefile.in so that non-GNU versions of
854 # make break in a more obvious way.
855 # Adding .PHONY section.
856 #
857 # Revision 1.40  2001/12/01 00:24:11  jongfoster
858 # Renaming various config files
859 # Fixing CR->CRLF under Win32 (I hope)
860 #
861 # Revision 1.39  2001/11/06 12:07:30  steudten
862 # Add --clean for building rpm in target redhat-dist.
863 #
864 # Revision 1.38  2001/11/05 21:35:23  steudten
865 # Complete rewrite for the 'redhat-dist' target.
866 # Checks for writeable RPM build directories for calling user.
867 # So you must not be root, just set the modes to 1777 to
868 # build a RH package.
869 # Fix the upload-target to be arch independant.
870 # Add target for 'solaris-dist' - coming soon.
871 #
872 # Revision 1.37  2001/11/01 00:52:04  hal9
873 # Redhat-upload stuff per Stefan.
874 #
875 # Revision 1.36  2001/10/31 19:26:13  swa
876 # automate process of uploading new releases
877 # to sf.
878 #
879 # Revision 1.35  2001/10/15 22:14:59  joergs
880 # Removed -O2 and -Wall from AmigaOS-only CFLAGS since they are now in
881 #  the general CFLAGS already.
882 #
883 # Revision 1.34  2001/10/15 18:28:06  steudten
884 # remove config.cache for target clobber.
885 # Cleanup make dist for RH and S.u.S.E.
886 #
887 # Revision 1.33  2001/10/10 12:43:33  oes
888 # Added ugly hack to make install target work at least for some setups.
889 #
890 # Revision 1.32  2001/10/09 22:38:19  jongfoster
891 # Correcting actionsfile filename for Win32 INI build
892 #
893 # Revision 1.31  2001/09/23 10:13:48  swa
894 # upload process established. run make webserver and
895 # the documentation is moved to the webserver. documents
896 # are now linked correctly.
897 #
898 # Revision 1.30  2001/09/19 17:55:49  oes
899 # Fixed CFLAGS
900 #
901 # Revision 1.29  2001/09/16 17:34:27  jongfoster
902 # Removing showargs.[ch], adding cgi(simple|edit).[ch]
903 # Replacing $(OBJEXT) with @OBJEXT@ - this seems to be a common source
904 # of build problems.
905 #
906 # Revision 1.28  2001/09/13 15:19:08  swa
907 # we want text files as well.
908 #
909 # Revision 1.27  2001/09/13 13:11:37  steudten
910 #
911 # Replace DEBUG_CFLAGS with OTHER_CFLAGS
912 #
913 # Revision 1.26  2001/09/12 23:44:54  david__schmidt
914 # Mac OSX (Darwin) support added.
915 #
916 # Revision 1.25  2001/09/12 22:55:45  joergs
917 # AmigaOS support added.
918 #
919 # Revision 1.24  2001/09/12 17:28:59  david__schmidt
920 #
921 # OS/2 port: update autoconf'd support for the platform.
922 #
923 # Revision 1.23  2001/09/12 16:28:42  swa
924 # added "make dok" section to generate html pages from
925 # the sgml source documents. note that the we do not want
926 # generated stuff in cvs.
927 #
928 # Revision 1.22  2001/09/10 16:31:23  swa
929 # buildroot definition in the specfile fucks up the build
930 # process under suse. hence I moved it to the "rpm -ta"
931 # command
932 #
933 # Revision 1.21  2001/09/10 11:12:49  oes
934 # Turning on -Wall
935 #
936 # Revision 1.20  2001/08/02 22:04:29  jongfoster
937 # Removing some remaining references to obsolete w32rulesdlg.[ch]
938 #
939 # Revision 1.19  2001/07/30 22:14:03  jongfoster
940 # Removing obsolete w32rulesdlg.c and w32rulesdlg.h
941 #
942 # Revision 1.18  2001/07/29 17:09:17  jongfoster
943 # Major changes to build system in order to fix these bugs:
944 # - pthreads under Linux was broken - changed -lpthread to -pthread
945 # - Compiling in MinGW32 mode under CygWin now correctly detects
946 #   which shared libraries are available
947 # - Solaris support (?) (Not tested under Solaris yet)
948 #
949 # Revision 1.17  2001/07/28 16:44:54  oes
950 # Fixed sed LF->CRLF conversion and removed deprecated files
951 #
952 # Revision 1.16  2001/07/15 19:45:33  jongfoster
953 # Added support for linking with POSIX threads library
954 #
955 # Revision 1.15  2001/07/13 13:48:07  oes
956 #  - Moved STATIC #define for pcre to (ac)config.h
957 #  - Made -Ipcre depandant on static pcre compilation to
958 #    avoid version conflicts
959 #  - Included compilation and depandancies for new deanimate.c
960 #  - Made changes to the pcre/pcreposix/pcrs build process
961 #    as required by the new library autodetection in
962 #    configure.in
963 #
964 # Revision 1.14  2001/07/01 16:27:44  oes
965 # Fixed misplaced dependancy
966 #
967 # Revision 1.13  2001/06/29 13:18:36  oes
968 # - added depandancy of filters.o on cgi.h
969 #
970 # Revision 1.12  2001/06/12 17:15:56  swa
971 # fixes, because a clean build on rh6.1 was impossible.
972 # GZIP confuses make, %configure confuses rpm, etc.
973 #
974 # Revision 1.11  2001/06/11 11:26:35  sarantis
975 # RPM version should be the same as ijbswa version.  The rpm release is
976 # specified in the specfile.
977 #
978 # Revision 1.10  2001/06/07 17:27:45  swa
979 # added suse build section
980 #
981 # Revision 1.9  2001/06/04 18:31:58  swa
982 # files are now prefixed with either `confdir' or `logdir'.
983 # `make redhat-dist' replaces both entries confdir and logdir
984 # with redhat values
985 #
986 # Revision 1.8  2001/06/04 10:44:57  swa
987 # `make redhatr-dist' now works. Except for the paths
988 # in the config file.
989 #
990 # Revision 1.7  2001/06/03 17:09:09  swa
991 # swa for oes: reversed my earlier change
992 #
993 # Revision 1.6  2001/06/03 17:07:27  swa
994 # swa for oes
995 #
996 # Revision 1.5  2001/06/03 13:57:26  swa
997 # compile cgi.c (for andreas' GUI)
998 #
999 # Revision 1.4  2001/05/31 21:18:45  jongfoster
1000 # Added files actions.[ch], actionlist.h, list.[ch] to Makefile
1001 #
1002 # Revision 1.3  2001/05/29 20:02:48  joergs
1003 # Changes for AmigaOS added.
1004 #
1005 # Revision 1.2  2001/05/17 22:23:23  oes
1006 #  - Added auto-generation of CRLFs for Win32 config files
1007 #  - Added comment-prefix to all Win32-only options in the config file
1008 #    and provided auto stripping of this prefix for the Win32 platform by make
1009 #
1010 # Revision 1.1.1.1  2001/05/15 13:59:00  oes
1011 # Initial import of version 2.9.3 source tree
1012 #
1013 #