annotate docs/Makefile.in @ 45:32ba1198c6fa noffle

[svn] * Makefile.in, configure, configure.in, docs/Makefile.in, src/Makefile.in: Added checks for the mail and sort programs. ./configure will abort if they're not found. * README: Removed the paragraph about news client software, as it's the same as the one in docs/NOTES. * TODO: Removed 'expiring by groups' and 'move some text from noffle.1 to noffle.conf.5'. * docs/NOTES: Changed the text about -DDEBUG to explain one should use './configure --enable-debug'. * docs/noffle.1, docs/noffle.conf.5: Minor fixes. Added myself and Jim Hague to the AUTHORS section :-) * src/client.h, src/common.h, src/configfile.h, src/content.c, src/content.h, src/control.c, src/control.h, src/database.h, src/dynamicstring.c, src/dynamicstring.h, src/fetch.h, src/fetchlist.h, src/group.h, src/itemlist.c, src/itemlist.h, src/lock.h, src/log.c, src/log.h, src/noffle.c, src/online.h, src/outgoing.h, src/over.c, src/over.h, src/post.h, src/protocol.h, src/pseudo.h, src/request.h, src/server.h, src/util.c, src/util.h: Added the <config.h> include. * src/content.c: Added missing include "content.h". Added a missing 'void' in the declaration of clearCont(). * src/fetchlist.c: Casted fetchlist.size to (size_t) in a call to qsort(), as qsort() expects a size_t. This removes a warning. * src/noffle.c: Made doRequested() static. Added missing void to enableCorefiles(). * src/log.c, src/protocol.c, src/online.c, src/pseudo.c: Added missing includes. * src/pseudo.c: Made genOv() and genPseudo() static. * src/server.c: Added missing void to postArts(). Made touchArticle() static. * src/util.c: Casted arguments of malloc() and memcpy() to size_t. * src/dynamicstring.c, src/itemlist.c, src/over.c, src/request.c, src/util.c: Removed casting of the result of malloc(). This is not necessary and can hide a missing include of <stdlib.h>.
author uh1763
date Sat, 06 May 2000 00:49:38 +0100
parents bb6a1bf61279
children 651334f85995
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
44
bb6a1bf61279 [svn] Oops. Forgot three files in my last commit:
uh1763
parents:
diff changeset
1 # Makefile.in generated automatically by automake 1.4 from Makefile.am
bb6a1bf61279 [svn] Oops. Forgot three files in my last commit:
uh1763
parents:
diff changeset
2
bb6a1bf61279 [svn] Oops. Forgot three files in my last commit:
uh1763
parents:
diff changeset
3 # Copyright (C) 1994, 1995-8, 1999 Free Software Foundation, Inc.
bb6a1bf61279 [svn] Oops. Forgot three files in my last commit:
uh1763
parents:
diff changeset
4 # This Makefile.in is free software; the Free Software Foundation
bb6a1bf61279 [svn] Oops. Forgot three files in my last commit:
uh1763
parents:
diff changeset
5 # gives unlimited permission to copy and/or distribute it,
bb6a1bf61279 [svn] Oops. Forgot three files in my last commit:
uh1763
parents:
diff changeset
6 # with or without modifications, as long as this notice is preserved.
bb6a1bf61279 [svn] Oops. Forgot three files in my last commit:
uh1763
parents:
diff changeset
7
bb6a1bf61279 [svn] Oops. Forgot three files in my last commit:
uh1763
parents:
diff changeset
8 # This program is distributed in the hope that it will be useful,
bb6a1bf61279 [svn] Oops. Forgot three files in my last commit:
uh1763
parents:
diff changeset
9 # but WITHOUT ANY WARRANTY, to the extent permitted by law; without
bb6a1bf61279 [svn] Oops. Forgot three files in my last commit:
uh1763
parents:
diff changeset
10 # even the implied warranty of MERCHANTABILITY or FITNESS FOR A
bb6a1bf61279 [svn] Oops. Forgot three files in my last commit:
uh1763
parents:
diff changeset
11 # PARTICULAR PURPOSE.
bb6a1bf61279 [svn] Oops. Forgot three files in my last commit:
uh1763
parents:
diff changeset
12
bb6a1bf61279 [svn] Oops. Forgot three files in my last commit:
uh1763
parents:
diff changeset
13 # Process this file with automake to produce Makefile.in
bb6a1bf61279 [svn] Oops. Forgot three files in my last commit:
uh1763
parents:
diff changeset
14
bb6a1bf61279 [svn] Oops. Forgot three files in my last commit:
uh1763
parents:
diff changeset
15
bb6a1bf61279 [svn] Oops. Forgot three files in my last commit:
uh1763
parents:
diff changeset
16 SHELL = @SHELL@
bb6a1bf61279 [svn] Oops. Forgot three files in my last commit:
uh1763
parents:
diff changeset
17
bb6a1bf61279 [svn] Oops. Forgot three files in my last commit:
uh1763
parents:
diff changeset
18 srcdir = @srcdir@
bb6a1bf61279 [svn] Oops. Forgot three files in my last commit:
uh1763
parents:
diff changeset
19 top_srcdir = @top_srcdir@
bb6a1bf61279 [svn] Oops. Forgot three files in my last commit:
uh1763
parents:
diff changeset
20 VPATH = @srcdir@
bb6a1bf61279 [svn] Oops. Forgot three files in my last commit:
uh1763
parents:
diff changeset
21 prefix = @prefix@
bb6a1bf61279 [svn] Oops. Forgot three files in my last commit:
uh1763
parents:
diff changeset
22 exec_prefix = @exec_prefix@
bb6a1bf61279 [svn] Oops. Forgot three files in my last commit:
uh1763
parents:
diff changeset
23
bb6a1bf61279 [svn] Oops. Forgot three files in my last commit:
uh1763
parents:
diff changeset
24 bindir = @bindir@
bb6a1bf61279 [svn] Oops. Forgot three files in my last commit:
uh1763
parents:
diff changeset
25 sbindir = @sbindir@
bb6a1bf61279 [svn] Oops. Forgot three files in my last commit:
uh1763
parents:
diff changeset
26 libexecdir = @libexecdir@
bb6a1bf61279 [svn] Oops. Forgot three files in my last commit:
uh1763
parents:
diff changeset
27 datadir = @datadir@
bb6a1bf61279 [svn] Oops. Forgot three files in my last commit:
uh1763
parents:
diff changeset
28 sysconfdir = @sysconfdir@
bb6a1bf61279 [svn] Oops. Forgot three files in my last commit:
uh1763
parents:
diff changeset
29 sharedstatedir = @sharedstatedir@
bb6a1bf61279 [svn] Oops. Forgot three files in my last commit:
uh1763
parents:
diff changeset
30 localstatedir = @localstatedir@
bb6a1bf61279 [svn] Oops. Forgot three files in my last commit:
uh1763
parents:
diff changeset
31 libdir = @libdir@
bb6a1bf61279 [svn] Oops. Forgot three files in my last commit:
uh1763
parents:
diff changeset
32 infodir = @infodir@
bb6a1bf61279 [svn] Oops. Forgot three files in my last commit:
uh1763
parents:
diff changeset
33 mandir = @mandir@
bb6a1bf61279 [svn] Oops. Forgot three files in my last commit:
uh1763
parents:
diff changeset
34 includedir = @includedir@
bb6a1bf61279 [svn] Oops. Forgot three files in my last commit:
uh1763
parents:
diff changeset
35 oldincludedir = /usr/include
bb6a1bf61279 [svn] Oops. Forgot three files in my last commit:
uh1763
parents:
diff changeset
36
bb6a1bf61279 [svn] Oops. Forgot three files in my last commit:
uh1763
parents:
diff changeset
37 DESTDIR =
bb6a1bf61279 [svn] Oops. Forgot three files in my last commit:
uh1763
parents:
diff changeset
38
bb6a1bf61279 [svn] Oops. Forgot three files in my last commit:
uh1763
parents:
diff changeset
39 pkgdatadir = $(datadir)/@PACKAGE@
bb6a1bf61279 [svn] Oops. Forgot three files in my last commit:
uh1763
parents:
diff changeset
40 pkglibdir = $(libdir)/@PACKAGE@
bb6a1bf61279 [svn] Oops. Forgot three files in my last commit:
uh1763
parents:
diff changeset
41 pkgincludedir = $(includedir)/@PACKAGE@
bb6a1bf61279 [svn] Oops. Forgot three files in my last commit:
uh1763
parents:
diff changeset
42
bb6a1bf61279 [svn] Oops. Forgot three files in my last commit:
uh1763
parents:
diff changeset
43 top_builddir = ..
bb6a1bf61279 [svn] Oops. Forgot three files in my last commit:
uh1763
parents:
diff changeset
44
bb6a1bf61279 [svn] Oops. Forgot three files in my last commit:
uh1763
parents:
diff changeset
45 ACLOCAL = @ACLOCAL@
bb6a1bf61279 [svn] Oops. Forgot three files in my last commit:
uh1763
parents:
diff changeset
46 AUTOCONF = @AUTOCONF@
bb6a1bf61279 [svn] Oops. Forgot three files in my last commit:
uh1763
parents:
diff changeset
47 AUTOMAKE = @AUTOMAKE@
bb6a1bf61279 [svn] Oops. Forgot three files in my last commit:
uh1763
parents:
diff changeset
48 AUTOHEADER = @AUTOHEADER@
bb6a1bf61279 [svn] Oops. Forgot three files in my last commit:
uh1763
parents:
diff changeset
49
bb6a1bf61279 [svn] Oops. Forgot three files in my last commit:
uh1763
parents:
diff changeset
50 INSTALL = @INSTALL@
bb6a1bf61279 [svn] Oops. Forgot three files in my last commit:
uh1763
parents:
diff changeset
51 INSTALL_PROGRAM = @INSTALL_PROGRAM@ $(AM_INSTALL_PROGRAM_FLAGS)
bb6a1bf61279 [svn] Oops. Forgot three files in my last commit:
uh1763
parents:
diff changeset
52 INSTALL_DATA = @INSTALL_DATA@
bb6a1bf61279 [svn] Oops. Forgot three files in my last commit:
uh1763
parents:
diff changeset
53 INSTALL_SCRIPT = @INSTALL_SCRIPT@
bb6a1bf61279 [svn] Oops. Forgot three files in my last commit:
uh1763
parents:
diff changeset
54 transform = @program_transform_name@
bb6a1bf61279 [svn] Oops. Forgot three files in my last commit:
uh1763
parents:
diff changeset
55
bb6a1bf61279 [svn] Oops. Forgot three files in my last commit:
uh1763
parents:
diff changeset
56 NORMAL_INSTALL = :
bb6a1bf61279 [svn] Oops. Forgot three files in my last commit:
uh1763
parents:
diff changeset
57 PRE_INSTALL = :
bb6a1bf61279 [svn] Oops. Forgot three files in my last commit:
uh1763
parents:
diff changeset
58 POST_INSTALL = :
bb6a1bf61279 [svn] Oops. Forgot three files in my last commit:
uh1763
parents:
diff changeset
59 NORMAL_UNINSTALL = :
bb6a1bf61279 [svn] Oops. Forgot three files in my last commit:
uh1763
parents:
diff changeset
60 PRE_UNINSTALL = :
bb6a1bf61279 [svn] Oops. Forgot three files in my last commit:
uh1763
parents:
diff changeset
61 POST_UNINSTALL = :
bb6a1bf61279 [svn] Oops. Forgot three files in my last commit:
uh1763
parents:
diff changeset
62 CC = @CC@
bb6a1bf61279 [svn] Oops. Forgot three files in my last commit:
uh1763
parents:
diff changeset
63 CONFIGFILE = @CONFIGFILE@
bb6a1bf61279 [svn] Oops. Forgot three files in my last commit:
uh1763
parents:
diff changeset
64 DOCDIR = @DOCDIR@
45
32ba1198c6fa [svn] * Makefile.in, configure, configure.in, docs/Makefile.in, src/Makefile.in:
uh1763
parents: 44
diff changeset
65 MAILPROG = @MAILPROG@
44
bb6a1bf61279 [svn] Oops. Forgot three files in my last commit:
uh1763
parents:
diff changeset
66 MAKEINFO = @MAKEINFO@
bb6a1bf61279 [svn] Oops. Forgot three files in my last commit:
uh1763
parents:
diff changeset
67 PACKAGE = @PACKAGE@
45
32ba1198c6fa [svn] * Makefile.in, configure, configure.in, docs/Makefile.in, src/Makefile.in:
uh1763
parents: 44
diff changeset
68 SORTPROG = @SORTPROG@
44
bb6a1bf61279 [svn] Oops. Forgot three files in my last commit:
uh1763
parents:
diff changeset
69 SPOOLDIR = @SPOOLDIR@
bb6a1bf61279 [svn] Oops. Forgot three files in my last commit:
uh1763
parents:
diff changeset
70 VERSION = @VERSION@
bb6a1bf61279 [svn] Oops. Forgot three files in my last commit:
uh1763
parents:
diff changeset
71
bb6a1bf61279 [svn] Oops. Forgot three files in my last commit:
uh1763
parents:
diff changeset
72 man_MANS = $(PACKAGE).1 $(PACKAGE).conf.5
bb6a1bf61279 [svn] Oops. Forgot three files in my last commit:
uh1763
parents:
diff changeset
73
bb6a1bf61279 [svn] Oops. Forgot three files in my last commit:
uh1763
parents:
diff changeset
74 EXTRA_DIST = FAQ NOTES ${man_MANS} $(PACKAGE).lsm
bb6a1bf61279 [svn] Oops. Forgot three files in my last commit:
uh1763
parents:
diff changeset
75 mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs
bb6a1bf61279 [svn] Oops. Forgot three files in my last commit:
uh1763
parents:
diff changeset
76 CONFIG_HEADER = ../config.h
bb6a1bf61279 [svn] Oops. Forgot three files in my last commit:
uh1763
parents:
diff changeset
77 CONFIG_CLEAN_FILES =
bb6a1bf61279 [svn] Oops. Forgot three files in my last commit:
uh1763
parents:
diff changeset
78 man1dir = $(mandir)/man1
bb6a1bf61279 [svn] Oops. Forgot three files in my last commit:
uh1763
parents:
diff changeset
79 man5dir = $(mandir)/man5
bb6a1bf61279 [svn] Oops. Forgot three files in my last commit:
uh1763
parents:
diff changeset
80 MANS = $(man_MANS)
bb6a1bf61279 [svn] Oops. Forgot three files in my last commit:
uh1763
parents:
diff changeset
81
bb6a1bf61279 [svn] Oops. Forgot three files in my last commit:
uh1763
parents:
diff changeset
82 NROFF = nroff
bb6a1bf61279 [svn] Oops. Forgot three files in my last commit:
uh1763
parents:
diff changeset
83 DIST_COMMON = Makefile.am Makefile.in
bb6a1bf61279 [svn] Oops. Forgot three files in my last commit:
uh1763
parents:
diff changeset
84
bb6a1bf61279 [svn] Oops. Forgot three files in my last commit:
uh1763
parents:
diff changeset
85
bb6a1bf61279 [svn] Oops. Forgot three files in my last commit:
uh1763
parents:
diff changeset
86 DISTFILES = $(DIST_COMMON) $(SOURCES) $(HEADERS) $(TEXINFOS) $(EXTRA_DIST)
bb6a1bf61279 [svn] Oops. Forgot three files in my last commit:
uh1763
parents:
diff changeset
87
bb6a1bf61279 [svn] Oops. Forgot three files in my last commit:
uh1763
parents:
diff changeset
88 TAR = tar
bb6a1bf61279 [svn] Oops. Forgot three files in my last commit:
uh1763
parents:
diff changeset
89 GZIP_ENV = --best
bb6a1bf61279 [svn] Oops. Forgot three files in my last commit:
uh1763
parents:
diff changeset
90 all: all-redirect
bb6a1bf61279 [svn] Oops. Forgot three files in my last commit:
uh1763
parents:
diff changeset
91 .SUFFIXES:
bb6a1bf61279 [svn] Oops. Forgot three files in my last commit:
uh1763
parents:
diff changeset
92 $(srcdir)/Makefile.in: Makefile.am $(top_srcdir)/configure.in $(ACLOCAL_M4)
bb6a1bf61279 [svn] Oops. Forgot three files in my last commit:
uh1763
parents:
diff changeset
93 cd $(top_srcdir) && $(AUTOMAKE) --gnu docs/Makefile
bb6a1bf61279 [svn] Oops. Forgot three files in my last commit:
uh1763
parents:
diff changeset
94
bb6a1bf61279 [svn] Oops. Forgot three files in my last commit:
uh1763
parents:
diff changeset
95 Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status $(BUILT_SOURCES)
bb6a1bf61279 [svn] Oops. Forgot three files in my last commit:
uh1763
parents:
diff changeset
96 cd $(top_builddir) \
bb6a1bf61279 [svn] Oops. Forgot three files in my last commit:
uh1763
parents:
diff changeset
97 && CONFIG_FILES=$(subdir)/$@ CONFIG_HEADERS= $(SHELL) ./config.status
bb6a1bf61279 [svn] Oops. Forgot three files in my last commit:
uh1763
parents:
diff changeset
98
bb6a1bf61279 [svn] Oops. Forgot three files in my last commit:
uh1763
parents:
diff changeset
99
bb6a1bf61279 [svn] Oops. Forgot three files in my last commit:
uh1763
parents:
diff changeset
100 install-man1:
bb6a1bf61279 [svn] Oops. Forgot three files in my last commit:
uh1763
parents:
diff changeset
101 $(mkinstalldirs) $(DESTDIR)$(man1dir)
bb6a1bf61279 [svn] Oops. Forgot three files in my last commit:
uh1763
parents:
diff changeset
102 @list='$(man1_MANS)'; \
bb6a1bf61279 [svn] Oops. Forgot three files in my last commit:
uh1763
parents:
diff changeset
103 l2='$(man_MANS)'; for i in $$l2; do \
bb6a1bf61279 [svn] Oops. Forgot three files in my last commit:
uh1763
parents:
diff changeset
104 case "$$i" in \
bb6a1bf61279 [svn] Oops. Forgot three files in my last commit:
uh1763
parents:
diff changeset
105 *.1*) list="$$list $$i" ;; \
bb6a1bf61279 [svn] Oops. Forgot three files in my last commit:
uh1763
parents:
diff changeset
106 esac; \
bb6a1bf61279 [svn] Oops. Forgot three files in my last commit:
uh1763
parents:
diff changeset
107 done; \
bb6a1bf61279 [svn] Oops. Forgot three files in my last commit:
uh1763
parents:
diff changeset
108 for i in $$list; do \
bb6a1bf61279 [svn] Oops. Forgot three files in my last commit:
uh1763
parents:
diff changeset
109 if test -f $(srcdir)/$$i; then file=$(srcdir)/$$i; \
bb6a1bf61279 [svn] Oops. Forgot three files in my last commit:
uh1763
parents:
diff changeset
110 else file=$$i; fi; \
bb6a1bf61279 [svn] Oops. Forgot three files in my last commit:
uh1763
parents:
diff changeset
111 ext=`echo $$i | sed -e 's/^.*\\.//'`; \
bb6a1bf61279 [svn] Oops. Forgot three files in my last commit:
uh1763
parents:
diff changeset
112 inst=`echo $$i | sed -e 's/\\.[0-9a-z]*$$//'`; \
bb6a1bf61279 [svn] Oops. Forgot three files in my last commit:
uh1763
parents:
diff changeset
113 inst=`echo $$inst | sed '$(transform)'`.$$ext; \
bb6a1bf61279 [svn] Oops. Forgot three files in my last commit:
uh1763
parents:
diff changeset
114 echo " $(INSTALL_DATA) $$file $(DESTDIR)$(man1dir)/$$inst"; \
bb6a1bf61279 [svn] Oops. Forgot three files in my last commit:
uh1763
parents:
diff changeset
115 $(INSTALL_DATA) $$file $(DESTDIR)$(man1dir)/$$inst; \
bb6a1bf61279 [svn] Oops. Forgot three files in my last commit:
uh1763
parents:
diff changeset
116 done
bb6a1bf61279 [svn] Oops. Forgot three files in my last commit:
uh1763
parents:
diff changeset
117
bb6a1bf61279 [svn] Oops. Forgot three files in my last commit:
uh1763
parents:
diff changeset
118 uninstall-man1:
bb6a1bf61279 [svn] Oops. Forgot three files in my last commit:
uh1763
parents:
diff changeset
119 @list='$(man1_MANS)'; \
bb6a1bf61279 [svn] Oops. Forgot three files in my last commit:
uh1763
parents:
diff changeset
120 l2='$(man_MANS)'; for i in $$l2; do \
bb6a1bf61279 [svn] Oops. Forgot three files in my last commit:
uh1763
parents:
diff changeset
121 case "$$i" in \
bb6a1bf61279 [svn] Oops. Forgot three files in my last commit:
uh1763
parents:
diff changeset
122 *.1*) list="$$list $$i" ;; \
bb6a1bf61279 [svn] Oops. Forgot three files in my last commit:
uh1763
parents:
diff changeset
123 esac; \
bb6a1bf61279 [svn] Oops. Forgot three files in my last commit:
uh1763
parents:
diff changeset
124 done; \
bb6a1bf61279 [svn] Oops. Forgot three files in my last commit:
uh1763
parents:
diff changeset
125 for i in $$list; do \
bb6a1bf61279 [svn] Oops. Forgot three files in my last commit:
uh1763
parents:
diff changeset
126 ext=`echo $$i | sed -e 's/^.*\\.//'`; \
bb6a1bf61279 [svn] Oops. Forgot three files in my last commit:
uh1763
parents:
diff changeset
127 inst=`echo $$i | sed -e 's/\\.[0-9a-z]*$$//'`; \
bb6a1bf61279 [svn] Oops. Forgot three files in my last commit:
uh1763
parents:
diff changeset
128 inst=`echo $$inst | sed '$(transform)'`.$$ext; \
bb6a1bf61279 [svn] Oops. Forgot three files in my last commit:
uh1763
parents:
diff changeset
129 echo " rm -f $(DESTDIR)$(man1dir)/$$inst"; \
bb6a1bf61279 [svn] Oops. Forgot three files in my last commit:
uh1763
parents:
diff changeset
130 rm -f $(DESTDIR)$(man1dir)/$$inst; \
bb6a1bf61279 [svn] Oops. Forgot three files in my last commit:
uh1763
parents:
diff changeset
131 done
bb6a1bf61279 [svn] Oops. Forgot three files in my last commit:
uh1763
parents:
diff changeset
132
bb6a1bf61279 [svn] Oops. Forgot three files in my last commit:
uh1763
parents:
diff changeset
133 install-man5:
bb6a1bf61279 [svn] Oops. Forgot three files in my last commit:
uh1763
parents:
diff changeset
134 $(mkinstalldirs) $(DESTDIR)$(man5dir)
bb6a1bf61279 [svn] Oops. Forgot three files in my last commit:
uh1763
parents:
diff changeset
135 @list='$(man5_MANS)'; \
bb6a1bf61279 [svn] Oops. Forgot three files in my last commit:
uh1763
parents:
diff changeset
136 l2='$(man_MANS)'; for i in $$l2; do \
bb6a1bf61279 [svn] Oops. Forgot three files in my last commit:
uh1763
parents:
diff changeset
137 case "$$i" in \
bb6a1bf61279 [svn] Oops. Forgot three files in my last commit:
uh1763
parents:
diff changeset
138 *.5*) list="$$list $$i" ;; \
bb6a1bf61279 [svn] Oops. Forgot three files in my last commit:
uh1763
parents:
diff changeset
139 esac; \
bb6a1bf61279 [svn] Oops. Forgot three files in my last commit:
uh1763
parents:
diff changeset
140 done; \
bb6a1bf61279 [svn] Oops. Forgot three files in my last commit:
uh1763
parents:
diff changeset
141 for i in $$list; do \
bb6a1bf61279 [svn] Oops. Forgot three files in my last commit:
uh1763
parents:
diff changeset
142 if test -f $(srcdir)/$$i; then file=$(srcdir)/$$i; \
bb6a1bf61279 [svn] Oops. Forgot three files in my last commit:
uh1763
parents:
diff changeset
143 else file=$$i; fi; \
bb6a1bf61279 [svn] Oops. Forgot three files in my last commit:
uh1763
parents:
diff changeset
144 ext=`echo $$i | sed -e 's/^.*\\.//'`; \
bb6a1bf61279 [svn] Oops. Forgot three files in my last commit:
uh1763
parents:
diff changeset
145 inst=`echo $$i | sed -e 's/\\.[0-9a-z]*$$//'`; \
bb6a1bf61279 [svn] Oops. Forgot three files in my last commit:
uh1763
parents:
diff changeset
146 inst=`echo $$inst | sed '$(transform)'`.$$ext; \
bb6a1bf61279 [svn] Oops. Forgot three files in my last commit:
uh1763
parents:
diff changeset
147 echo " $(INSTALL_DATA) $$file $(DESTDIR)$(man5dir)/$$inst"; \
bb6a1bf61279 [svn] Oops. Forgot three files in my last commit:
uh1763
parents:
diff changeset
148 $(INSTALL_DATA) $$file $(DESTDIR)$(man5dir)/$$inst; \
bb6a1bf61279 [svn] Oops. Forgot three files in my last commit:
uh1763
parents:
diff changeset
149 done
bb6a1bf61279 [svn] Oops. Forgot three files in my last commit:
uh1763
parents:
diff changeset
150
bb6a1bf61279 [svn] Oops. Forgot three files in my last commit:
uh1763
parents:
diff changeset
151 uninstall-man5:
bb6a1bf61279 [svn] Oops. Forgot three files in my last commit:
uh1763
parents:
diff changeset
152 @list='$(man5_MANS)'; \
bb6a1bf61279 [svn] Oops. Forgot three files in my last commit:
uh1763
parents:
diff changeset
153 l2='$(man_MANS)'; for i in $$l2; do \
bb6a1bf61279 [svn] Oops. Forgot three files in my last commit:
uh1763
parents:
diff changeset
154 case "$$i" in \
bb6a1bf61279 [svn] Oops. Forgot three files in my last commit:
uh1763
parents:
diff changeset
155 *.5*) list="$$list $$i" ;; \
bb6a1bf61279 [svn] Oops. Forgot three files in my last commit:
uh1763
parents:
diff changeset
156 esac; \
bb6a1bf61279 [svn] Oops. Forgot three files in my last commit:
uh1763
parents:
diff changeset
157 done; \
bb6a1bf61279 [svn] Oops. Forgot three files in my last commit:
uh1763
parents:
diff changeset
158 for i in $$list; do \
bb6a1bf61279 [svn] Oops. Forgot three files in my last commit:
uh1763
parents:
diff changeset
159 ext=`echo $$i | sed -e 's/^.*\\.//'`; \
bb6a1bf61279 [svn] Oops. Forgot three files in my last commit:
uh1763
parents:
diff changeset
160 inst=`echo $$i | sed -e 's/\\.[0-9a-z]*$$//'`; \
bb6a1bf61279 [svn] Oops. Forgot three files in my last commit:
uh1763
parents:
diff changeset
161 inst=`echo $$inst | sed '$(transform)'`.$$ext; \
bb6a1bf61279 [svn] Oops. Forgot three files in my last commit:
uh1763
parents:
diff changeset
162 echo " rm -f $(DESTDIR)$(man5dir)/$$inst"; \
bb6a1bf61279 [svn] Oops. Forgot three files in my last commit:
uh1763
parents:
diff changeset
163 rm -f $(DESTDIR)$(man5dir)/$$inst; \
bb6a1bf61279 [svn] Oops. Forgot three files in my last commit:
uh1763
parents:
diff changeset
164 done
bb6a1bf61279 [svn] Oops. Forgot three files in my last commit:
uh1763
parents:
diff changeset
165 install-man: $(MANS)
bb6a1bf61279 [svn] Oops. Forgot three files in my last commit:
uh1763
parents:
diff changeset
166 @$(NORMAL_INSTALL)
bb6a1bf61279 [svn] Oops. Forgot three files in my last commit:
uh1763
parents:
diff changeset
167 $(MAKE) $(AM_MAKEFLAGS) install-man1 install-man5
bb6a1bf61279 [svn] Oops. Forgot three files in my last commit:
uh1763
parents:
diff changeset
168 uninstall-man:
bb6a1bf61279 [svn] Oops. Forgot three files in my last commit:
uh1763
parents:
diff changeset
169 @$(NORMAL_UNINSTALL)
bb6a1bf61279 [svn] Oops. Forgot three files in my last commit:
uh1763
parents:
diff changeset
170 $(MAKE) $(AM_MAKEFLAGS) uninstall-man1 uninstall-man5
bb6a1bf61279 [svn] Oops. Forgot three files in my last commit:
uh1763
parents:
diff changeset
171 tags: TAGS
bb6a1bf61279 [svn] Oops. Forgot three files in my last commit:
uh1763
parents:
diff changeset
172 TAGS:
bb6a1bf61279 [svn] Oops. Forgot three files in my last commit:
uh1763
parents:
diff changeset
173
bb6a1bf61279 [svn] Oops. Forgot three files in my last commit:
uh1763
parents:
diff changeset
174
bb6a1bf61279 [svn] Oops. Forgot three files in my last commit:
uh1763
parents:
diff changeset
175 distdir = $(top_builddir)/$(PACKAGE)-$(VERSION)/$(subdir)
bb6a1bf61279 [svn] Oops. Forgot three files in my last commit:
uh1763
parents:
diff changeset
176
bb6a1bf61279 [svn] Oops. Forgot three files in my last commit:
uh1763
parents:
diff changeset
177 subdir = docs
bb6a1bf61279 [svn] Oops. Forgot three files in my last commit:
uh1763
parents:
diff changeset
178
bb6a1bf61279 [svn] Oops. Forgot three files in my last commit:
uh1763
parents:
diff changeset
179 distdir: $(DISTFILES)
bb6a1bf61279 [svn] Oops. Forgot three files in my last commit:
uh1763
parents:
diff changeset
180 here=`cd $(top_builddir) && pwd`; \
bb6a1bf61279 [svn] Oops. Forgot three files in my last commit:
uh1763
parents:
diff changeset
181 top_distdir=`cd $(top_distdir) && pwd`; \
bb6a1bf61279 [svn] Oops. Forgot three files in my last commit:
uh1763
parents:
diff changeset
182 distdir=`cd $(distdir) && pwd`; \
bb6a1bf61279 [svn] Oops. Forgot three files in my last commit:
uh1763
parents:
diff changeset
183 cd $(top_srcdir) \
bb6a1bf61279 [svn] Oops. Forgot three files in my last commit:
uh1763
parents:
diff changeset
184 && $(AUTOMAKE) --include-deps --build-dir=$$here --srcdir-name=$(top_srcdir) --output-dir=$$top_distdir --gnu docs/Makefile
bb6a1bf61279 [svn] Oops. Forgot three files in my last commit:
uh1763
parents:
diff changeset
185 @for file in $(DISTFILES); do \
bb6a1bf61279 [svn] Oops. Forgot three files in my last commit:
uh1763
parents:
diff changeset
186 d=$(srcdir); \
bb6a1bf61279 [svn] Oops. Forgot three files in my last commit:
uh1763
parents:
diff changeset
187 if test -d $$d/$$file; then \
bb6a1bf61279 [svn] Oops. Forgot three files in my last commit:
uh1763
parents:
diff changeset
188 cp -pr $$/$$file $(distdir)/$$file; \
bb6a1bf61279 [svn] Oops. Forgot three files in my last commit:
uh1763
parents:
diff changeset
189 else \
bb6a1bf61279 [svn] Oops. Forgot three files in my last commit:
uh1763
parents:
diff changeset
190 test -f $(distdir)/$$file \
bb6a1bf61279 [svn] Oops. Forgot three files in my last commit:
uh1763
parents:
diff changeset
191 || ln $$d/$$file $(distdir)/$$file 2> /dev/null \
bb6a1bf61279 [svn] Oops. Forgot three files in my last commit:
uh1763
parents:
diff changeset
192 || cp -p $$d/$$file $(distdir)/$$file || :; \
bb6a1bf61279 [svn] Oops. Forgot three files in my last commit:
uh1763
parents:
diff changeset
193 fi; \
bb6a1bf61279 [svn] Oops. Forgot three files in my last commit:
uh1763
parents:
diff changeset
194 done
bb6a1bf61279 [svn] Oops. Forgot three files in my last commit:
uh1763
parents:
diff changeset
195 info-am:
bb6a1bf61279 [svn] Oops. Forgot three files in my last commit:
uh1763
parents:
diff changeset
196 info: info-am
bb6a1bf61279 [svn] Oops. Forgot three files in my last commit:
uh1763
parents:
diff changeset
197 dvi-am:
bb6a1bf61279 [svn] Oops. Forgot three files in my last commit:
uh1763
parents:
diff changeset
198 dvi: dvi-am
bb6a1bf61279 [svn] Oops. Forgot three files in my last commit:
uh1763
parents:
diff changeset
199 check-am: all-am
bb6a1bf61279 [svn] Oops. Forgot three files in my last commit:
uh1763
parents:
diff changeset
200 check: check-am
bb6a1bf61279 [svn] Oops. Forgot three files in my last commit:
uh1763
parents:
diff changeset
201 installcheck-am:
bb6a1bf61279 [svn] Oops. Forgot three files in my last commit:
uh1763
parents:
diff changeset
202 installcheck: installcheck-am
bb6a1bf61279 [svn] Oops. Forgot three files in my last commit:
uh1763
parents:
diff changeset
203 install-exec-am:
bb6a1bf61279 [svn] Oops. Forgot three files in my last commit:
uh1763
parents:
diff changeset
204 install-exec: install-exec-am
bb6a1bf61279 [svn] Oops. Forgot three files in my last commit:
uh1763
parents:
diff changeset
205
bb6a1bf61279 [svn] Oops. Forgot three files in my last commit:
uh1763
parents:
diff changeset
206 install-data-am: install-man install-data-local
bb6a1bf61279 [svn] Oops. Forgot three files in my last commit:
uh1763
parents:
diff changeset
207 install-data: install-data-am
bb6a1bf61279 [svn] Oops. Forgot three files in my last commit:
uh1763
parents:
diff changeset
208
bb6a1bf61279 [svn] Oops. Forgot three files in my last commit:
uh1763
parents:
diff changeset
209 install-am: all-am
bb6a1bf61279 [svn] Oops. Forgot three files in my last commit:
uh1763
parents:
diff changeset
210 @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am
bb6a1bf61279 [svn] Oops. Forgot three files in my last commit:
uh1763
parents:
diff changeset
211 install: install-am
bb6a1bf61279 [svn] Oops. Forgot three files in my last commit:
uh1763
parents:
diff changeset
212 uninstall-am: uninstall-man uninstall-local
bb6a1bf61279 [svn] Oops. Forgot three files in my last commit:
uh1763
parents:
diff changeset
213 uninstall: uninstall-am
bb6a1bf61279 [svn] Oops. Forgot three files in my last commit:
uh1763
parents:
diff changeset
214 all-am: Makefile $(MANS)
bb6a1bf61279 [svn] Oops. Forgot three files in my last commit:
uh1763
parents:
diff changeset
215 all-redirect: all-am
bb6a1bf61279 [svn] Oops. Forgot three files in my last commit:
uh1763
parents:
diff changeset
216 install-strip:
bb6a1bf61279 [svn] Oops. Forgot three files in my last commit:
uh1763
parents:
diff changeset
217 $(MAKE) $(AM_MAKEFLAGS) AM_INSTALL_PROGRAM_FLAGS=-s install
bb6a1bf61279 [svn] Oops. Forgot three files in my last commit:
uh1763
parents:
diff changeset
218 installdirs:
bb6a1bf61279 [svn] Oops. Forgot three files in my last commit:
uh1763
parents:
diff changeset
219 $(mkinstalldirs) $(DESTDIR)$(mandir)/man1 $(DESTDIR)$(mandir)/man5
bb6a1bf61279 [svn] Oops. Forgot three files in my last commit:
uh1763
parents:
diff changeset
220
bb6a1bf61279 [svn] Oops. Forgot three files in my last commit:
uh1763
parents:
diff changeset
221
bb6a1bf61279 [svn] Oops. Forgot three files in my last commit:
uh1763
parents:
diff changeset
222 mostlyclean-generic:
bb6a1bf61279 [svn] Oops. Forgot three files in my last commit:
uh1763
parents:
diff changeset
223
bb6a1bf61279 [svn] Oops. Forgot three files in my last commit:
uh1763
parents:
diff changeset
224 clean-generic:
bb6a1bf61279 [svn] Oops. Forgot three files in my last commit:
uh1763
parents:
diff changeset
225
bb6a1bf61279 [svn] Oops. Forgot three files in my last commit:
uh1763
parents:
diff changeset
226 distclean-generic:
bb6a1bf61279 [svn] Oops. Forgot three files in my last commit:
uh1763
parents:
diff changeset
227 -rm -f Makefile $(CONFIG_CLEAN_FILES)
bb6a1bf61279 [svn] Oops. Forgot three files in my last commit:
uh1763
parents:
diff changeset
228 -rm -f config.cache config.log stamp-h stamp-h[0-9]*
bb6a1bf61279 [svn] Oops. Forgot three files in my last commit:
uh1763
parents:
diff changeset
229
bb6a1bf61279 [svn] Oops. Forgot three files in my last commit:
uh1763
parents:
diff changeset
230 maintainer-clean-generic:
bb6a1bf61279 [svn] Oops. Forgot three files in my last commit:
uh1763
parents:
diff changeset
231 mostlyclean-am: mostlyclean-generic
bb6a1bf61279 [svn] Oops. Forgot three files in my last commit:
uh1763
parents:
diff changeset
232
bb6a1bf61279 [svn] Oops. Forgot three files in my last commit:
uh1763
parents:
diff changeset
233 mostlyclean: mostlyclean-am
bb6a1bf61279 [svn] Oops. Forgot three files in my last commit:
uh1763
parents:
diff changeset
234
bb6a1bf61279 [svn] Oops. Forgot three files in my last commit:
uh1763
parents:
diff changeset
235 clean-am: clean-generic mostlyclean-am
bb6a1bf61279 [svn] Oops. Forgot three files in my last commit:
uh1763
parents:
diff changeset
236
bb6a1bf61279 [svn] Oops. Forgot three files in my last commit:
uh1763
parents:
diff changeset
237 clean: clean-am
bb6a1bf61279 [svn] Oops. Forgot three files in my last commit:
uh1763
parents:
diff changeset
238
bb6a1bf61279 [svn] Oops. Forgot three files in my last commit:
uh1763
parents:
diff changeset
239 distclean-am: distclean-generic clean-am
bb6a1bf61279 [svn] Oops. Forgot three files in my last commit:
uh1763
parents:
diff changeset
240
bb6a1bf61279 [svn] Oops. Forgot three files in my last commit:
uh1763
parents:
diff changeset
241 distclean: distclean-am
bb6a1bf61279 [svn] Oops. Forgot three files in my last commit:
uh1763
parents:
diff changeset
242
bb6a1bf61279 [svn] Oops. Forgot three files in my last commit:
uh1763
parents:
diff changeset
243 maintainer-clean-am: maintainer-clean-generic distclean-am
bb6a1bf61279 [svn] Oops. Forgot three files in my last commit:
uh1763
parents:
diff changeset
244 @echo "This command is intended for maintainers to use;"
bb6a1bf61279 [svn] Oops. Forgot three files in my last commit:
uh1763
parents:
diff changeset
245 @echo "it deletes files that may require special tools to rebuild."
bb6a1bf61279 [svn] Oops. Forgot three files in my last commit:
uh1763
parents:
diff changeset
246
bb6a1bf61279 [svn] Oops. Forgot three files in my last commit:
uh1763
parents:
diff changeset
247 maintainer-clean: maintainer-clean-am
bb6a1bf61279 [svn] Oops. Forgot three files in my last commit:
uh1763
parents:
diff changeset
248
bb6a1bf61279 [svn] Oops. Forgot three files in my last commit:
uh1763
parents:
diff changeset
249 .PHONY: install-man1 uninstall-man1 install-man5 uninstall-man5 \
bb6a1bf61279 [svn] Oops. Forgot three files in my last commit:
uh1763
parents:
diff changeset
250 install-man uninstall-man tags distdir info-am info dvi-am dvi check \
bb6a1bf61279 [svn] Oops. Forgot three files in my last commit:
uh1763
parents:
diff changeset
251 check-am installcheck-am installcheck install-exec-am install-exec \
bb6a1bf61279 [svn] Oops. Forgot three files in my last commit:
uh1763
parents:
diff changeset
252 install-data-local install-data-am install-data install-am install \
bb6a1bf61279 [svn] Oops. Forgot three files in my last commit:
uh1763
parents:
diff changeset
253 uninstall-local uninstall-am uninstall all-redirect all-am all \
bb6a1bf61279 [svn] Oops. Forgot three files in my last commit:
uh1763
parents:
diff changeset
254 installdirs mostlyclean-generic distclean-generic clean-generic \
bb6a1bf61279 [svn] Oops. Forgot three files in my last commit:
uh1763
parents:
diff changeset
255 maintainer-clean-generic clean mostlyclean distclean maintainer-clean
bb6a1bf61279 [svn] Oops. Forgot three files in my last commit:
uh1763
parents:
diff changeset
256
bb6a1bf61279 [svn] Oops. Forgot three files in my last commit:
uh1763
parents:
diff changeset
257
bb6a1bf61279 [svn] Oops. Forgot three files in my last commit:
uh1763
parents:
diff changeset
258 install-data-local:
bb6a1bf61279 [svn] Oops. Forgot three files in my last commit:
uh1763
parents:
diff changeset
259 $(INSTALL) -o 0 -g 0 -d $(DOCDIR)
bb6a1bf61279 [svn] Oops. Forgot three files in my last commit:
uh1763
parents:
diff changeset
260 $(INSTALL_DATA) -o 0 -g 0 $(srcdir)/FAQ $(DOCDIR)
bb6a1bf61279 [svn] Oops. Forgot three files in my last commit:
uh1763
parents:
diff changeset
261 $(INSTALL_DATA) -o 0 -g 0 $(srcdir)/NOTES $(DOCDIR)
bb6a1bf61279 [svn] Oops. Forgot three files in my last commit:
uh1763
parents:
diff changeset
262 $(INSTALL_DATA) -o 0 -g 0 $(srcdir)/$(PACKAGE).lsm $(DOCDIR)
bb6a1bf61279 [svn] Oops. Forgot three files in my last commit:
uh1763
parents:
diff changeset
263
bb6a1bf61279 [svn] Oops. Forgot three files in my last commit:
uh1763
parents:
diff changeset
264 uninstall-local:
bb6a1bf61279 [svn] Oops. Forgot three files in my last commit:
uh1763
parents:
diff changeset
265 rm -f $(DOCDIR)/FAQ
bb6a1bf61279 [svn] Oops. Forgot three files in my last commit:
uh1763
parents:
diff changeset
266 rm -f $(DOCDIR)/NOTES
bb6a1bf61279 [svn] Oops. Forgot three files in my last commit:
uh1763
parents:
diff changeset
267 rm -f $(DOCDIR)/$(PACKAGE).lsm
bb6a1bf61279 [svn] Oops. Forgot three files in my last commit:
uh1763
parents:
diff changeset
268
bb6a1bf61279 [svn] Oops. Forgot three files in my last commit:
uh1763
parents:
diff changeset
269 # Tell versions [3.59,3.63) of GNU make to not export all variables.
bb6a1bf61279 [svn] Oops. Forgot three files in my last commit:
uh1763
parents:
diff changeset
270 # Otherwise a system limit (for SysV at least) may be exceeded.
bb6a1bf61279 [svn] Oops. Forgot three files in my last commit:
uh1763
parents:
diff changeset
271 .NOEXPORT: