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