5ae8be46109f35835eb661b0957da6af5def6cf2
[debian/amanda] / common-src / Makefile.in
1 # Makefile.in generated by automake 1.11 from Makefile.am.
2 # @configure_input@
3
4 # Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002,
5 # 2003, 2004, 2005, 2006, 2007, 2008, 2009  Free Software Foundation,
6 # Inc.
7 # This Makefile.in is free software; the Free Software Foundation
8 # gives unlimited permission to copy and/or distribute it,
9 # with or without modifications, as long as this notice is preserved.
10
11 # This program is distributed in the hope that it will be useful,
12 # but WITHOUT ANY WARRANTY, to the extent permitted by law; without
13 # even the implied warranty of MERCHANTABILITY or FITNESS FOR A
14 # PARTICULAR PURPOSE.
15
16 @SET_MAKE@
17
18 # Makefile for Amanda library.
19
20 # vim:ft=automake
21 # Copyright (c) 2005-2008 Zmanda Inc.  All Rights Reserved.
22
23 # This library is free software; you can redistribute it and/or modify it
24 # under the terms of the GNU Lesser General Public License version 2.1 as 
25 # published by the Free Software Foundation.
26
27 # This library is distributed in the hope that it will be useful, but
28 # WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
29 # or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU Lesser General Public
30 # License for more details.
31
32 # You should have received a copy of the GNU Lesser General Public License
33 # along with this library; if not, write to the Free Software Foundation,
34 # Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA.
35
36 # Contact information: Zmanda Inc., 465 S Mathlida Ave, Suite 300
37 # Sunnyvale, CA 94086, USA, or: http://www.zmanda.com
38
39 # simple include file to pre-define variables which are then +='d by other
40 # scripts in this directory.
41
42 # vim:ft=automake
43 # Copyright (c) 2005-2008 Zmanda Inc.  All Rights Reserved.
44
45 # This library is free software; you can redistribute it and/or modify it
46 # under the terms of the GNU Lesser General Public License version 2.1 as 
47 # published by the Free Software Foundation.
48
49 # This library is distributed in the hope that it will be useful, but
50 # WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
51 # or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU Lesser General Public
52 # License for more details.
53
54 # You should have received a copy of the GNU Lesser General Public License
55 # along with this library; if not, write to the Free Software Foundation,
56 # Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA.
57
58 # Contact information: Zmanda Inc., 465 S Mathlida Ave, Suite 300
59 # Sunnyvale, CA 94086, USA, or: http://www.zmanda.com
60
61 # SYNOPSIS:
62 #
63 # Automake magic to handle the various tasks of building scripts.  Scripts can
64 # be built down to extensionless executables (e.g., foo.pl -> foo), or to 
65 # files with the usual extension (foo-lib.sh.in -> foo.sh).
66 #
67 # Files which support it are syntax-checked when the user invokes 'make check'.
68 #
69 # All *target* filenames must be listed in SCRIPTS_SHELL, SCRIPTS_PERL, and 
70 # SCRIPTS_AWK to support 'make check', 'make dist', and 'make distclean'. No
71 # files which are not substituted by config.status should be included in
72 # SCRIPTS_PERL, SCRIPTS_SHELL, or SCRIPTS_AWK.  If non-generated files are listed
73 # for installation, then Automake will figure out that they should be distributed;
74 # otherwise, include them in EXTRA_DIST.
75 #
76 # USAGE:
77 #
78 #   include $(top_srcdir)/config/automake/vars.am
79 #   include $(top_srcdir)/config/automake/scripts.am
80 #   ...
81 #   SCRIPTS_PERL = fooscript barscript perl-lib.pl perlmod.pm
82 #   SCRIPTS_SHELL = shell1 shell2 sh-lib.sh
83 #   SCRIPTS_AWK = talk balk chalk awk-lib.awk
84 #   sbin_SCRIPTS = not-subbed
85 #   EXTRA_DIST = util-script.pl
86 #
87 # with the corresponding files in the repository:
88 #
89 #   fooscript.pl barscript.pl perl-lib.pl.in perlmod.pm.in
90 #   shell1.sh shell2.sh sh-lib.sh.in
91 #   talk.awk balk.awk chalk.awk awk-lib.awk.in
92 #   not-subbed util-script.pl
93 #
94 # by default, all shell and perl scripts are syntax checked.  If this is
95 # a problem (for example, perl scripts depending on Amanda extension 
96 # modules), then assign to CHECK_{PERL,SHELL} the list of files you wish
97 # to be checked (which can be empty).
98 #
99 # To add extra flags to the perl checks (e.g., to add new -I flags), set
100 # CHECK_PERL_FLAGS.
101
102 # Implementation note:
103 #
104 # This file uses config.status to substitute @foo@ in those scripts while
105 # converting them. It also adds the executable bits (a+x) to extensionless
106 # files.  The substitution works even though the files are not listed in 
107 # configure.in
108
109 # vim:ft=automake
110 #
111 # Adjust post-install permissions settings.  This rule works off two
112 # specially-formatted variables, INSTALLPERMS_exec and INSTALLPERMS_data. 
113 # Each is a whitespace-separated list of commands, all of which are either
114 # a variable assignment or a filename.  Three variables are available:
115 #
116 #  - dest= sets the destination directory to e.g., $(sbindir)
117 #  - chown= controls changes in ownership; value is first argument to chown
118 #  - chmod= controls changes in permissions; value is first argument to chmod
119 #
120 # As a special case, chown=amanda is taken as equivalent to 
121 # chown=$(BINARY_OWNER):$(SETUID_GROUP), which may otherwise have problems with
122 # whitespace in the user/group names.
123
124 # when a filename is seen, the currently active variables are applied.
125 #
126 # Note that scripts are data, not executables!
127 #
128 # EXAMPLE
129 #
130 # sbin_PROGRAMS = foo bar bing
131 # libexec_PROGRAMS = pro gram
132 # sbin_SCRIPTS = sk ript
133 # INSTALLPERMS_exec = \
134 #       dest=$(sbindir) chown=amanda chmod= \
135 #               foo bar \
136 #       chmod=07450 \
137 #               bing
138 #       dest=$(libexecdir) chmod= \
139 #               $(libexec_PROGRAMS)
140 # INSTALLPERMS_data = \
141 #       dest=$(sbindir) chown=amanda chmod= \
142 #               $(sbin_SCRIPTS)
143 #
144 # This whole operation is not required when making builds for packaging,
145 # and can be disabled with --disable-installperms, via the WANT_INSTALLPERMS
146 # AM_CONDITIONAL.  When disabled, the file 'installperms.sh' in the top-level
147 # build directory is populated with a format suitable for shell interpretation,
148 # with lines like this:
149 #   installperm "amanda:disk" "04750" "/usr/local/sbin/bing"
150 # the arguments being, respectively, owner:group, mode, and filename.  There will
151 # be exactly one line for each file which has specific permissions.  The intention
152 # is that this file be used by packaging scripts to set correct permissions at install
153 # time.  Note that files which have no special permissions requirements do not appear 
154 # in this file at all, due to limitations of Automake.
155
156 # vim:ft=automake
157
158
159
160
161
162 VPATH = @srcdir@
163 pkgdatadir = $(datadir)/@PACKAGE@
164 pkgincludedir = $(includedir)/@PACKAGE@
165 pkglibdir = $(libdir)/@PACKAGE@
166 pkglibexecdir = $(libexecdir)/@PACKAGE@
167 am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd
168 install_sh_DATA = $(install_sh) -c -m 644
169 install_sh_PROGRAM = $(install_sh) -c
170 install_sh_SCRIPT = $(install_sh) -c
171 INSTALL_HEADER = $(INSTALL_DATA)
172 transform = $(program_transform_name)
173 NORMAL_INSTALL = :
174 PRE_INSTALL = :
175 POST_INSTALL = :
176 NORMAL_UNINSTALL = :
177 PRE_UNINSTALL = :
178 POST_UNINSTALL = :
179 build_triplet = @build@
180 host_triplet = @host@
181 target_triplet = @target@
182 DIST_COMMON = $(noinst_HEADERS) $(srcdir)/Makefile.am \
183         $(srcdir)/Makefile.in $(srcdir)/versuff.c.in \
184         $(top_srcdir)/config/automake/installperms.am \
185         $(top_srcdir)/config/automake/precompile.am \
186         $(top_srcdir)/config/automake/scripts.am \
187         $(top_srcdir)/config/automake/vars.am
188 @WANT_INSTALLPERMS_FALSE@am__append_1 = $(installperms_sh)
189 @WANT_AMFLOCK_POSIX_TRUE@am__append_2 = amflock-posix.c
190 @WANT_AMFLOCK_FLOCK_TRUE@am__append_3 = amflock-flock.c
191 @WANT_AMFLOCK_LOCKF_TRUE@am__append_4 = amflock-lockf.c
192 @WANT_AMFLOCK_LNLOCK_TRUE@am__append_5 = amflock-lnlock.c
193 @WANT_RSH_SECURITY_TRUE@am__append_6 = rsh-security.c
194 @WANT_SSH_SECURITY_TRUE@am__append_7 = ssh-security.c
195 @WANT_BSD_SECURITY_TRUE@am__append_8 = bsd-security.c
196 @WANT_BSDTCP_SECURITY_TRUE@am__append_9 = bsdtcp-security.c
197 @WANT_BSDUDP_SECURITY_TRUE@am__append_10 = bsdudp-security.c
198 @WANT_KRB4_SECURITY_TRUE@am__append_11 = krb4-security.c        
199 @WANT_KRB5_SECURITY_TRUE@am__append_12 = krb5-security.c
200 EXTRA_PROGRAMS = genversion$(EXEEXT) $(am__EXEEXT_1)
201 TESTS = amflock-test$(EXEEXT) event-test$(EXEEXT) \
202         semaphore-test$(EXEEXT) queueing-test$(EXEEXT) \
203         quoting-test$(EXEEXT)
204 noinst_PROGRAMS = $(am__EXEEXT_2)
205 subdir = common-src
206 ACLOCAL_M4 = $(top_srcdir)/aclocal.m4
207 am__aclocal_m4_deps =  \
208         $(top_srcdir)/config/macro-archive/ac_define_dir.m4 \
209         $(top_srcdir)/config/macro-archive/ac_perl_module_version.m4 \
210         $(top_srcdir)/config/macro-archive/ac_prog_perl_version.m4 \
211         $(top_srcdir)/config/macro-archive/ac_prog_swig.m4 \
212         $(top_srcdir)/config/macro-archive/ax_compare_version.m4 \
213         $(top_srcdir)/config/macro-archive/docbook-dtd.m4 \
214         $(top_srcdir)/config/macro-archive/docbook-xslt-min.m4 \
215         $(top_srcdir)/config/macro-archive/docbook-xslt.m4 \
216         $(top_srcdir)/config/macro-archive/xsltproc.m4 \
217         $(top_srcdir)/config/amanda/amplot.m4 \
218         $(top_srcdir)/config/amanda/bsd-security.m4 \
219         $(top_srcdir)/config/amanda/bsdtcp-security.m4 \
220         $(top_srcdir)/config/amanda/bsdudp-security.m4 \
221         $(top_srcdir)/config/amanda/changer.m4 \
222         $(top_srcdir)/config/amanda/components.m4 \
223         $(top_srcdir)/config/amanda/compress.m4 \
224         $(top_srcdir)/config/amanda/config.m4 \
225         $(top_srcdir)/config/amanda/debugging.m4 \
226         $(top_srcdir)/config/amanda/defaults.m4 \
227         $(top_srcdir)/config/amanda/devprefix.m4 \
228         $(top_srcdir)/config/amanda/dirs.m4 \
229         $(top_srcdir)/config/amanda/documentation.m4 \
230         $(top_srcdir)/config/amanda/dumpers.m4 \
231         $(top_srcdir)/config/amanda/flags.m4 \
232         $(top_srcdir)/config/amanda/flock.m4 \
233         $(top_srcdir)/config/amanda/funcs.m4 \
234         $(top_srcdir)/config/amanda/getfsent.m4 \
235         $(top_srcdir)/config/amanda/i18n.m4 \
236         $(top_srcdir)/config/amanda/ipv6.m4 \
237         $(top_srcdir)/config/amanda/krb4-security.m4 \
238         $(top_srcdir)/config/amanda/krb5-security.m4 \
239         $(top_srcdir)/config/amanda/lfs.m4 \
240         $(top_srcdir)/config/amanda/libs.m4 \
241         $(top_srcdir)/config/amanda/net.m4 \
242         $(top_srcdir)/config/amanda/progs.m4 \
243         $(top_srcdir)/config/amanda/ps.m4 \
244         $(top_srcdir)/config/amanda/readdir.m4 \
245         $(top_srcdir)/config/amanda/readline.m4 \
246         $(top_srcdir)/config/amanda/rsh-security.m4 \
247         $(top_srcdir)/config/amanda/s3-device.m4 \
248         $(top_srcdir)/config/amanda/shmem.m4 \
249         $(top_srcdir)/config/amanda/socklen_t_equiv.m4 \
250         $(top_srcdir)/config/amanda/ssh-security.m4 \
251         $(top_srcdir)/config/amanda/summary.m4 \
252         $(top_srcdir)/config/amanda/swig.m4 \
253         $(top_srcdir)/config/amanda/syshacks.m4 \
254         $(top_srcdir)/config/amanda/tape.m4 \
255         $(top_srcdir)/config/amanda/types.m4 \
256         $(top_srcdir)/config/amanda/userid.m4 \
257         $(top_srcdir)/config/amanda/version.m4 \
258         $(top_srcdir)/config/gnulib/alloca.m4 \
259         $(top_srcdir)/config/gnulib/arpa_inet_h.m4 \
260         $(top_srcdir)/config/gnulib/base64.m4 \
261         $(top_srcdir)/config/gnulib/eoverflow.m4 \
262         $(top_srcdir)/config/gnulib/extensions.m4 \
263         $(top_srcdir)/config/gnulib/float_h.m4 \
264         $(top_srcdir)/config/gnulib/fsusage.m4 \
265         $(top_srcdir)/config/gnulib/getaddrinfo.m4 \
266         $(top_srcdir)/config/gnulib/getopt.m4 \
267         $(top_srcdir)/config/gnulib/gettimeofday.m4 \
268         $(top_srcdir)/config/gnulib/gnulib-common.m4 \
269         $(top_srcdir)/config/gnulib/gnulib-comp.m4 \
270         $(top_srcdir)/config/gnulib/include_next.m4 \
271         $(top_srcdir)/config/gnulib/inet_ntop.m4 \
272         $(top_srcdir)/config/gnulib/intmax_t.m4 \
273         $(top_srcdir)/config/gnulib/lock.m4 \
274         $(top_srcdir)/config/gnulib/longlong.m4 \
275         $(top_srcdir)/config/gnulib/malloc.m4 \
276         $(top_srcdir)/config/gnulib/mkdtemp.m4 \
277         $(top_srcdir)/config/gnulib/netinet_in_h.m4 \
278         $(top_srcdir)/config/gnulib/onceonly_2_57.m4 \
279         $(top_srcdir)/config/gnulib/physmem.m4 \
280         $(top_srcdir)/config/gnulib/safe-read.m4 \
281         $(top_srcdir)/config/gnulib/safe-write.m4 \
282         $(top_srcdir)/config/gnulib/snprintf.m4 \
283         $(top_srcdir)/config/gnulib/socklen.m4 \
284         $(top_srcdir)/config/gnulib/sockpfaf.m4 \
285         $(top_srcdir)/config/gnulib/ssize_t.m4 \
286         $(top_srcdir)/config/gnulib/stdbool.m4 \
287         $(top_srcdir)/config/gnulib/stdint.m4 \
288         $(top_srcdir)/config/gnulib/stdio_h.m4 \
289         $(top_srcdir)/config/gnulib/stdlib_h.m4 \
290         $(top_srcdir)/config/gnulib/strdup.m4 \
291         $(top_srcdir)/config/gnulib/string_h.m4 \
292         $(top_srcdir)/config/gnulib/sys_socket_h.m4 \
293         $(top_srcdir)/config/gnulib/sys_stat_h.m4 \
294         $(top_srcdir)/config/gnulib/sys_time_h.m4 \
295         $(top_srcdir)/config/gnulib/tempname.m4 \
296         $(top_srcdir)/config/gnulib/unistd_h.m4 \
297         $(top_srcdir)/config/gnulib/vasnprintf.m4 \
298         $(top_srcdir)/config/gnulib/visibility.m4 \
299         $(top_srcdir)/config/gnulib/wchar.m4 \
300         $(top_srcdir)/config/gettext-macros/gettext.m4 \
301         $(top_srcdir)/config/gettext-macros/iconv.m4 \
302         $(top_srcdir)/config/gettext-macros/inttypes_h.m4 \
303         $(top_srcdir)/config/gettext-macros/lib-ld.m4 \
304         $(top_srcdir)/config/gettext-macros/lib-link.m4 \
305         $(top_srcdir)/config/gettext-macros/lib-prefix.m4 \
306         $(top_srcdir)/config/gettext-macros/nls.m4 \
307         $(top_srcdir)/config/gettext-macros/po.m4 \
308         $(top_srcdir)/config/gettext-macros/progtest.m4 \
309         $(top_srcdir)/config/gettext-macros/size_max.m4 \
310         $(top_srcdir)/config/gettext-macros/stdint_h.m4 \
311         $(top_srcdir)/config/gettext-macros/wchar_t.m4 \
312         $(top_srcdir)/config/gettext-macros/wint_t.m4 \
313         $(top_srcdir)/config/gettext-macros/xsize.m4 \
314         $(top_srcdir)/config/libtool.m4 $(top_srcdir)/configure.in
315 am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \
316         $(ACLOCAL_M4)
317 mkinstalldirs = $(SHELL) $(top_srcdir)/config/mkinstalldirs
318 CONFIG_HEADER = $(top_builddir)/config/config.h
319 CONFIG_CLEAN_FILES = versuff.c
320 CONFIG_CLEAN_VPATH_FILES =
321 am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`;
322 am__vpath_adj = case $$p in \
323     $(srcdir)/*) f=`echo "$$p" | sed "s|^$$srcdirstrip/||"`;; \
324     *) f=$$p;; \
325   esac;
326 am__strip_dir = f=`echo $$p | sed -e 's|^.*/||'`;
327 am__install_max = 40
328 am__nobase_strip_setup = \
329   srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*|]/\\\\&/g'`
330 am__nobase_strip = \
331   for p in $$list; do echo "$$p"; done | sed -e "s|$$srcdirstrip/||"
332 am__nobase_list = $(am__nobase_strip_setup); \
333   for p in $$list; do echo "$$p $$p"; done | \
334   sed "s| $$srcdirstrip/| |;"' / .*\//!s/ .*/ ./; s,\( .*\)/[^/]*$$,\1,' | \
335   $(AWK) 'BEGIN { files["."] = "" } { files[$$2] = files[$$2] " " $$1; \
336     if (++n[$$2] == $(am__install_max)) \
337       { print $$2, files[$$2]; n[$$2] = 0; files[$$2] = "" } } \
338     END { for (dir in files) print dir, files[dir] }'
339 am__base_list = \
340   sed '$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;s/\n/ /g' | \
341   sed '$$!N;$$!N;$$!N;$$!N;s/\n/ /g'
342 am__installdirs = "$(DESTDIR)$(amlibdir)" "$(DESTDIR)$(amlibexecdir)" \
343         "$(DESTDIR)$(sbindir)" "$(DESTDIR)$(amlibexecdir)"
344 LTLIBRARIES = $(amlib_LTLIBRARIES) $(noinst_LTLIBRARIES)
345 libamanda_la_DEPENDENCIES = ../gnulib/libgnu.la
346 am__libamanda_la_SOURCES_DIST = alloc.c amfeatures.c amflock.c amxml.c \
347         clock.c columnar.c conffile.c debug.c dgram.c event.c file.c \
348         fileheader.c glib-util.c match.c packet.c pipespawn.c \
349         protocol.c queueing.c semaphore.c security.c security-util.c \
350         simpleprng.c sl.c sockaddr-util.c stream.c tapelist.c \
351         timestamp.c util.c versuff.c amflock-posix.c amflock-flock.c \
352         amflock-lockf.c amflock-lnlock.c rsh-security.c ssh-security.c \
353         bsd-security.c bsdtcp-security.c bsdudp-security.c \
354         krb4-security.c krb5-security.c local-security.c
355 @WANT_AMFLOCK_POSIX_TRUE@am__objects_1 = amflock-posix.lo
356 @WANT_AMFLOCK_FLOCK_TRUE@am__objects_2 = amflock-flock.lo
357 @WANT_AMFLOCK_LOCKF_TRUE@am__objects_3 = amflock-lockf.lo
358 @WANT_AMFLOCK_LNLOCK_TRUE@am__objects_4 = amflock-lnlock.lo
359 @WANT_RSH_SECURITY_TRUE@am__objects_5 = rsh-security.lo
360 @WANT_SSH_SECURITY_TRUE@am__objects_6 = ssh-security.lo
361 @WANT_BSD_SECURITY_TRUE@am__objects_7 = bsd-security.lo
362 @WANT_BSDTCP_SECURITY_TRUE@am__objects_8 = bsdtcp-security.lo
363 @WANT_BSDUDP_SECURITY_TRUE@am__objects_9 = bsdudp-security.lo
364 @WANT_KRB4_SECURITY_TRUE@am__objects_10 = krb4-security.lo
365 @WANT_KRB5_SECURITY_TRUE@am__objects_11 = krb5-security.lo
366 am_libamanda_la_OBJECTS = alloc.lo amfeatures.lo amflock.lo amxml.lo \
367         clock.lo columnar.lo conffile.lo debug.lo dgram.lo event.lo \
368         file.lo fileheader.lo glib-util.lo match.lo packet.lo \
369         pipespawn.lo protocol.lo queueing.lo semaphore.lo security.lo \
370         security-util.lo simpleprng.lo sl.lo sockaddr-util.lo \
371         stream.lo tapelist.lo timestamp.lo util.lo versuff.lo \
372         $(am__objects_1) $(am__objects_2) $(am__objects_3) \
373         $(am__objects_4) $(am__objects_5) $(am__objects_6) \
374         $(am__objects_7) $(am__objects_8) $(am__objects_9) \
375         $(am__objects_10) $(am__objects_11) local-security.lo
376 nodist_libamanda_la_OBJECTS = version.lo
377 libamanda_la_OBJECTS = $(am_libamanda_la_OBJECTS) \
378         $(nodist_libamanda_la_OBJECTS)
379 libamanda_la_LINK = $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) \
380         $(LIBTOOLFLAGS) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \
381         $(libamanda_la_LDFLAGS) $(LDFLAGS) -o $@
382 libtestutils_la_LIBADD =
383 am_libtestutils_la_OBJECTS = testutils.lo
384 libtestutils_la_OBJECTS = $(am_libtestutils_la_OBJECTS)
385 am__EXEEXT_1 = file$(EXEEXT) bsdsecurity$(EXEEXT) amfeatures$(EXEEXT)
386 am__EXEEXT_2 = amflock-test$(EXEEXT) event-test$(EXEEXT) \
387         semaphore-test$(EXEEXT) queueing-test$(EXEEXT) \
388         quoting-test$(EXEEXT)
389 PROGRAMS = $(noinst_PROGRAMS)
390 am_amfeatures_OBJECTS = amfeatures.test.$(OBJEXT)
391 amfeatures_OBJECTS = $(am_amfeatures_OBJECTS)
392 amfeatures_DEPENDENCIES = $(libamanda_la_LIBADD) \
393         $(STANDARD_COMMON_STUFF)
394 am_amflock_test_OBJECTS = amflock-test.$(OBJEXT)
395 amflock_test_OBJECTS = $(am_amflock_test_OBJECTS)
396 amflock_test_DEPENDENCIES = libamanda.la libtestutils.la
397 am_bsdsecurity_OBJECTS = bsd-security.test.$(OBJEXT)
398 bsdsecurity_OBJECTS = $(am_bsdsecurity_OBJECTS)
399 bsdsecurity_DEPENDENCIES = alloc.lo clock.lo debug.lo dgram.lo \
400         event.lo file.lo packet.lo security.lo ssh-security.lo \
401         versuff.lo
402 am_event_test_OBJECTS = event-test.$(OBJEXT)
403 event_test_OBJECTS = $(am_event_test_OBJECTS)
404 event_test_DEPENDENCIES = libamanda.la libtestutils.la
405 am_file_OBJECTS = file.test.$(OBJEXT)
406 file_OBJECTS = $(am_file_OBJECTS)
407 file_DEPENDENCIES = $(libamanda_la_LIBADD) \
408         $(STANDARD_COMMON_STUFF_NOT_FILE)
409 am_genversion_OBJECTS = genversion.$(OBJEXT)
410 genversion_OBJECTS = $(am_genversion_OBJECTS)
411 genversion_DEPENDENCIES = $(libamanda_la_LIBADD) versuff.lo \
412         ../gnulib/libgnu.la
413 am_queueing_test_OBJECTS = queueing-test.$(OBJEXT)
414 queueing_test_OBJECTS = $(am_queueing_test_OBJECTS)
415 queueing_test_DEPENDENCIES = libamanda.la libtestutils.la
416 am_quoting_test_OBJECTS = quoting-test.$(OBJEXT)
417 quoting_test_OBJECTS = $(am_quoting_test_OBJECTS)
418 quoting_test_DEPENDENCIES = libamanda.la libtestutils.la
419 am_semaphore_test_OBJECTS = semaphore-test.$(OBJEXT)
420 semaphore_test_OBJECTS = $(am_semaphore_test_OBJECTS)
421 semaphore_test_DEPENDENCIES = libamanda.la libtestutils.la
422 SCRIPTS = $(amlibexec_SCRIPTS) $(sbin_SCRIPTS)
423 DEFAULT_INCLUDES = -I.@am__isrc@ -I$(top_builddir)/config
424 depcomp = $(SHELL) $(top_srcdir)/config/depcomp
425 am__depfiles_maybe = depfiles
426 am__mv = mv -f
427 COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \
428         $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS)
429 LTCOMPILE = $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) \
430         --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) \
431         $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS)
432 CCLD = $(CC)
433 LINK = $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) \
434         --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) $(AM_LDFLAGS) \
435         $(LDFLAGS) -o $@
436 SOURCES = $(libamanda_la_SOURCES) $(nodist_libamanda_la_SOURCES) \
437         $(libtestutils_la_SOURCES) $(amfeatures_SOURCES) \
438         $(amflock_test_SOURCES) $(bsdsecurity_SOURCES) \
439         $(event_test_SOURCES) $(file_SOURCES) $(genversion_SOURCES) \
440         $(queueing_test_SOURCES) $(quoting_test_SOURCES) \
441         $(semaphore_test_SOURCES)
442 DIST_SOURCES = $(am__libamanda_la_SOURCES_DIST) \
443         $(libtestutils_la_SOURCES) $(amfeatures_SOURCES) \
444         $(amflock_test_SOURCES) $(bsdsecurity_SOURCES) \
445         $(event_test_SOURCES) $(file_SOURCES) $(genversion_SOURCES) \
446         $(queueing_test_SOURCES) $(quoting_test_SOURCES) \
447         $(semaphore_test_SOURCES)
448 DATA = $(amlibexec_DATA)
449 HEADERS = $(noinst_HEADERS)
450 ETAGS = etags
451 CTAGS = ctags
452 am__tty_colors = \
453 red=; grn=; lgn=; blu=; std=
454 DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST)
455 ACLOCAL = @ACLOCAL@
456 AIX_BACKUP = @AIX_BACKUP@
457 ALLOCA = @ALLOCA@
458 ALLOCA_H = @ALLOCA_H@
459 AMANDA_DBGDIR = @AMANDA_DBGDIR@
460 AMANDA_DEBUG_DAYS = @AMANDA_DEBUG_DAYS@
461 AMANDA_STATIC_LDFLAGS = @AMANDA_STATIC_LDFLAGS@
462 AMANDA_TMPDIR = @AMANDA_TMPDIR@
463 AMANDA_WARNING_CFLAGS = @AMANDA_WARNING_CFLAGS@
464 AMLINT = @AMLINT@
465 AMLINTFLAGS = @AMLINTFLAGS@
466 AMPLOT_CAT_COMPRESS = @AMPLOT_CAT_COMPRESS@
467 AMPLOT_CAT_GZIP = @AMPLOT_CAT_GZIP@
468 AMPLOT_CAT_PACK = @AMPLOT_CAT_PACK@
469 AMPLOT_COMPRESS = @AMPLOT_COMPRESS@
470 AMTAR = @AMTAR@
471 APPLICATION_DIR = @APPLICATION_DIR@
472 AR = @AR@
473 ARPA_INET_H = @ARPA_INET_H@
474 ASSERTIONS = @ASSERTIONS@
475 AUTOCONF = @AUTOCONF@
476 AUTOHEADER = @AUTOHEADER@
477 AUTOMAKE = @AUTOMAKE@
478 AWK = @AWK@
479 BASH = @BASH@
480 BINARY_OWNER = @BINARY_OWNER@
481 BITSIZEOF_PTRDIFF_T = @BITSIZEOF_PTRDIFF_T@
482 BITSIZEOF_SIG_ATOMIC_T = @BITSIZEOF_SIG_ATOMIC_T@
483 BITSIZEOF_SIZE_T = @BITSIZEOF_SIZE_T@
484 BITSIZEOF_WCHAR_T = @BITSIZEOF_WCHAR_T@
485 BITSIZEOF_WINT_T = @BITSIZEOF_WINT_T@
486 BSDTCP_SECURITY = @BSDTCP_SECURITY@
487 BSDUDP_SECURITY = @BSDUDP_SECURITY@
488 BSD_SECURITY = @BSD_SECURITY@
489 CAT = @CAT@
490 CC = @CC@
491 CCDEPMODE = @CCDEPMODE@
492 CFLAGS = @CFLAGS@
493 CFLAG_VISIBILITY = @CFLAG_VISIBILITY@
494 CHECK_USERID = @CHECK_USERID@
495 CHIO = @CHIO@
496 CHS = @CHS@
497 CLIENT_HOST_INSTANCE = @CLIENT_HOST_INSTANCE@
498 CLIENT_HOST_KEY_FILE = @CLIENT_HOST_KEY_FILE@
499 CLIENT_HOST_PRINCIPAL = @CLIENT_HOST_PRINCIPAL@
500 CLIENT_LOGIN = @CLIENT_LOGIN@
501 CLIENT_SCRIPTS_OPT = @CLIENT_SCRIPTS_OPT@
502 COMPRESS = @COMPRESS@
503 COMPRESS_BEST_OPT = @COMPRESS_BEST_OPT@
504 COMPRESS_FAST_OPT = @COMPRESS_FAST_OPT@
505 COMPRESS_PATH = @COMPRESS_PATH@
506 COMPRESS_SUFFIX = @COMPRESS_SUFFIX@
507 CONFIG_CLOBBER_MY_CONFIG = @CONFIG_CLOBBER_MY_CONFIG@
508 CONFIG_DIR = @CONFIG_DIR@
509 CPP = @CPP@
510 CPPFLAGS = @CPPFLAGS@
511 CURL_CONFIG = @CURL_CONFIG@
512 CXX = @CXX@
513 CXXCPP = @CXXCPP@
514 CXXDEPMODE = @CXXDEPMODE@
515 CXXFLAGS = @CXXFLAGS@
516 CYGPATH_W = @CYGPATH_W@
517 DD = @DD@
518 DEFAULT_AMANDATES_FILE = @DEFAULT_AMANDATES_FILE@
519 DEFAULT_CHANGER_DEVICE = @DEFAULT_CHANGER_DEVICE@
520 DEFAULT_CONFIG = @DEFAULT_CONFIG@
521 DEFAULT_MAILER = @DEFAULT_MAILER@
522 DEFAULT_SERVER = @DEFAULT_SERVER@
523 DEFAULT_TAPE_DEVICE = @DEFAULT_TAPE_DEVICE@
524 DEFAULT_TAPE_SERVER = @DEFAULT_TAPE_SERVER@
525 DEFS = @DEFS@
526 DEPDIR = @DEPDIR@
527 DOC_BUILD_DATE = @DOC_BUILD_DATE@
528 DUMP = @DUMP@
529 DUMP_RETURNS_1 = @DUMP_RETURNS_1@
530 ECHO = @ECHO@
531 ECHO_C = @ECHO_C@
532 ECHO_N = @ECHO_N@
533 ECHO_T = @ECHO_T@
534 EGREP = @EGREP@
535 EOVERFLOW = @EOVERFLOW@
536 EXAMPLE_TAPEDEV = @EXAMPLE_TAPEDEV@
537 EXEEXT = @EXEEXT@
538 F77 = @F77@
539 FFLAGS = @FFLAGS@
540 FLOAT_H = @FLOAT_H@
541 GETCONF = @GETCONF@
542 GETOPT_H = @GETOPT_H@
543 GETTEXT = @GETTEXT@
544 GLIB_CFLAGS = @GLIB_CFLAGS@
545 GLIB_GENMARSHAL = @GLIB_GENMARSHAL@
546 GLIB_LIBS = @GLIB_LIBS@
547 GLIB_MKENUMS = @GLIB_MKENUMS@
548 GMSGFMT = @GMSGFMT@
549 GMSGFMT_015 = @GMSGFMT_015@
550 GNULIB_CALLOC_POSIX = @GNULIB_CALLOC_POSIX@
551 GNULIB_CHOWN = @GNULIB_CHOWN@
552 GNULIB_DUP2 = @GNULIB_DUP2@
553 GNULIB_ENVIRON = @GNULIB_ENVIRON@
554 GNULIB_FCHDIR = @GNULIB_FCHDIR@
555 GNULIB_FFLUSH = @GNULIB_FFLUSH@
556 GNULIB_FOPEN = @GNULIB_FOPEN@
557 GNULIB_FPRINTF_POSIX = @GNULIB_FPRINTF_POSIX@
558 GNULIB_FREOPEN = @GNULIB_FREOPEN@
559 GNULIB_FSEEK = @GNULIB_FSEEK@
560 GNULIB_FSEEKO = @GNULIB_FSEEKO@
561 GNULIB_FTELL = @GNULIB_FTELL@
562 GNULIB_FTELLO = @GNULIB_FTELLO@
563 GNULIB_FTRUNCATE = @GNULIB_FTRUNCATE@
564 GNULIB_GETCWD = @GNULIB_GETCWD@
565 GNULIB_GETDELIM = @GNULIB_GETDELIM@
566 GNULIB_GETLINE = @GNULIB_GETLINE@
567 GNULIB_GETLOGIN_R = @GNULIB_GETLOGIN_R@
568 GNULIB_GETPAGESIZE = @GNULIB_GETPAGESIZE@
569 GNULIB_GETSUBOPT = @GNULIB_GETSUBOPT@
570 GNULIB_LCHOWN = @GNULIB_LCHOWN@
571 GNULIB_LSEEK = @GNULIB_LSEEK@
572 GNULIB_MALLOC_POSIX = @GNULIB_MALLOC_POSIX@
573 GNULIB_MBSCASECMP = @GNULIB_MBSCASECMP@
574 GNULIB_MBSCASESTR = @GNULIB_MBSCASESTR@
575 GNULIB_MBSCHR = @GNULIB_MBSCHR@
576 GNULIB_MBSCSPN = @GNULIB_MBSCSPN@
577 GNULIB_MBSLEN = @GNULIB_MBSLEN@
578 GNULIB_MBSNCASECMP = @GNULIB_MBSNCASECMP@
579 GNULIB_MBSNLEN = @GNULIB_MBSNLEN@
580 GNULIB_MBSPBRK = @GNULIB_MBSPBRK@
581 GNULIB_MBSPCASECMP = @GNULIB_MBSPCASECMP@
582 GNULIB_MBSRCHR = @GNULIB_MBSRCHR@
583 GNULIB_MBSSEP = @GNULIB_MBSSEP@
584 GNULIB_MBSSPN = @GNULIB_MBSSPN@
585 GNULIB_MBSSTR = @GNULIB_MBSSTR@
586 GNULIB_MBSTOK_R = @GNULIB_MBSTOK_R@
587 GNULIB_MEMMEM = @GNULIB_MEMMEM@
588 GNULIB_MEMPCPY = @GNULIB_MEMPCPY@
589 GNULIB_MEMRCHR = @GNULIB_MEMRCHR@
590 GNULIB_MKDTEMP = @GNULIB_MKDTEMP@
591 GNULIB_MKSTEMP = @GNULIB_MKSTEMP@
592 GNULIB_PRINTF_POSIX = @GNULIB_PRINTF_POSIX@
593 GNULIB_PUTENV = @GNULIB_PUTENV@
594 GNULIB_READLINK = @GNULIB_READLINK@
595 GNULIB_REALLOC_POSIX = @GNULIB_REALLOC_POSIX@
596 GNULIB_SETENV = @GNULIB_SETENV@
597 GNULIB_SLEEP = @GNULIB_SLEEP@
598 GNULIB_SNPRINTF = @GNULIB_SNPRINTF@
599 GNULIB_SPRINTF_POSIX = @GNULIB_SPRINTF_POSIX@
600 GNULIB_STPCPY = @GNULIB_STPCPY@
601 GNULIB_STPNCPY = @GNULIB_STPNCPY@
602 GNULIB_STRCASESTR = @GNULIB_STRCASESTR@
603 GNULIB_STRCHRNUL = @GNULIB_STRCHRNUL@
604 GNULIB_STRDUP = @GNULIB_STRDUP@
605 GNULIB_STRERROR = @GNULIB_STRERROR@
606 GNULIB_STRNDUP = @GNULIB_STRNDUP@
607 GNULIB_STRNLEN = @GNULIB_STRNLEN@
608 GNULIB_STRPBRK = @GNULIB_STRPBRK@
609 GNULIB_STRSEP = @GNULIB_STRSEP@
610 GNULIB_STRSIGNAL = @GNULIB_STRSIGNAL@
611 GNULIB_STRSTR = @GNULIB_STRSTR@
612 GNULIB_STRTOK_R = @GNULIB_STRTOK_R@
613 GNULIB_UNSETENV = @GNULIB_UNSETENV@
614 GNULIB_VASPRINTF = @GNULIB_VASPRINTF@
615 GNULIB_VFPRINTF_POSIX = @GNULIB_VFPRINTF_POSIX@
616 GNULIB_VPRINTF_POSIX = @GNULIB_VPRINTF_POSIX@
617 GNULIB_VSNPRINTF = @GNULIB_VSNPRINTF@
618 GNULIB_VSPRINTF_POSIX = @GNULIB_VSPRINTF_POSIX@
619 GNULIB_WCWIDTH = @GNULIB_WCWIDTH@
620 GNUPLOT = @GNUPLOT@
621 GNUTAR = @GNUTAR@
622 GNUTAR_LISTED_INCREMENTAL_DIR = @GNUTAR_LISTED_INCREMENTAL_DIR@
623 GOBJECT_QUERY = @GOBJECT_QUERY@
624 GREP = @GREP@
625 GZIP = @GZIP@
626 HAVE_CALLOC_POSIX = @HAVE_CALLOC_POSIX@
627 HAVE_DECL_ENVIRON = @HAVE_DECL_ENVIRON@
628 HAVE_DECL_GETDELIM = @HAVE_DECL_GETDELIM@
629 HAVE_DECL_GETLINE = @HAVE_DECL_GETLINE@
630 HAVE_DECL_GETLOGIN_R = @HAVE_DECL_GETLOGIN_R@
631 HAVE_DECL_MEMMEM = @HAVE_DECL_MEMMEM@
632 HAVE_DECL_MEMRCHR = @HAVE_DECL_MEMRCHR@
633 HAVE_DECL_MKDIR = @HAVE_DECL_MKDIR@
634 HAVE_DECL_SNPRINTF = @HAVE_DECL_SNPRINTF@
635 HAVE_DECL_STRDUP = @HAVE_DECL_STRDUP@
636 HAVE_DECL_STRERROR = @HAVE_DECL_STRERROR@
637 HAVE_DECL_STRNDUP = @HAVE_DECL_STRNDUP@
638 HAVE_DECL_STRNLEN = @HAVE_DECL_STRNLEN@
639 HAVE_DECL_STRSIGNAL = @HAVE_DECL_STRSIGNAL@
640 HAVE_DECL_STRTOK_R = @HAVE_DECL_STRTOK_R@
641 HAVE_DECL_VSNPRINTF = @HAVE_DECL_VSNPRINTF@
642 HAVE_DECL_WCWIDTH = @HAVE_DECL_WCWIDTH@
643 HAVE_DUP2 = @HAVE_DUP2@
644 HAVE_FSEEKO = @HAVE_FSEEKO@
645 HAVE_FTELLO = @HAVE_FTELLO@
646 HAVE_FTRUNCATE = @HAVE_FTRUNCATE@
647 HAVE_GETPAGESIZE = @HAVE_GETPAGESIZE@
648 HAVE_GETSUBOPT = @HAVE_GETSUBOPT@
649 HAVE_GZIP = @HAVE_GZIP@
650 HAVE_INTTYPES_H = @HAVE_INTTYPES_H@
651 HAVE_IO_H = @HAVE_IO_H@
652 HAVE_LONG_LONG_INT = @HAVE_LONG_LONG_INT@
653 HAVE_LSTAT = @HAVE_LSTAT@
654 HAVE_MALLOC_POSIX = @HAVE_MALLOC_POSIX@
655 HAVE_MEMPCPY = @HAVE_MEMPCPY@
656 HAVE_MKDTEMP = @HAVE_MKDTEMP@
657 HAVE_NETINET_IN_H = @HAVE_NETINET_IN_H@
658 HAVE_OS_H = @HAVE_OS_H@
659 HAVE_READLINK = @HAVE_READLINK@
660 HAVE_REALLOC_POSIX = @HAVE_REALLOC_POSIX@
661 HAVE_SETENV = @HAVE_SETENV@
662 HAVE_SIGNED_SIG_ATOMIC_T = @HAVE_SIGNED_SIG_ATOMIC_T@
663 HAVE_SIGNED_WCHAR_T = @HAVE_SIGNED_WCHAR_T@
664 HAVE_SIGNED_WINT_T = @HAVE_SIGNED_WINT_T@
665 HAVE_SLEEP = @HAVE_SLEEP@
666 HAVE_STDINT_H = @HAVE_STDINT_H@
667 HAVE_STPCPY = @HAVE_STPCPY@
668 HAVE_STPNCPY = @HAVE_STPNCPY@
669 HAVE_STRCASESTR = @HAVE_STRCASESTR@
670 HAVE_STRCHRNUL = @HAVE_STRCHRNUL@
671 HAVE_STRNDUP = @HAVE_STRNDUP@
672 HAVE_STRPBRK = @HAVE_STRPBRK@
673 HAVE_STRSEP = @HAVE_STRSEP@
674 HAVE_STRUCT_TIMEVAL = @HAVE_STRUCT_TIMEVAL@
675 HAVE_SYS_BITYPES_H = @HAVE_SYS_BITYPES_H@
676 HAVE_SYS_INTTYPES_H = @HAVE_SYS_INTTYPES_H@
677 HAVE_SYS_PARAM_H = @HAVE_SYS_PARAM_H@
678 HAVE_SYS_SOCKET_H = @HAVE_SYS_SOCKET_H@
679 HAVE_SYS_TIME_H = @HAVE_SYS_TIME_H@
680 HAVE_SYS_TYPES_H = @HAVE_SYS_TYPES_H@
681 HAVE_UNISTD_H = @HAVE_UNISTD_H@
682 HAVE_UNSETENV = @HAVE_UNSETENV@
683 HAVE_UNSIGNED_LONG_LONG_INT = @HAVE_UNSIGNED_LONG_LONG_INT@
684 HAVE_VASPRINTF = @HAVE_VASPRINTF@
685 HAVE_VISIBILITY = @HAVE_VISIBILITY@
686 HAVE_WCHAR_H = @HAVE_WCHAR_H@
687 HAVE_WINSOCK2_H = @HAVE_WINSOCK2_H@
688 HAVE_WS2TCPIP_H = @HAVE_WS2TCPIP_H@
689 HAVE__BOOL = @HAVE__BOOL@
690 INCLUDE_NEXT = @INCLUDE_NEXT@
691 INSTALL = @INSTALL@
692 INSTALL_DATA = @INSTALL_DATA@
693 INSTALL_PROGRAM = @INSTALL_PROGRAM@
694 INSTALL_SCRIPT = @INSTALL_SCRIPT@
695 INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@
696 INTLLIBS = @INTLLIBS@
697 INTL_MACOSX_LIBS = @INTL_MACOSX_LIBS@
698 KRB4_SECURITY = @KRB4_SECURITY@
699 KRB5_SECURITY = @KRB5_SECURITY@
700 LDFLAGS = @LDFLAGS@
701 LEX = @LEX@
702 LEXLIB = @LEXLIB@
703 LEX_OUTPUT_ROOT = @LEX_OUTPUT_ROOT@
704 LIBCURL = @LIBCURL@
705 LIBCURL_CPPFLAGS = @LIBCURL_CPPFLAGS@
706 LIBICONV = @LIBICONV@
707 LIBINTL = @LIBINTL@
708 LIBMULTITHREAD = @LIBMULTITHREAD@
709 LIBOBJS = @LIBOBJS@
710 LIBPTH = @LIBPTH@
711 LIBS = @LIBS@
712 LIBTHREAD = @LIBTHREAD@
713 LIBTOOL = @LIBTOOL@
714 LIBTOOL_DEPS = @LIBTOOL_DEPS@
715 LN_S = @LN_S@
716 LOCKING = @LOCKING@
717 LOW_TCPPORTRANGE = @LOW_TCPPORTRANGE@
718 LTLIBICONV = @LTLIBICONV@
719 LTLIBINTL = @LTLIBINTL@
720 LTLIBMULTITHREAD = @LTLIBMULTITHREAD@
721 LTLIBOBJS = @LTLIBOBJS@
722 LTLIBPTH = @LTLIBPTH@
723 LTLIBTHREAD = @LTLIBTHREAD@
724 MAILER = @MAILER@
725 MAKEINFO = @MAKEINFO@
726 MCUTIL = @MCUTIL@
727 MKDIR_P = @MKDIR_P@
728 MSGFMT = @MSGFMT@
729 MSGFMT_015 = @MSGFMT_015@
730 MSGMERGE = @MSGMERGE@
731 MT = @MT@
732 MTX = @MTX@
733 MT_FILE_FLAG = @MT_FILE_FLAG@
734 NETINET_IN_H = @NETINET_IN_H@
735 NEXT_FLOAT_H = @NEXT_FLOAT_H@
736 NEXT_NETINET_IN_H = @NEXT_NETINET_IN_H@
737 NEXT_STDINT_H = @NEXT_STDINT_H@
738 NEXT_STDIO_H = @NEXT_STDIO_H@
739 NEXT_STDLIB_H = @NEXT_STDLIB_H@
740 NEXT_STRING_H = @NEXT_STRING_H@
741 NEXT_SYS_SOCKET_H = @NEXT_SYS_SOCKET_H@
742 NEXT_SYS_STAT_H = @NEXT_SYS_STAT_H@
743 NEXT_SYS_TIME_H = @NEXT_SYS_TIME_H@
744 NEXT_UNISTD_H = @NEXT_UNISTD_H@
745 NEXT_WCHAR_H = @NEXT_WCHAR_H@
746 OBJEXT = @OBJEXT@
747 PACKAGE = @PACKAGE@
748 PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@
749 PACKAGE_NAME = @PACKAGE_NAME@
750 PACKAGE_STRING = @PACKAGE_STRING@
751 PACKAGE_TARNAME = @PACKAGE_TARNAME@
752 PACKAGE_VERSION = @PACKAGE_VERSION@
753 PATH_SEPARATOR = @PATH_SEPARATOR@
754 PCAT = @PCAT@
755 PERL = @PERL@
756 PERLEXTLIBS = @PERLEXTLIBS@
757 PERL_INC = @PERL_INC@
758 PKG_CONFIG = @PKG_CONFIG@
759 POSUB = @POSUB@
760 PRINT = @PRINT@
761 PS = @PS@
762 PS_ARGUMENT = @PS_ARGUMENT@
763 PTRDIFF_T_SUFFIX = @PTRDIFF_T_SUFFIX@
764 RANLIB = @RANLIB@
765 READLINE_LIBS = @READLINE_LIBS@
766 REPLACE_CHOWN = @REPLACE_CHOWN@
767 REPLACE_FCHDIR = @REPLACE_FCHDIR@
768 REPLACE_FFLUSH = @REPLACE_FFLUSH@
769 REPLACE_FOPEN = @REPLACE_FOPEN@
770 REPLACE_FPRINTF = @REPLACE_FPRINTF@
771 REPLACE_FREOPEN = @REPLACE_FREOPEN@
772 REPLACE_FSEEK = @REPLACE_FSEEK@
773 REPLACE_FSEEKO = @REPLACE_FSEEKO@
774 REPLACE_FTELL = @REPLACE_FTELL@
775 REPLACE_FTELLO = @REPLACE_FTELLO@
776 REPLACE_GETCWD = @REPLACE_GETCWD@
777 REPLACE_GETLINE = @REPLACE_GETLINE@
778 REPLACE_GETPAGESIZE = @REPLACE_GETPAGESIZE@
779 REPLACE_GETTIMEOFDAY = @REPLACE_GETTIMEOFDAY@
780 REPLACE_LCHOWN = @REPLACE_LCHOWN@
781 REPLACE_LSEEK = @REPLACE_LSEEK@
782 REPLACE_MEMMEM = @REPLACE_MEMMEM@
783 REPLACE_MKSTEMP = @REPLACE_MKSTEMP@
784 REPLACE_PRINTF = @REPLACE_PRINTF@
785 REPLACE_PUTENV = @REPLACE_PUTENV@
786 REPLACE_SNPRINTF = @REPLACE_SNPRINTF@
787 REPLACE_SPRINTF = @REPLACE_SPRINTF@
788 REPLACE_STRCASESTR = @REPLACE_STRCASESTR@
789 REPLACE_STRERROR = @REPLACE_STRERROR@
790 REPLACE_STRSIGNAL = @REPLACE_STRSIGNAL@
791 REPLACE_STRSTR = @REPLACE_STRSTR@
792 REPLACE_VASPRINTF = @REPLACE_VASPRINTF@
793 REPLACE_VFPRINTF = @REPLACE_VFPRINTF@
794 REPLACE_VPRINTF = @REPLACE_VPRINTF@
795 REPLACE_VSNPRINTF = @REPLACE_VSNPRINTF@
796 REPLACE_VSPRINTF = @REPLACE_VSPRINTF@
797 REPLACE_WCWIDTH = @REPLACE_WCWIDTH@
798 RESTORE = @RESTORE@
799 RSH_SECURITY = @RSH_SECURITY@
800 SAMBA_CLIENT = @SAMBA_CLIENT@
801 SERVER_HOST_INSTANCE = @SERVER_HOST_INSTANCE@
802 SERVER_HOST_KEY_FILE = @SERVER_HOST_KEY_FILE@
803 SERVER_HOST_PRINCIPAL = @SERVER_HOST_PRINCIPAL@
804 SERVICE_SUFFIX = @SERVICE_SUFFIX@
805 SETUID_GROUP = @SETUID_GROUP@
806 SET_MAKE = @SET_MAKE@
807 SHELL = @SHELL@
808 SIG_ATOMIC_T_SUFFIX = @SIG_ATOMIC_T_SUFFIX@
809 SIZE_T_SUFFIX = @SIZE_T_SUFFIX@
810 SNAPSHOT_STAMP = @SNAPSHOT_STAMP@
811 SORT = @SORT@
812 SSH = @SSH@
813 SSH_SECURITY = @SSH_SECURITY@
814 STDBOOL_H = @STDBOOL_H@
815 STDINT_H = @STDINT_H@
816 STRIP = @STRIP@
817 SVN = @SVN@
818 SWIG = @SWIG@
819 SWIG_LIB = @SWIG_LIB@
820 SYS_SOCKET_H = @SYS_SOCKET_H@
821 SYS_STAT_H = @SYS_STAT_H@
822 SYS_TIME_H = @SYS_TIME_H@
823 TCPPORTRANGE = @TCPPORTRANGE@
824 TICKET_LIFETIME = @TICKET_LIFETIME@
825 UDPPORTRANGE = @UDPPORTRANGE@
826 UNCOMPRESS_OPT = @UNCOMPRESS_OPT@
827 UNCOMPRESS_PATH = @UNCOMPRESS_PATH@
828 USE_AMANDAHOSTS = @USE_AMANDAHOSTS@
829 USE_NLS = @USE_NLS@
830 USE_RUNDUMP = @USE_RUNDUMP@
831 USE_VERSION_SUFFIXES = @USE_VERSION_SUFFIXES@
832 VDUMP = @VDUMP@
833 VERSION = @VERSION@
834 VERSION_COMMENT = @VERSION_COMMENT@
835 VERSION_MAJOR = @VERSION_MAJOR@
836 VERSION_MINOR = @VERSION_MINOR@
837 VERSION_PATCH = @VERSION_PATCH@
838 VERSION_SUFFIX = @VERSION_SUFFIX@
839 VOID_UNSETENV = @VOID_UNSETENV@
840 VRESTORE = @VRESTORE@
841 VXDUMP = @VXDUMP@
842 VXRESTORE = @VXRESTORE@
843 WCHAR_H = @WCHAR_H@
844 WCHAR_T_SUFFIX = @WCHAR_T_SUFFIX@
845 WINT_T_SUFFIX = @WINT_T_SUFFIX@
846 XFSDUMP = @XFSDUMP@
847 XFSRESTORE = @XFSRESTORE@
848 XGETTEXT = @XGETTEXT@
849 XGETTEXT_015 = @XGETTEXT_015@
850 XSLREL = @XSLREL@
851 XSLTPROC = @XSLTPROC@
852 XSLTPROC_FLAGS = @XSLTPROC_FLAGS@
853 YACC = @YACC@
854 YFLAGS = @YFLAGS@
855 _libcurl_config = @_libcurl_config@
856 abs_builddir = @abs_builddir@
857 abs_srcdir = @abs_srcdir@
858 abs_top_builddir = @abs_top_builddir@
859 abs_top_srcdir = @abs_top_srcdir@
860 ac_ct_CC = @ac_ct_CC@
861 ac_ct_CXX = @ac_ct_CXX@
862 ac_ct_F77 = @ac_ct_F77@
863 am__include = @am__include@
864 am__leading_dot = @am__leading_dot@
865 am__quote = @am__quote@
866 am__tar = @am__tar@
867 am__untar = @am__untar@
868 amdatadir = @amdatadir@
869 amincludedir = @amincludedir@
870 amlibdir = @amlibdir@
871 amlibexecdir = @amlibexecdir@
872 amperldir = @amperldir@
873 bindir = @bindir@
874 build = @build@
875 build_alias = @build_alias@
876 build_cpu = @build_cpu@
877 build_os = @build_os@
878 build_vendor = @build_vendor@
879 builddir = @builddir@
880 datadir = @datadir@
881 datarootdir = @datarootdir@
882 docdir = @docdir@
883 dvidir = @dvidir@
884 exec_prefix = @exec_prefix@
885 gl_LIBOBJS = @gl_LIBOBJS@
886 gl_LTLIBOBJS = @gl_LTLIBOBJS@
887 gltests_LIBOBJS = @gltests_LIBOBJS@
888 gltests_LTLIBOBJS = @gltests_LTLIBOBJS@
889 host = @host@
890 host_alias = @host_alias@
891 host_cpu = @host_cpu@
892 host_os = @host_os@
893 host_vendor = @host_vendor@
894 htmldir = @htmldir@
895 includedir = @includedir@
896 infodir = @infodir@
897 install_sh = @install_sh@
898 libdir = @libdir@
899 libexecdir = @libexecdir@
900 localedir = @localedir@
901 localstatedir = @localstatedir@
902 mandir = @mandir@
903 mkdir_p = @mkdir_p@
904 oldincludedir = @oldincludedir@
905 pdfdir = @pdfdir@
906 prefix = @prefix@
907 program_transform_name = @program_transform_name@
908 psdir = @psdir@
909 sbindir = @sbindir@
910 sharedstatedir = @sharedstatedir@
911 srcdir = @srcdir@
912 sysconfdir = @sysconfdir@
913 target = @target@
914 target_alias = @target_alias@
915 target_cpu = @target_cpu@
916 target_os = @target_os@
917 target_vendor = @target_vendor@
918 top_build_prefix = @top_build_prefix@
919 top_builddir = @top_builddir@
920 top_srcdir = @top_srcdir@
921 SUFFIXES = 
922 EXTRA_DIST = amanda-sh-lib.sh.in
923 BUILT_SOURCES = genversion.h version.c
924 MOSTLYCLEANFILES = 
925
926 # config.status leaves config.log files around
927 CLEANFILES = config.log *.test.c
928
929 # and we'll need to clean up our generated files for distclean
930 DISTCLEANFILES = $(SCRIPTS_SHELL) $(SCRIPTS_PERL) $(SCRIPTS_AWK) \
931         $(SCRIPTS_INCLUDE) $(am__append_1) version.c genversion \
932         genversion.h
933 MAINTAINERCLEANFILES = svn-info.h
934
935 # syntax-check shell scripts on 'make check'
936 CHECK_SHELL = $(SCRIPTS_SHELL)
937
938 # sed expression to strip leading directories from a filename; this converts e.g.,
939 # src/foo/bar.so to bar.so.
940 strip_leading_dirs = s|^.*/||
941 @WANT_INSTALLPERMS_FALSE@do_file = pa="$$dest"/`echo "$$cmd"|sed '$(strip_leading_dirs)'|sed '$(transform)'`; \
942 @WANT_INSTALLPERMS_FALSE@    echo "installperm \"$$chown\" \"$$chmod\" \"$$pa\"" >> "$(installperms_sh)"
943
944
945 # define a snippet of the scripts below to either perform a chown/chmod operation,
946 # or record that operation in the logfile.  On entry to the snippet, $$dest is the
947 # destination directory, $$cmd is the srcdir-relative pathname of the target file,
948 # $$chown is the ownership, and $$chmod is the permission pattern.
949 @WANT_INSTALLPERMS_TRUE@do_file = pa="$(DESTDIR)$$dest"/`echo "$$cmd"|sed '$(strip_leading_dirs)'|sed '$(transform)'`; \
950 @WANT_INSTALLPERMS_TRUE@    if test -n "$$chown"; then \
951 @WANT_INSTALLPERMS_TRUE@        echo chown "$$chown" "$$pa"; \
952 @WANT_INSTALLPERMS_TRUE@        chown "$$chown" "$$pa" || exit 1; \
953 @WANT_INSTALLPERMS_TRUE@    fi; \
954 @WANT_INSTALLPERMS_TRUE@    if test -n "$$chmod"; then \
955 @WANT_INSTALLPERMS_TRUE@        echo chmod "$$chmod" "$$pa"; \
956 @WANT_INSTALLPERMS_TRUE@        chmod "$$chmod" "$$pa" || exit 1; \
957 @WANT_INSTALLPERMS_TRUE@    fi 
958
959 @WANT_INSTALLPERMS_FALSE@installperms_sh = "$(top_builddir)/installperms.sh"
960 INCLUDES = -I$(top_srcdir)/gnulib   
961 AM_CFLAGS = $(AMANDA_WARNING_CFLAGS)
962 AM_LDFLAGS = $(AMANDA_STATIC_LDFLAGS)
963 amlib_LTLIBRARIES = libamanda.la
964 LINT = $(AMLINT)
965 LINTFLAGS = $(AMLINTFLAGS)
966 libamanda_la_SOURCES = alloc.c amfeatures.c amflock.c amxml.c clock.c \
967         columnar.c conffile.c debug.c dgram.c event.c file.c \
968         fileheader.c glib-util.c match.c packet.c pipespawn.c \
969         protocol.c queueing.c semaphore.c security.c security-util.c \
970         simpleprng.c sl.c sockaddr-util.c stream.c tapelist.c \
971         timestamp.c util.c versuff.c $(am__append_2) $(am__append_3) \
972         $(am__append_4) $(am__append_5) $(am__append_6) \
973         $(am__append_7) $(am__append_8) $(am__append_9) \
974         $(am__append_10) $(am__append_11) $(am__append_12) \
975         local-security.c
976 # version.c is generated; see below
977 nodist_libamanda_la_SOURCES = version.c
978 libamanda_la_LIBADD = \
979         ../gnulib/libgnu.la
980
981 libamanda_la_LDFLAGS = -release $(VERSION)
982 noinst_HEADERS = \
983         amanda.h                \
984         amfeatures.h            \
985         amxml.h                 \
986         arglist.h               \
987         clock.h                 \
988         columnar.h              \
989         amflock.h               \
990         conffile.h              \
991         debug.h                 \
992         dgram.h                 \
993         event.h                 \
994         file.h                  \
995         fileheader.h            \
996         glib-util.h             \
997         packet.h                \
998         pipespawn.h             \
999         protocol.h              \
1000         queue.h                 \
1001         queueing.h              \
1002         semaphore.h             \
1003         security.h              \
1004         security-util.h         \
1005         simpleprng.h            \
1006         sl.h                    \
1007         sockaddr-util.h         \
1008         stream.h                \
1009         tapelist.h              \
1010         timestamp.h             \
1011         util.h                  \
1012         version.h
1013
1014
1015 # Version-building steps:
1016 #
1017 # 1. configure builds svn-info.h, if svn info is available; this
1018 #    file is included in distribution tarballs
1019 # 2. Makefile creates genversion.h with build-time information
1020 # 3. Makefile builds genversion
1021 # 4. Makefile runs genversion to create version.c
1022 # 5. version.c is compiled into libamanda normally
1023 genversion_SOURCES = genversion.c svn-info.h
1024 genversion_LDADD = $(libamanda_la_LIBADD)       \
1025         versuff.lo                              \
1026         ../gnulib/libgnu.la
1027
1028
1029 # these are used for testing only:
1030 TEST_PROGS = file bsdsecurity amfeatures
1031
1032 # used for testing only
1033 STANDARD_COMMON_STUFF_NOT_FILE = \
1034         alloc.lo \
1035         clock.lo \
1036         debug.lo \
1037         util.lo \
1038         match.lo \
1039         sl.lo
1040
1041 STANDARD_COMMON_STUFF = \
1042         $(STANDARD_COMMON_STUFF_NOT_FILE) \
1043         file.lo
1044
1045 file_SOURCES = file.test.c
1046 file_LDADD = $(libamanda_la_LIBADD) $(STANDARD_COMMON_STUFF_NOT_FILE)
1047 bsdsecurity_SOURCES = bsd-security.test.c
1048 bsdsecurity_LDADD = $(libamanda_a_LIBADD) \
1049                     alloc.lo \
1050                     clock.lo \
1051                     debug.lo \
1052                     dgram.lo \
1053                     event.lo \
1054                     file.lo \
1055                     packet.lo \
1056                     security.lo \
1057                     ssh-security.lo \
1058                     versuff.lo
1059
1060 amfeatures_SOURCES = amfeatures.test.c
1061 amfeatures_LDADD = $(libamanda_la_LIBADD) $(STANDARD_COMMON_STUFF)
1062
1063 # libtestutils.la
1064 #
1065 # Convenience library (never installed) for 'make check'-based tests.
1066 noinst_LTLIBRARIES = libtestutils.la
1067 libtestutils_la_SOURCES = \
1068         testutils.c \
1069         testutils.h
1070
1071 amflock_test_SOURCES = amflock-test.c
1072 amflock_test_LDADD = libamanda.la libtestutils.la
1073 event_test_SOURCES = event-test.c
1074 event_test_LDADD = libamanda.la libtestutils.la
1075 semaphore_test_SOURCES = semaphore-test.c
1076 semaphore_test_LDADD = libamanda.la libtestutils.la
1077 queueing_test_SOURCES = queueing-test.c
1078 queueing_test_LDADD = libamanda.la libtestutils.la
1079 quoting_test_SOURCES = quoting-test.c
1080 quoting_test_LDADD = libamanda.la libtestutils.la
1081
1082 # scripts
1083
1084 # divide scripts up both by language, by destination directory, and by whether they
1085 # should get checked (stuff in *_SCRIPTS_* isn't syntax checked; this is necessary
1086 # for perl scripts that use Amanda::* packages)
1087 sbin_CHECK_PERL = \
1088             amgpgcrypt \
1089             amcryptsimple \
1090             amgetconf
1091
1092 sbin_SCRIPTS_PERL = \
1093             $(sbin_CHECK_PERL)
1094
1095 amlibexec_CHECK_PERL = 
1096 amlibexec_SCRIPTS_PERL = \
1097             $(amlibexec_CHECK_PERL)
1098
1099 sbin_SCRIPTS_SHELL = \
1100             amcrypt \
1101             amaespipe \
1102             amcrypt-ossl \
1103             amcrypt-ossl-asym
1104
1105 amlibexec_SCRIPTS_SHELL = 
1106 SCRIPTS_INCLUDE = \
1107             amanda-sh-lib.sh
1108
1109 CHECK_PERL = $(sbin_CHECK_PERL) $(amlibexec_CHECK_PERL)
1110 SCRIPTS_PERL = $(sbin_SCRIPTS_PERL) $(amlibexec_SCRIPTS_PERL)
1111 SCRIPTS_SHELL = $(sbin_SCRIPTS_SHELL) $(amlibexec_SCRIPTS_SHELL)
1112 amlibexec_DATA = $(SCRIPTS_INCLUDE)
1113 amlibexec_SCRIPTS = $(amlibexec_SCRIPTS_PERL) $(amlibexec_SCRIPTS_SHELL)
1114 sbin_SCRIPTS = $(sbin_SCRIPTS_PERL) $(sbin_SCRIPTS_SHELL)
1115
1116 # installation
1117 INSTALLPERMS_data = dest=$(sbindir) chown=amanda $(sbin_SCRIPTS) \
1118                     dest=$(amlibexecdir) chown=amanda $(amlibexec_SCRIPTS) $(amlibexec_DATA)
1119
1120 all: $(BUILT_SOURCES)
1121         $(MAKE) $(AM_MAKEFLAGS) all-am
1122
1123 .SUFFIXES:
1124 .SUFFIXES: .c .lo .o .obj
1125 $(srcdir)/Makefile.in:  $(srcdir)/Makefile.am $(top_srcdir)/config/automake/vars.am $(top_srcdir)/config/automake/scripts.am $(top_srcdir)/config/automake/installperms.am $(top_srcdir)/config/automake/precompile.am $(am__configure_deps)
1126         @for dep in $?; do \
1127           case '$(am__configure_deps)' in \
1128             *$$dep*) \
1129               ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \
1130                 && { if test -f $@; then exit 0; else break; fi; }; \
1131               exit 1;; \
1132           esac; \
1133         done; \
1134         echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu common-src/Makefile'; \
1135         $(am__cd) $(top_srcdir) && \
1136           $(AUTOMAKE) --gnu common-src/Makefile
1137 .PRECIOUS: Makefile
1138 Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
1139         @case '$?' in \
1140           *config.status*) \
1141             cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \
1142           *) \
1143             echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \
1144             cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \
1145         esac;
1146
1147 $(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES)
1148         cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
1149
1150 $(top_srcdir)/configure:  $(am__configure_deps)
1151         cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
1152 $(ACLOCAL_M4):  $(am__aclocal_m4_deps)
1153         cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
1154 $(am__aclocal_m4_deps):
1155 versuff.c: $(top_builddir)/config.status $(srcdir)/versuff.c.in
1156         cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@
1157 install-amlibLTLIBRARIES: $(amlib_LTLIBRARIES)
1158         @$(NORMAL_INSTALL)
1159         test -z "$(amlibdir)" || $(MKDIR_P) "$(DESTDIR)$(amlibdir)"
1160         @list='$(amlib_LTLIBRARIES)'; test -n "$(amlibdir)" || list=; \
1161         list2=; for p in $$list; do \
1162           if test -f $$p; then \
1163             list2="$$list2 $$p"; \
1164           else :; fi; \
1165         done; \
1166         test -z "$$list2" || { \
1167           echo " $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=install $(INSTALL) $(INSTALL_STRIP_FLAG) $$list2 '$(DESTDIR)$(amlibdir)'"; \
1168           $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=install $(INSTALL) $(INSTALL_STRIP_FLAG) $$list2 "$(DESTDIR)$(amlibdir)"; \
1169         }
1170
1171 uninstall-amlibLTLIBRARIES:
1172         @$(NORMAL_UNINSTALL)
1173         @list='$(amlib_LTLIBRARIES)'; test -n "$(amlibdir)" || list=; \
1174         for p in $$list; do \
1175           $(am__strip_dir) \
1176           echo " $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=uninstall rm -f '$(DESTDIR)$(amlibdir)/$$f'"; \
1177           $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=uninstall rm -f "$(DESTDIR)$(amlibdir)/$$f"; \
1178         done
1179
1180 clean-amlibLTLIBRARIES:
1181         -test -z "$(amlib_LTLIBRARIES)" || rm -f $(amlib_LTLIBRARIES)
1182         @list='$(amlib_LTLIBRARIES)'; for p in $$list; do \
1183           dir="`echo $$p | sed -e 's|/[^/]*$$||'`"; \
1184           test "$$dir" != "$$p" || dir=.; \
1185           echo "rm -f \"$${dir}/so_locations\""; \
1186           rm -f "$${dir}/so_locations"; \
1187         done
1188
1189 clean-noinstLTLIBRARIES:
1190         -test -z "$(noinst_LTLIBRARIES)" || rm -f $(noinst_LTLIBRARIES)
1191         @list='$(noinst_LTLIBRARIES)'; for p in $$list; do \
1192           dir="`echo $$p | sed -e 's|/[^/]*$$||'`"; \
1193           test "$$dir" != "$$p" || dir=.; \
1194           echo "rm -f \"$${dir}/so_locations\""; \
1195           rm -f "$${dir}/so_locations"; \
1196         done
1197 libamanda.la: $(libamanda_la_OBJECTS) $(libamanda_la_DEPENDENCIES) 
1198         $(libamanda_la_LINK) -rpath $(amlibdir) $(libamanda_la_OBJECTS) $(libamanda_la_LIBADD) $(LIBS)
1199 libtestutils.la: $(libtestutils_la_OBJECTS) $(libtestutils_la_DEPENDENCIES) 
1200         $(LINK)  $(libtestutils_la_OBJECTS) $(libtestutils_la_LIBADD) $(LIBS)
1201
1202 clean-noinstPROGRAMS:
1203         @list='$(noinst_PROGRAMS)'; test -n "$$list" || exit 0; \
1204         echo " rm -f" $$list; \
1205         rm -f $$list || exit $$?; \
1206         test -n "$(EXEEXT)" || exit 0; \
1207         list=`for p in $$list; do echo "$$p"; done | sed 's/$(EXEEXT)$$//'`; \
1208         echo " rm -f" $$list; \
1209         rm -f $$list
1210 amfeatures$(EXEEXT): $(amfeatures_OBJECTS) $(amfeatures_DEPENDENCIES) 
1211         @rm -f amfeatures$(EXEEXT)
1212         $(LINK) $(amfeatures_OBJECTS) $(amfeatures_LDADD) $(LIBS)
1213 amflock-test$(EXEEXT): $(amflock_test_OBJECTS) $(amflock_test_DEPENDENCIES) 
1214         @rm -f amflock-test$(EXEEXT)
1215         $(LINK) $(amflock_test_OBJECTS) $(amflock_test_LDADD) $(LIBS)
1216 bsdsecurity$(EXEEXT): $(bsdsecurity_OBJECTS) $(bsdsecurity_DEPENDENCIES) 
1217         @rm -f bsdsecurity$(EXEEXT)
1218         $(LINK) $(bsdsecurity_OBJECTS) $(bsdsecurity_LDADD) $(LIBS)
1219 event-test$(EXEEXT): $(event_test_OBJECTS) $(event_test_DEPENDENCIES) 
1220         @rm -f event-test$(EXEEXT)
1221         $(LINK) $(event_test_OBJECTS) $(event_test_LDADD) $(LIBS)
1222 file$(EXEEXT): $(file_OBJECTS) $(file_DEPENDENCIES) 
1223         @rm -f file$(EXEEXT)
1224         $(LINK) $(file_OBJECTS) $(file_LDADD) $(LIBS)
1225 genversion$(EXEEXT): $(genversion_OBJECTS) $(genversion_DEPENDENCIES) 
1226         @rm -f genversion$(EXEEXT)
1227         $(LINK) $(genversion_OBJECTS) $(genversion_LDADD) $(LIBS)
1228 queueing-test$(EXEEXT): $(queueing_test_OBJECTS) $(queueing_test_DEPENDENCIES) 
1229         @rm -f queueing-test$(EXEEXT)
1230         $(LINK) $(queueing_test_OBJECTS) $(queueing_test_LDADD) $(LIBS)
1231 quoting-test$(EXEEXT): $(quoting_test_OBJECTS) $(quoting_test_DEPENDENCIES) 
1232         @rm -f quoting-test$(EXEEXT)
1233         $(LINK) $(quoting_test_OBJECTS) $(quoting_test_LDADD) $(LIBS)
1234 semaphore-test$(EXEEXT): $(semaphore_test_OBJECTS) $(semaphore_test_DEPENDENCIES) 
1235         @rm -f semaphore-test$(EXEEXT)
1236         $(LINK) $(semaphore_test_OBJECTS) $(semaphore_test_LDADD) $(LIBS)
1237 install-amlibexecSCRIPTS: $(amlibexec_SCRIPTS)
1238         @$(NORMAL_INSTALL)
1239         test -z "$(amlibexecdir)" || $(MKDIR_P) "$(DESTDIR)$(amlibexecdir)"
1240         @list='$(amlibexec_SCRIPTS)'; test -n "$(amlibexecdir)" || list=; \
1241         for p in $$list; do \
1242           if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \
1243           if test -f "$$d$$p"; then echo "$$d$$p"; echo "$$p"; else :; fi; \
1244         done | \
1245         sed -e 'p;s,.*/,,;n' \
1246             -e 'h;s|.*|.|' \
1247             -e 'p;x;s,.*/,,;$(transform)' | sed 'N;N;N;s,\n, ,g' | \
1248         $(AWK) 'BEGIN { files["."] = ""; dirs["."] = 1; } \
1249           { d=$$3; if (dirs[d] != 1) { print "d", d; dirs[d] = 1 } \
1250             if ($$2 == $$4) { files[d] = files[d] " " $$1; \
1251               if (++n[d] == $(am__install_max)) { \
1252                 print "f", d, files[d]; n[d] = 0; files[d] = "" } } \
1253             else { print "f", d "/" $$4, $$1 } } \
1254           END { for (d in files) print "f", d, files[d] }' | \
1255         while read type dir files; do \
1256              if test "$$dir" = .; then dir=; else dir=/$$dir; fi; \
1257              test -z "$$files" || { \
1258                echo " $(INSTALL_SCRIPT) $$files '$(DESTDIR)$(amlibexecdir)$$dir'"; \
1259                $(INSTALL_SCRIPT) $$files "$(DESTDIR)$(amlibexecdir)$$dir" || exit $$?; \
1260              } \
1261         ; done
1262
1263 uninstall-amlibexecSCRIPTS:
1264         @$(NORMAL_UNINSTALL)
1265         @list='$(amlibexec_SCRIPTS)'; test -n "$(amlibexecdir)" || exit 0; \
1266         files=`for p in $$list; do echo "$$p"; done | \
1267                sed -e 's,.*/,,;$(transform)'`; \
1268         test -n "$$list" || exit 0; \
1269         echo " ( cd '$(DESTDIR)$(amlibexecdir)' && rm -f" $$files ")"; \
1270         cd "$(DESTDIR)$(amlibexecdir)" && rm -f $$files
1271 install-sbinSCRIPTS: $(sbin_SCRIPTS)
1272         @$(NORMAL_INSTALL)
1273         test -z "$(sbindir)" || $(MKDIR_P) "$(DESTDIR)$(sbindir)"
1274         @list='$(sbin_SCRIPTS)'; test -n "$(sbindir)" || list=; \
1275         for p in $$list; do \
1276           if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \
1277           if test -f "$$d$$p"; then echo "$$d$$p"; echo "$$p"; else :; fi; \
1278         done | \
1279         sed -e 'p;s,.*/,,;n' \
1280             -e 'h;s|.*|.|' \
1281             -e 'p;x;s,.*/,,;$(transform)' | sed 'N;N;N;s,\n, ,g' | \
1282         $(AWK) 'BEGIN { files["."] = ""; dirs["."] = 1; } \
1283           { d=$$3; if (dirs[d] != 1) { print "d", d; dirs[d] = 1 } \
1284             if ($$2 == $$4) { files[d] = files[d] " " $$1; \
1285               if (++n[d] == $(am__install_max)) { \
1286                 print "f", d, files[d]; n[d] = 0; files[d] = "" } } \
1287             else { print "f", d "/" $$4, $$1 } } \
1288           END { for (d in files) print "f", d, files[d] }' | \
1289         while read type dir files; do \
1290              if test "$$dir" = .; then dir=; else dir=/$$dir; fi; \
1291              test -z "$$files" || { \
1292                echo " $(INSTALL_SCRIPT) $$files '$(DESTDIR)$(sbindir)$$dir'"; \
1293                $(INSTALL_SCRIPT) $$files "$(DESTDIR)$(sbindir)$$dir" || exit $$?; \
1294              } \
1295         ; done
1296
1297 uninstall-sbinSCRIPTS:
1298         @$(NORMAL_UNINSTALL)
1299         @list='$(sbin_SCRIPTS)'; test -n "$(sbindir)" || exit 0; \
1300         files=`for p in $$list; do echo "$$p"; done | \
1301                sed -e 's,.*/,,;$(transform)'`; \
1302         test -n "$$list" || exit 0; \
1303         echo " ( cd '$(DESTDIR)$(sbindir)' && rm -f" $$files ")"; \
1304         cd "$(DESTDIR)$(sbindir)" && rm -f $$files
1305
1306 mostlyclean-compile:
1307         -rm -f *.$(OBJEXT)
1308
1309 distclean-compile:
1310         -rm -f *.tab.c
1311
1312 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/alloc.Plo@am__quote@
1313 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/amfeatures.Plo@am__quote@
1314 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/amfeatures.test.Po@am__quote@
1315 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/amflock-flock.Plo@am__quote@
1316 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/amflock-lnlock.Plo@am__quote@
1317 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/amflock-lockf.Plo@am__quote@
1318 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/amflock-posix.Plo@am__quote@
1319 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/amflock-test.Po@am__quote@
1320 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/amflock.Plo@am__quote@
1321 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/amxml.Plo@am__quote@
1322 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/bsd-security.Plo@am__quote@
1323 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/bsd-security.test.Po@am__quote@
1324 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/bsdtcp-security.Plo@am__quote@
1325 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/bsdudp-security.Plo@am__quote@
1326 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/clock.Plo@am__quote@
1327 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/columnar.Plo@am__quote@
1328 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/conffile.Plo@am__quote@
1329 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/debug.Plo@am__quote@
1330 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/dgram.Plo@am__quote@
1331 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/event-test.Po@am__quote@
1332 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/event.Plo@am__quote@
1333 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/file.Plo@am__quote@
1334 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/file.test.Po@am__quote@
1335 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/fileheader.Plo@am__quote@
1336 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/genversion.Po@am__quote@
1337 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/glib-util.Plo@am__quote@
1338 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/krb4-security.Plo@am__quote@
1339 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/krb5-security.Plo@am__quote@
1340 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/local-security.Plo@am__quote@
1341 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/match.Plo@am__quote@
1342 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/packet.Plo@am__quote@
1343 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/pipespawn.Plo@am__quote@
1344 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/protocol.Plo@am__quote@
1345 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/queueing-test.Po@am__quote@
1346 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/queueing.Plo@am__quote@
1347 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/quoting-test.Po@am__quote@
1348 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/rsh-security.Plo@am__quote@
1349 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/security-util.Plo@am__quote@
1350 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/security.Plo@am__quote@
1351 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/semaphore-test.Po@am__quote@
1352 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/semaphore.Plo@am__quote@
1353 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/simpleprng.Plo@am__quote@
1354 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/sl.Plo@am__quote@
1355 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/sockaddr-util.Plo@am__quote@
1356 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/ssh-security.Plo@am__quote@
1357 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/stream.Plo@am__quote@
1358 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/tapelist.Plo@am__quote@
1359 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/testutils.Plo@am__quote@
1360 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/timestamp.Plo@am__quote@
1361 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/util.Plo@am__quote@
1362 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/version.Plo@am__quote@
1363 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/versuff.Plo@am__quote@
1364
1365 .c.o:
1366 @am__fastdepCC_TRUE@    $(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $<
1367 @am__fastdepCC_TRUE@    $(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po
1368 @AMDEP_TRUE@@am__fastdepCC_FALSE@       source='$<' object='$@' libtool=no @AMDEPBACKSLASH@
1369 @AMDEP_TRUE@@am__fastdepCC_FALSE@       DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
1370 @am__fastdepCC_FALSE@   $(COMPILE) -c $<
1371
1372 .c.obj:
1373 @am__fastdepCC_TRUE@    $(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ `$(CYGPATH_W) '$<'`
1374 @am__fastdepCC_TRUE@    $(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po
1375 @AMDEP_TRUE@@am__fastdepCC_FALSE@       source='$<' object='$@' libtool=no @AMDEPBACKSLASH@
1376 @AMDEP_TRUE@@am__fastdepCC_FALSE@       DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
1377 @am__fastdepCC_FALSE@   $(COMPILE) -c `$(CYGPATH_W) '$<'`
1378
1379 .c.lo:
1380 @am__fastdepCC_TRUE@    $(LTCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $<
1381 @am__fastdepCC_TRUE@    $(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Plo
1382 @AMDEP_TRUE@@am__fastdepCC_FALSE@       source='$<' object='$@' libtool=yes @AMDEPBACKSLASH@
1383 @AMDEP_TRUE@@am__fastdepCC_FALSE@       DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
1384 @am__fastdepCC_FALSE@   $(LTCOMPILE) -c -o $@ $<
1385
1386 mostlyclean-libtool:
1387         -rm -f *.lo
1388
1389 clean-libtool:
1390         -rm -rf .libs _libs
1391 install-amlibexecDATA: $(amlibexec_DATA)
1392         @$(NORMAL_INSTALL)
1393         test -z "$(amlibexecdir)" || $(MKDIR_P) "$(DESTDIR)$(amlibexecdir)"
1394         @list='$(amlibexec_DATA)'; test -n "$(amlibexecdir)" || list=; \
1395         for p in $$list; do \
1396           if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \
1397           echo "$$d$$p"; \
1398         done | $(am__base_list) | \
1399         while read files; do \
1400           echo " $(INSTALL_DATA) $$files '$(DESTDIR)$(amlibexecdir)'"; \
1401           $(INSTALL_DATA) $$files "$(DESTDIR)$(amlibexecdir)" || exit $$?; \
1402         done
1403
1404 uninstall-amlibexecDATA:
1405         @$(NORMAL_UNINSTALL)
1406         @list='$(amlibexec_DATA)'; test -n "$(amlibexecdir)" || list=; \
1407         files=`for p in $$list; do echo $$p; done | sed -e 's|^.*/||'`; \
1408         test -n "$$files" || exit 0; \
1409         echo " ( cd '$(DESTDIR)$(amlibexecdir)' && rm -f" $$files ")"; \
1410         cd "$(DESTDIR)$(amlibexecdir)" && rm -f $$files
1411
1412 ID: $(HEADERS) $(SOURCES) $(LISP) $(TAGS_FILES)
1413         list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \
1414         unique=`for i in $$list; do \
1415             if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
1416           done | \
1417           $(AWK) '{ files[$$0] = 1; nonempty = 1; } \
1418               END { if (nonempty) { for (i in files) print i; }; }'`; \
1419         mkid -fID $$unique
1420 tags: TAGS
1421
1422 TAGS:  $(HEADERS) $(SOURCES)  $(TAGS_DEPENDENCIES) \
1423                 $(TAGS_FILES) $(LISP)
1424         set x; \
1425         here=`pwd`; \
1426         list='$(SOURCES) $(HEADERS)  $(LISP) $(TAGS_FILES)'; \
1427         unique=`for i in $$list; do \
1428             if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
1429           done | \
1430           $(AWK) '{ files[$$0] = 1; nonempty = 1; } \
1431               END { if (nonempty) { for (i in files) print i; }; }'`; \
1432         shift; \
1433         if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \
1434           test -n "$$unique" || unique=$$empty_fix; \
1435           if test $$# -gt 0; then \
1436             $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \
1437               "$$@" $$unique; \
1438           else \
1439             $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \
1440               $$unique; \
1441           fi; \
1442         fi
1443 ctags: CTAGS
1444 CTAGS:  $(HEADERS) $(SOURCES)  $(TAGS_DEPENDENCIES) \
1445                 $(TAGS_FILES) $(LISP)
1446         list='$(SOURCES) $(HEADERS)  $(LISP) $(TAGS_FILES)'; \
1447         unique=`for i in $$list; do \
1448             if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
1449           done | \
1450           $(AWK) '{ files[$$0] = 1; nonempty = 1; } \
1451               END { if (nonempty) { for (i in files) print i; }; }'`; \
1452         test -z "$(CTAGS_ARGS)$$unique" \
1453           || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \
1454              $$unique
1455
1456 GTAGS:
1457         here=`$(am__cd) $(top_builddir) && pwd` \
1458           && $(am__cd) $(top_srcdir) \
1459           && gtags -i $(GTAGS_ARGS) "$$here"
1460
1461 distclean-tags:
1462         -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags
1463
1464 check-TESTS: $(TESTS)
1465         @failed=0; all=0; xfail=0; xpass=0; skip=0; \
1466         srcdir=$(srcdir); export srcdir; \
1467         list=' $(TESTS) '; \
1468         $(am__tty_colors); \
1469         if test -n "$$list"; then \
1470           for tst in $$list; do \
1471             if test -f ./$$tst; then dir=./; \
1472             elif test -f $$tst; then dir=; \
1473             else dir="$(srcdir)/"; fi; \
1474             if $(TESTS_ENVIRONMENT) $${dir}$$tst; then \
1475               all=`expr $$all + 1`; \
1476               case " $(XFAIL_TESTS) " in \
1477               *[\ \     ]$$tst[\ \      ]*) \
1478                 xpass=`expr $$xpass + 1`; \
1479                 failed=`expr $$failed + 1`; \
1480                 col=$$red; res=XPASS; \
1481               ;; \
1482               *) \
1483                 col=$$grn; res=PASS; \
1484               ;; \
1485               esac; \
1486             elif test $$? -ne 77; then \
1487               all=`expr $$all + 1`; \
1488               case " $(XFAIL_TESTS) " in \
1489               *[\ \     ]$$tst[\ \      ]*) \
1490                 xfail=`expr $$xfail + 1`; \
1491                 col=$$lgn; res=XFAIL; \
1492               ;; \
1493               *) \
1494                 failed=`expr $$failed + 1`; \
1495                 col=$$red; res=FAIL; \
1496               ;; \
1497               esac; \
1498             else \
1499               skip=`expr $$skip + 1`; \
1500               col=$$blu; res=SKIP; \
1501             fi; \
1502             echo "$${col}$$res$${std}: $$tst"; \
1503           done; \
1504           if test "$$all" -eq 1; then \
1505             tests="test"; \
1506             All=""; \
1507           else \
1508             tests="tests"; \
1509             All="All "; \
1510           fi; \
1511           if test "$$failed" -eq 0; then \
1512             if test "$$xfail" -eq 0; then \
1513               banner="$$All$$all $$tests passed"; \
1514             else \
1515               if test "$$xfail" -eq 1; then failures=failure; else failures=failures; fi; \
1516               banner="$$All$$all $$tests behaved as expected ($$xfail expected $$failures)"; \
1517             fi; \
1518           else \
1519             if test "$$xpass" -eq 0; then \
1520               banner="$$failed of $$all $$tests failed"; \
1521             else \
1522               if test "$$xpass" -eq 1; then passes=pass; else passes=passes; fi; \
1523               banner="$$failed of $$all $$tests did not behave as expected ($$xpass unexpected $$passes)"; \
1524             fi; \
1525           fi; \
1526           dashes="$$banner"; \
1527           skipped=""; \
1528           if test "$$skip" -ne 0; then \
1529             if test "$$skip" -eq 1; then \
1530               skipped="($$skip test was not run)"; \
1531             else \
1532               skipped="($$skip tests were not run)"; \
1533             fi; \
1534             test `echo "$$skipped" | wc -c` -le `echo "$$banner" | wc -c` || \
1535               dashes="$$skipped"; \
1536           fi; \
1537           report=""; \
1538           if test "$$failed" -ne 0 && test -n "$(PACKAGE_BUGREPORT)"; then \
1539             report="Please report to $(PACKAGE_BUGREPORT)"; \
1540             test `echo "$$report" | wc -c` -le `echo "$$banner" | wc -c` || \
1541               dashes="$$report"; \
1542           fi; \
1543           dashes=`echo "$$dashes" | sed s/./=/g`; \
1544           if test "$$failed" -eq 0; then \
1545             echo "$$grn$$dashes"; \
1546           else \
1547             echo "$$red$$dashes"; \
1548           fi; \
1549           echo "$$banner"; \
1550           test -z "$$skipped" || echo "$$skipped"; \
1551           test -z "$$report" || echo "$$report"; \
1552           echo "$$dashes$$std"; \
1553           test "$$failed" -eq 0; \
1554         else :; fi
1555
1556 distdir: $(DISTFILES)
1557         @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
1558         topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
1559         list='$(DISTFILES)'; \
1560           dist_files=`for file in $$list; do echo $$file; done | \
1561           sed -e "s|^$$srcdirstrip/||;t" \
1562               -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \
1563         case $$dist_files in \
1564           */*) $(MKDIR_P) `echo "$$dist_files" | \
1565                            sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \
1566                            sort -u` ;; \
1567         esac; \
1568         for file in $$dist_files; do \
1569           if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \
1570           if test -d $$d/$$file; then \
1571             dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \
1572             if test -d "$(distdir)/$$file"; then \
1573               find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \
1574             fi; \
1575             if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \
1576               cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \
1577               find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \
1578             fi; \
1579             cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \
1580           else \
1581             test -f "$(distdir)/$$file" \
1582             || cp -p $$d/$$file "$(distdir)/$$file" \
1583             || exit 1; \
1584           fi; \
1585         done
1586         $(MAKE) $(AM_MAKEFLAGS) \
1587           top_distdir="$(top_distdir)" distdir="$(distdir)" \
1588           dist-hook
1589 check-am: all-am
1590         $(MAKE) $(AM_MAKEFLAGS) check-TESTS check-local
1591 check: $(BUILT_SOURCES)
1592         $(MAKE) $(AM_MAKEFLAGS) check-am
1593 all-am: Makefile $(LTLIBRARIES) $(PROGRAMS) $(SCRIPTS) $(DATA) \
1594                 $(HEADERS)
1595 installdirs:
1596         for dir in "$(DESTDIR)$(amlibdir)" "$(DESTDIR)$(amlibexecdir)" "$(DESTDIR)$(sbindir)" "$(DESTDIR)$(amlibexecdir)"; do \
1597           test -z "$$dir" || $(MKDIR_P) "$$dir"; \
1598         done
1599 install: $(BUILT_SOURCES)
1600         $(MAKE) $(AM_MAKEFLAGS) install-am
1601 install-exec: install-exec-am
1602 install-data: install-data-am
1603 uninstall: uninstall-am
1604
1605 install-am: all-am
1606         @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am
1607
1608 installcheck: installcheck-am
1609 install-strip:
1610         $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \
1611           install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \
1612           `test -z '$(STRIP)' || \
1613             echo "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'"` install
1614 mostlyclean-generic:
1615         -test -z "$(MOSTLYCLEANFILES)" || rm -f $(MOSTLYCLEANFILES)
1616
1617 clean-generic:
1618         -test -z "$(CLEANFILES)" || rm -f $(CLEANFILES)
1619
1620 distclean-generic:
1621         -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES)
1622         -test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES)
1623         -test -z "$(DISTCLEANFILES)" || rm -f $(DISTCLEANFILES)
1624
1625 maintainer-clean-generic:
1626         @echo "This command is intended for maintainers to use"
1627         @echo "it deletes files that may require special tools to rebuild."
1628         -test -z "$(BUILT_SOURCES)" || rm -f $(BUILT_SOURCES)
1629         -test -z "$(MAINTAINERCLEANFILES)" || rm -f $(MAINTAINERCLEANFILES)
1630 clean: clean-am
1631
1632 clean-am: clean-amlibLTLIBRARIES clean-generic clean-libtool \
1633         clean-noinstLTLIBRARIES clean-noinstPROGRAMS mostlyclean-am
1634
1635 distclean: distclean-am
1636         -rm -rf ./$(DEPDIR)
1637         -rm -f Makefile
1638 distclean-am: clean-am distclean-compile distclean-generic \
1639         distclean-local distclean-tags
1640
1641 dvi: dvi-am
1642
1643 dvi-am:
1644
1645 html: html-am
1646
1647 html-am:
1648
1649 info: info-am
1650
1651 info-am:
1652
1653 install-data-am: install-amlibLTLIBRARIES
1654         @$(NORMAL_INSTALL)
1655         $(MAKE) $(AM_MAKEFLAGS) install-data-hook
1656 install-dvi: install-dvi-am
1657
1658 install-dvi-am:
1659
1660 install-exec-am: install-amlibexecDATA install-amlibexecSCRIPTS \
1661         install-sbinSCRIPTS
1662         @$(NORMAL_INSTALL)
1663         $(MAKE) $(AM_MAKEFLAGS) install-exec-hook
1664 install-html: install-html-am
1665
1666 install-html-am:
1667
1668 install-info: install-info-am
1669
1670 install-info-am:
1671
1672 install-man:
1673
1674 install-pdf: install-pdf-am
1675
1676 install-pdf-am:
1677
1678 install-ps: install-ps-am
1679
1680 install-ps-am:
1681
1682 installcheck-am: installcheck-local
1683
1684 maintainer-clean: maintainer-clean-am
1685         -rm -rf ./$(DEPDIR)
1686         -rm -f Makefile
1687 maintainer-clean-am: distclean-am maintainer-clean-generic
1688
1689 mostlyclean: mostlyclean-am
1690
1691 mostlyclean-am: mostlyclean-compile mostlyclean-generic \
1692         mostlyclean-libtool
1693
1694 pdf: pdf-am
1695
1696 pdf-am:
1697
1698 ps: ps-am
1699
1700 ps-am:
1701
1702 uninstall-am: uninstall-amlibLTLIBRARIES uninstall-amlibexecDATA \
1703         uninstall-amlibexecSCRIPTS uninstall-sbinSCRIPTS
1704
1705 .MAKE: all check check-am install install-am install-data-am \
1706         install-exec-am install-strip
1707
1708 .PHONY: CTAGS GTAGS all all-am check check-TESTS check-am check-local \
1709         clean clean-amlibLTLIBRARIES clean-generic clean-libtool \
1710         clean-noinstLTLIBRARIES clean-noinstPROGRAMS ctags dist-hook \
1711         distclean distclean-compile distclean-generic \
1712         distclean-libtool distclean-local distclean-tags distdir dvi \
1713         dvi-am html html-am info info-am install install-am \
1714         install-amlibLTLIBRARIES install-amlibexecDATA \
1715         install-amlibexecSCRIPTS install-data install-data-am \
1716         install-data-hook install-dvi install-dvi-am install-exec \
1717         install-exec-am install-exec-hook install-html install-html-am \
1718         install-info install-info-am install-man install-pdf \
1719         install-pdf-am install-ps install-ps-am install-sbinSCRIPTS \
1720         install-strip installcheck installcheck-am installcheck-local \
1721         installdirs maintainer-clean maintainer-clean-generic \
1722         mostlyclean mostlyclean-compile mostlyclean-generic \
1723         mostlyclean-libtool pdf pdf-am ps ps-am tags uninstall \
1724         uninstall-am uninstall-amlibLTLIBRARIES \
1725         uninstall-amlibexecDATA uninstall-amlibexecSCRIPTS \
1726         uninstall-sbinSCRIPTS
1727
1728
1729 # Perl
1730 %: %.pl $(top_builddir)/config.status
1731         $(top_builddir)/config.status --file=$@:$<
1732         chmod a+x $@
1733         @if test -f $(top_builddir)/perl/.libs/libCmdline.so -o -f $(top_builddir)/perl/libCmdline.so; then \
1734                 grep -v '^use lib' $@ > $@.nouselib; \
1735                 $(PERL) $(CHECK_PERL_FLAGS) -I$(top_builddir)/perl -I$(top_builddir)/perl/.libs -I$(top_srcdir)/perl -c -w -T $@.nouselib || exit 1; \
1736                 rm $@.nouselib; \
1737         fi
1738
1739 %.pl: %.pl.in $(top_builddir)/config.status
1740         $(top_builddir)/config.status --file=$@:$<
1741
1742 %.pm: %.pm.in $(top_builddir)/config.status
1743         $(top_builddir)/config.status --file=$@:$<
1744
1745 # Shell
1746 %: %.sh $(top_builddir)/config.status
1747         $(top_builddir)/config.status --file=$@:$<
1748         chmod a+x $@
1749
1750 %.sh: %.sh.in $(top_builddir)/config.status
1751         $(top_builddir)/config.status --file=$@:$<
1752
1753 # Awk
1754 %: %.awk $(top_builddir)/config.status
1755         $(top_builddir)/config.status --file=$@:$<
1756         chmod a+x $@
1757
1758 %.awk: %.awk.in $(top_builddir)/config.status
1759         $(top_builddir)/config.status --file=$@:$<
1760
1761 # syntax-check perl scripts on 'make check'
1762 check-perl: $(CHECK_PERL)
1763         @CHECK_PERL="$(CHECK_PERL)"; \
1764         if test -f $(top_builddir)/perl/.libs/libCmdline.so -o -f $(top_builddir)/perl/libCmdline.so; then \
1765                 if test -n "$(PERL)"; then \
1766                         for perlobj in $$CHECK_PERL; do \
1767                                 grep -v '^use lib' $$perlobj > $$perlobj.nouselib; \
1768                                 $(PERL) $(CHECK_PERL_FLAGS) -I$(top_builddir)/perl -I$(top_builddir)/perl/.libs -I$(top_srcdir)/perl -c -w -T $$perlobj.nouselib || exit 1; \
1769                                 rm $$perlobj.nouselib; \
1770                         done; \
1771                 fi \
1772         fi
1773 check-local: check-perl
1774
1775 # syntax-check perl scripts on 'make installcheck'
1776 installcheck-perl: $(CHECK_PERL)
1777         @CHECK_PERL="$(CHECK_PERL)"; \
1778         if test -n "$(PERL)"; then \
1779                 for perlobj in $$CHECK_PERL; do \
1780                         $(PERL) $(CHECK_PERL_FLAGS) -c -w -T $$perlobj || exit 1; \
1781                 done; \
1782         fi
1783 installcheck-local: installcheck-perl
1784 check-shell: $(CHECK_SHELL)
1785         @CHECK_SHELL="$(CHECK_SHELL)"; \
1786         if test -n "$$CHECK_SHELL"; then \
1787                 if test -n "$(BASH)"; then \
1788                         for shobj in $$CHECK_SHELL; do \
1789                                 if $(BASH) -n $$shobj; then \
1790                                         echo "$$shobj syntax OK"; \
1791                                 else \
1792                                         echo "$$shobj syntax error"; \
1793                                         exit 1; \
1794                                 fi; \
1795                         done; \
1796                 else \
1797                         echo "No 'bash' available -- cannot syntax-check shell scripts"; \
1798                 fi; \
1799         fi
1800 check-local: check-shell
1801
1802 # make sure that the sources for all shell and perl scripts get included
1803 # in the distribution
1804 dist-scripts:
1805         SCRIPTS_PERL="$(SCRIPTS_PERL)"; SCRIPTS_SHELL="$(SCRIPTS_SHELL)"; SCRIPTS_AWK="$(SCRIPTS_AWK)"; \
1806         for script in $$SCRIPTS_PERL; do \
1807                 test -f $(srcdir)/$${script}.pl && { cp -p $(srcdir)/$${script}.pl $(distdir)/ || exit 1; } \
1808         done; \
1809         for script in $$SCRIPTS_SHELL; do \
1810                 test -f $(srcdir)/$${script}.sh && { cp -p $(srcdir)/$${script}.sh $(distdir)/ || exit 1; } \
1811         done; \
1812         for script in $$SCRIPTS_AWK; do \
1813                 test -f $(srcdir)/$${script}.awk && { cp -p $(srcdir)/$${script}.awk $(distdir)/ || exit 1; } \
1814         done; \
1815         for script in $$SCRIPTS_SHELL $$SCRIPTS_PERL $$SCRIPTS_AWK; do \
1816                 test -f $(srcdir)/$${script}.in && { cp -p $(srcdir)/$${script}.in $(distdir)/ || exit 1; } \
1817         done; \
1818         true
1819 dist-hook: dist-scripts
1820
1821 installperms-exec:
1822         @installperms="$(INSTALLPERMS_exec)"; \
1823         test -n "$$installperms" && echo "Setting installation permissions on executables"; \
1824         dest=; chown=; chmod=; \
1825         for cmd in $$installperms; do \
1826             case "$$cmd" in \
1827                 chown=amanda) \
1828                         echo "  ($$cmd)"; chown="$(BINARY_OWNER):$(SETUID_GROUP)";; \
1829                 dest=*|chown=*|chmod=*) \
1830                         echo "  ($$cmd)"; eval $$cmd;; \
1831                 *) $(do_file) ;; \
1832             esac; \
1833         done
1834
1835 installperms-data:
1836         @installperms="$(INSTALLPERMS_data)"; \
1837         dest=; chown=; chmod=; \
1838         for cmd in $$installperms; do \
1839             case "$$cmd" in \
1840                 chown=amanda) \
1841                         echo "  ($$cmd)"; chown="$(BINARY_OWNER):$(SETUID_GROUP)";; \
1842                 dest=*|chown=*|chmod=*) \
1843                         echo "  ($$cmd)"; eval $$cmd;; \
1844                 *)  $(do_file) ;; \
1845             esac; \
1846         done
1847
1848 install-exec-hook: installperms-exec
1849 install-data-hook: installperms-data
1850
1851 # define a rule to initialize the installperms manifest file
1852 @WANT_INSTALLPERMS_TRUE@installperms-init:
1853 @WANT_INSTALLPERMS_FALSE@installperms-init:
1854 @WANT_INSTALLPERMS_FALSE@       rm -f "$(installperms_sh)"
1855
1856 # A rule to make precompiler output from C files.  This is not used during
1857 # ordinary builds, but but can very useful in debugging problems on strange
1858 # architectures.  With this rule, we can ask users to 'make foo.i' and send
1859 # the result to us.
1860 #
1861 # It touches some automake internals ($COMPILE), but since it's not
1862 # build-critical, that's OK.
1863 %.i : %.c
1864         $(COMPILE) -E -o $@ $<
1865
1866 genversion.h: $(top_builddir)/config.status
1867         -rm -f $@ $@.new
1868         echo '#define CC "$(CC)"' > $@.new
1869         echo '#define BUILT_DATE "'`date`'"' >> $@.new
1870         echo '#define BUILT_MACH "$(target)"' >> $@.new
1871         mv $@.new $@
1872
1873 version.c: genversion$(EXEEXT)
1874         -rm -f version.c
1875         ./genversion$(EXEEXT) > version.c
1876
1877 lint:
1878         @echo $(LINT) $(libamanda_la_SOURCES)
1879         @$(LINT) $(LINTFLAGS) $(CPPFLAGS) $(DEFS) -I. -I$(top_builddir)/config $(INCLUDES) $(libamanda_la_SOURCES)
1880         @echo $(LINT) $(genversion_SOURCES)
1881         @$(LINT) $(LINTFLAGS) $(CPPFLAGS) $(DEFS) -I. -I$(top_builddir)/config $(INCLUDES) $(genversion_SOURCES)
1882
1883 listlibsrc:
1884         @ for p in $(libamanda_la_SOURCES) $(REGEXCSRC); do     \
1885                 listlibsrcs="$$listlibsrcs `pwd`/$$p";          \
1886         done;                                                   \
1887         echo $$listlibsrcs >listlibsrc.output
1888
1889 %.test.c: $(srcdir)/%.c
1890         echo '#define TEST' >$@
1891         echo '#include "$<"' >>$@
1892
1893 distclean-local:
1894         if test `cd $(srcdir) && pwd` != `pwd`; then rm -f svn-info.h; fi
1895
1896 # Tell versions [3.59,3.63) of GNU make to not export all variables.
1897 # Otherwise a system limit (for SysV at least) may be exceeded.
1898 .NOEXPORT: