Imported Upstream version 2.6.1
[debian/amanda] / client-src / Makefile.in
1 # Makefile.in generated by automake 1.10.1 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  Free Software Foundation, Inc.
6 # This Makefile.in is free software; the Free Software Foundation
7 # gives unlimited permission to copy and/or distribute it,
8 # with or without modifications, as long as this notice is preserved.
9
10 # This program is distributed in the hope that it will be useful,
11 # but WITHOUT ANY WARRANTY, to the extent permitted by law; without
12 # even the implied warranty of MERCHANTABILITY or FITNESS FOR A
13 # PARTICULAR PURPOSE.
14
15 @SET_MAKE@
16
17 # Makefile for Amanda client programs.
18
19 # vim:ft=automake
20 # Copyright (c) 2005-2008 Zmanda Inc.  All Rights Reserved.
21
22 # This library is free software; you can redistribute it and/or modify it
23 # under the terms of the GNU Lesser General Public License version 2.1 as 
24 # published by the Free Software Foundation.
25
26 # This library is distributed in the hope that it will be useful, but
27 # WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
28 # or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU Lesser General Public
29 # License for more details.
30
31 # You should have received a copy of the GNU Lesser General Public License
32 # along with this library; if not, write to the Free Software Foundation,
33 # Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA.
34
35 # Contact information: Zmanda Inc., 465 S Mathlida Ave, Suite 300
36 # Sunnyvale, CA 94086, USA, or: http://www.zmanda.com
37
38 # simple include file to pre-define variables which are then +='d by other
39 # scripts in this directory.
40
41 # vim:ft=automake
42 # Copyright (c) 2005-2008 Zmanda Inc.  All Rights Reserved.
43
44 # This library is free software; you can redistribute it and/or modify it
45 # under the terms of the GNU Lesser General Public License version 2.1 as 
46 # published by the Free Software Foundation.
47
48 # This library is distributed in the hope that it will be useful, but
49 # WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
50 # or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU Lesser General Public
51 # License for more details.
52
53 # You should have received a copy of the GNU Lesser General Public License
54 # along with this library; if not, write to the Free Software Foundation,
55 # Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA.
56
57 # Contact information: Zmanda Inc., 465 S Mathlida Ave, Suite 300
58 # Sunnyvale, CA 94086, USA, or: http://www.zmanda.com
59
60 # SYNOPSIS:
61 #
62 # Automake magic to handle the various tasks of building scripts.  Scripts can
63 # be built down to extensionless executables (e.g., foo.pl -> foo), or to 
64 # files with the usual extension (foo-lib.sh.in -> foo.sh).
65 #
66 # Files which support it are syntax-checked when the user invokes 'make check'.
67 #
68 # All *target* filenames must be listed in SCRIPTS_SHELL, SCRIPTS_PERL, and 
69 # SCRIPTS_AWK to support 'make check', 'make dist', and 'make distclean'. No
70 # files which are not substituted by config.status should be included in
71 # SCRIPTS_PERL, SCRIPTS_SHELL, or SCRIPTS_AWK.  If non-generated files are listed
72 # for installation, then Automake will figure out that they should be distributed;
73 # otherwise, include them in EXTRA_DIST.
74 #
75 # USAGE:
76 #
77 #   include $(top_srcdir)/config/automake/vars.am
78 #   include $(top_srcdir)/config/automake/scripts.am
79 #   ...
80 #   SCRIPTS_PERL = fooscript barscript perl-lib.pl perlmod.pm
81 #   SCRIPTS_SHELL = shell1 shell2 sh-lib.sh
82 #   SCRIPTS_AWK = talk balk chalk awk-lib.awk
83 #   sbin_SCRIPTS = not-subbed
84 #   EXTRA_DIST = util-script.pl
85 #
86 # with the corresponding files in the repository:
87 #
88 #   fooscript.pl barscript.pl perl-lib.pl.in perlmod.pm.in
89 #   shell1.sh shell2.sh sh-lib.sh.in
90 #   talk.awk balk.awk chalk.awk awk-lib.awk.in
91 #   not-subbed util-script.pl
92 #
93 # by default, all shell and perl scripts are syntax checked.  If this is
94 # a problem (for example, perl scripts depending on Amanda extension 
95 # modules), then assign to CHECK_{PERL,SHELL} the list of files you wish
96 # to be checked (which can be empty).
97 #
98 # To add extra flags to the perl checks (e.g., to add new -I flags), set
99 # CHECK_PERL_FLAGS.
100
101 # Implementation note:
102 #
103 # This file uses config.status to substitute @foo@ in those scripts while
104 # converting them. It also adds the executable bits (a+x) to extensionless
105 # files.  The substitution works even though the files are not listed in 
106 # configure.in
107
108 # vim:ft=automake
109 #
110 # Adjust post-install permissions settings.  This rule works off two
111 # specially-formatted variables, INSTALLPERMS_exec and INSTALLPERMS_data. 
112 # Each is a whitespace-separated list of commands, all of which are either
113 # a variable assignment or a filename.  Three variables are available:
114 #
115 #  - dest= sets the destination directory to e.g., $(sbindir)
116 #  - chown= controls changes in ownership; value is first argument to chown
117 #  - chmod= controls changes in permissions; value is first argument to chmod
118 #
119 # As a special case, chown=amanda is taken as equivalent to 
120 # chown=$(BINARY_OWNER):$(SETUID_GROUP), which may otherwise have problems with
121 # whitespace in the user/group names.
122
123 # when a filename is seen, the currently active variables are applied.
124 #
125 # Note that scripts are data, not executables!
126 #
127 # EXAMPLE
128 #
129 # sbin_PROGRAMS = foo bar bing
130 # libexec_PROGRAMS = pro gram
131 # sbin_SCRIPTS = sk ript
132 # INSTALLPERMS_exec = \
133 #       dest=$(sbindir) chown=amanda chmod= \
134 #               foo bar \
135 #       chmod=07450 \
136 #               bing
137 #       dest=$(libexecdir) chmod= \
138 #               $(libexec_PROGRAMS)
139 # INSTALLPERMS_data = \
140 #       dest=$(sbindir) chown=amanda chmod= \
141 #               $(sbin_SCRIPTS)
142 #
143 # This whole operation is not required when making builds for packaging,
144 # and can be disabled with --disable-installperms, via the WANT_INSTALLPERMS
145 # AM_CONDITIONAL.  When disabled, the file 'installperms.sh' in the top-level
146 # build directory is populated with a format suitable for shell interpretation,
147 # with lines like this:
148 #   installperm "amanda:disk" "04750" "/usr/local/sbin/bing"
149 # the arguments being, respectively, owner:group, mode, and filename.  There will
150 # be exactly one line for each file which has specific permissions.  The intention
151 # is that this file be used by packaging scripts to set correct permissions at install
152 # time.  Note that files which have no special permissions requirements do not appear 
153 # in this file at all, due to limitations of Automake.
154
155 # vim:ft=automake
156
157
158
159
160 VPATH = @srcdir@
161 pkgdatadir = $(datadir)/@PACKAGE@
162 pkglibdir = $(libdir)/@PACKAGE@
163 pkgincludedir = $(includedir)/@PACKAGE@
164 am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd
165 install_sh_DATA = $(install_sh) -c -m 644
166 install_sh_PROGRAM = $(install_sh) -c
167 install_sh_SCRIPT = $(install_sh) -c
168 INSTALL_HEADER = $(INSTALL_DATA)
169 transform = $(program_transform_name)
170 NORMAL_INSTALL = :
171 PRE_INSTALL = :
172 POST_INSTALL = :
173 NORMAL_UNINSTALL = :
174 PRE_UNINSTALL = :
175 POST_UNINSTALL = :
176 build_triplet = @build@
177 host_triplet = @host@
178 target_triplet = @target@
179 DIST_COMMON = $(noinst_HEADERS) $(srcdir)/Makefile.am \
180         $(srcdir)/Makefile.in \
181         $(top_srcdir)/config/automake/installperms.am \
182         $(top_srcdir)/config/automake/precompile.am \
183         $(top_srcdir)/config/automake/scripts.am \
184         $(top_srcdir)/config/automake/vars.am
185 @WANT_INSTALLPERMS_FALSE@am__append_1 = $(installperms_sh)
186 amlibexec_PROGRAMS = noop$(EXEEXT) calcsize$(EXEEXT) killpgrp$(EXEEXT) \
187         rundump$(EXEEXT) runtar$(EXEEXT) selfcheck$(EXEEXT) \
188         sendbackup$(EXEEXT) sendsize$(EXEEXT) versionsuffix$(EXEEXT)
189 @WANT_SAMBA_TRUE@am__append_2 = findpass.c
190 EXTRA_PROGRAMS = $(am__EXEEXT_1)
191 @WANT_SETUID_CLIENT_TRUE@am__append_3 = dest=$(amlibexecdir) chown=root chmod=04750 \
192 @WANT_SETUID_CLIENT_TRUE@               calcsize killpgrp rundump runtar
193
194 subdir = client-src
195 ACLOCAL_M4 = $(top_srcdir)/aclocal.m4
196 am__aclocal_m4_deps =  \
197         $(top_srcdir)/config/macro-archive/ac_define_dir.m4 \
198         $(top_srcdir)/config/macro-archive/ac_perl_module_version.m4 \
199         $(top_srcdir)/config/macro-archive/ac_prog_perl_version.m4 \
200         $(top_srcdir)/config/macro-archive/ac_prog_swig.m4 \
201         $(top_srcdir)/config/macro-archive/ax_compare_version.m4 \
202         $(top_srcdir)/config/macro-archive/docbook-dtd.m4 \
203         $(top_srcdir)/config/macro-archive/docbook-xslt-min.m4 \
204         $(top_srcdir)/config/macro-archive/docbook-xslt.m4 \
205         $(top_srcdir)/config/macro-archive/xsltproc.m4 \
206         $(top_srcdir)/config/amanda/amplot.m4 \
207         $(top_srcdir)/config/amanda/bsd-security.m4 \
208         $(top_srcdir)/config/amanda/bsdtcp-security.m4 \
209         $(top_srcdir)/config/amanda/bsdudp-security.m4 \
210         $(top_srcdir)/config/amanda/changer.m4 \
211         $(top_srcdir)/config/amanda/components.m4 \
212         $(top_srcdir)/config/amanda/compress.m4 \
213         $(top_srcdir)/config/amanda/config.m4 \
214         $(top_srcdir)/config/amanda/debugging.m4 \
215         $(top_srcdir)/config/amanda/defaults.m4 \
216         $(top_srcdir)/config/amanda/devprefix.m4 \
217         $(top_srcdir)/config/amanda/dirs.m4 \
218         $(top_srcdir)/config/amanda/documentation.m4 \
219         $(top_srcdir)/config/amanda/dumpers.m4 \
220         $(top_srcdir)/config/amanda/flags.m4 \
221         $(top_srcdir)/config/amanda/flock.m4 \
222         $(top_srcdir)/config/amanda/funcs.m4 \
223         $(top_srcdir)/config/amanda/getfsent.m4 \
224         $(top_srcdir)/config/amanda/i18n.m4 \
225         $(top_srcdir)/config/amanda/ipv6.m4 \
226         $(top_srcdir)/config/amanda/krb4-security.m4 \
227         $(top_srcdir)/config/amanda/krb5-security.m4 \
228         $(top_srcdir)/config/amanda/lfs.m4 \
229         $(top_srcdir)/config/amanda/libs.m4 \
230         $(top_srcdir)/config/amanda/net.m4 \
231         $(top_srcdir)/config/amanda/progs.m4 \
232         $(top_srcdir)/config/amanda/ps.m4 \
233         $(top_srcdir)/config/amanda/readdir.m4 \
234         $(top_srcdir)/config/amanda/readline.m4 \
235         $(top_srcdir)/config/amanda/rsh-security.m4 \
236         $(top_srcdir)/config/amanda/s3-device.m4 \
237         $(top_srcdir)/config/amanda/shmem.m4 \
238         $(top_srcdir)/config/amanda/socklen_t_equiv.m4 \
239         $(top_srcdir)/config/amanda/ssh-security.m4 \
240         $(top_srcdir)/config/amanda/summary.m4 \
241         $(top_srcdir)/config/amanda/swig.m4 \
242         $(top_srcdir)/config/amanda/syshacks.m4 \
243         $(top_srcdir)/config/amanda/tape.m4 \
244         $(top_srcdir)/config/amanda/types.m4 \
245         $(top_srcdir)/config/amanda/userid.m4 \
246         $(top_srcdir)/config/amanda/version.m4 \
247         $(top_srcdir)/config/gnulib/alloca.m4 \
248         $(top_srcdir)/config/gnulib/arpa_inet_h.m4 \
249         $(top_srcdir)/config/gnulib/base64.m4 \
250         $(top_srcdir)/config/gnulib/eoverflow.m4 \
251         $(top_srcdir)/config/gnulib/extensions.m4 \
252         $(top_srcdir)/config/gnulib/float_h.m4 \
253         $(top_srcdir)/config/gnulib/fsusage.m4 \
254         $(top_srcdir)/config/gnulib/getaddrinfo.m4 \
255         $(top_srcdir)/config/gnulib/getopt.m4 \
256         $(top_srcdir)/config/gnulib/gettimeofday.m4 \
257         $(top_srcdir)/config/gnulib/gnulib-common.m4 \
258         $(top_srcdir)/config/gnulib/gnulib-comp.m4 \
259         $(top_srcdir)/config/gnulib/include_next.m4 \
260         $(top_srcdir)/config/gnulib/inet_ntop.m4 \
261         $(top_srcdir)/config/gnulib/intmax_t.m4 \
262         $(top_srcdir)/config/gnulib/lock.m4 \
263         $(top_srcdir)/config/gnulib/longlong.m4 \
264         $(top_srcdir)/config/gnulib/malloc.m4 \
265         $(top_srcdir)/config/gnulib/mkdtemp.m4 \
266         $(top_srcdir)/config/gnulib/netinet_in_h.m4 \
267         $(top_srcdir)/config/gnulib/onceonly_2_57.m4 \
268         $(top_srcdir)/config/gnulib/physmem.m4 \
269         $(top_srcdir)/config/gnulib/safe-read.m4 \
270         $(top_srcdir)/config/gnulib/safe-write.m4 \
271         $(top_srcdir)/config/gnulib/snprintf.m4 \
272         $(top_srcdir)/config/gnulib/socklen.m4 \
273         $(top_srcdir)/config/gnulib/sockpfaf.m4 \
274         $(top_srcdir)/config/gnulib/ssize_t.m4 \
275         $(top_srcdir)/config/gnulib/stdbool.m4 \
276         $(top_srcdir)/config/gnulib/stdint.m4 \
277         $(top_srcdir)/config/gnulib/stdio_h.m4 \
278         $(top_srcdir)/config/gnulib/stdlib_h.m4 \
279         $(top_srcdir)/config/gnulib/strdup.m4 \
280         $(top_srcdir)/config/gnulib/string_h.m4 \
281         $(top_srcdir)/config/gnulib/sys_socket_h.m4 \
282         $(top_srcdir)/config/gnulib/sys_stat_h.m4 \
283         $(top_srcdir)/config/gnulib/sys_time_h.m4 \
284         $(top_srcdir)/config/gnulib/tempname.m4 \
285         $(top_srcdir)/config/gnulib/unistd_h.m4 \
286         $(top_srcdir)/config/gnulib/vasnprintf.m4 \
287         $(top_srcdir)/config/gnulib/visibility.m4 \
288         $(top_srcdir)/config/gnulib/wchar.m4 \
289         $(top_srcdir)/config/gettext-macros/gettext.m4 \
290         $(top_srcdir)/config/gettext-macros/iconv.m4 \
291         $(top_srcdir)/config/gettext-macros/inttypes_h.m4 \
292         $(top_srcdir)/config/gettext-macros/lib-ld.m4 \
293         $(top_srcdir)/config/gettext-macros/lib-link.m4 \
294         $(top_srcdir)/config/gettext-macros/lib-prefix.m4 \
295         $(top_srcdir)/config/gettext-macros/nls.m4 \
296         $(top_srcdir)/config/gettext-macros/po.m4 \
297         $(top_srcdir)/config/gettext-macros/progtest.m4 \
298         $(top_srcdir)/config/gettext-macros/size_max.m4 \
299         $(top_srcdir)/config/gettext-macros/stdint_h.m4 \
300         $(top_srcdir)/config/gettext-macros/wchar_t.m4 \
301         $(top_srcdir)/config/gettext-macros/wint_t.m4 \
302         $(top_srcdir)/config/gettext-macros/xsize.m4 \
303         $(top_srcdir)/config/libtool.m4 $(top_srcdir)/configure.in
304 am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \
305         $(ACLOCAL_M4)
306 mkinstalldirs = $(SHELL) $(top_srcdir)/config/mkinstalldirs
307 CONFIG_HEADER = $(top_builddir)/config/config.h
308 CONFIG_CLEAN_FILES =
309 am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`;
310 am__vpath_adj = case $$p in \
311     $(srcdir)/*) f=`echo "$$p" | sed "s|^$$srcdirstrip/||"`;; \
312     *) f=$$p;; \
313   esac;
314 am__strip_dir = `echo $$p | sed -e 's|^.*/||'`;
315 am__installdirs = "$(DESTDIR)$(amlibdir)" "$(DESTDIR)$(amlibexecdir)" \
316         "$(DESTDIR)$(amlibexecdir)"
317 amlibLTLIBRARIES_INSTALL = $(INSTALL)
318 LTLIBRARIES = $(amlib_LTLIBRARIES)
319 libamclient_la_DEPENDENCIES = ../common-src/libamanda.la
320 am__libamclient_la_SOURCES_DIST = amandates.c getfsent.c unctime.c \
321         client_util.c findpass.c
322 @WANT_SAMBA_TRUE@am__objects_1 = findpass.lo
323 am_libamclient_la_OBJECTS = amandates.lo getfsent.lo unctime.lo \
324         client_util.lo $(am__objects_1)
325 libamclient_la_OBJECTS = $(am_libamclient_la_OBJECTS)
326 libamclient_la_LINK = $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) \
327         $(LIBTOOLFLAGS) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \
328         $(libamclient_la_LDFLAGS) $(LDFLAGS) -o $@
329 am__EXEEXT_1 = getfsent$(EXEEXT)
330 amlibexecPROGRAMS_INSTALL = $(INSTALL_PROGRAM)
331 PROGRAMS = $(amlibexec_PROGRAMS)
332 calcsize_SOURCES = calcsize.c
333 calcsize_OBJECTS = calcsize.$(OBJEXT)
334 calcsize_LDADD = $(LDADD)
335 calcsize_DEPENDENCIES = ../common-src/libamanda.la libamclient.la \
336         ../amandad-src/libamandad.la ../common-src/libamanda.la \
337         ../gnulib/libgnu.la
338 am_getfsent_OBJECTS = getfsent.test.$(OBJEXT)
339 getfsent_OBJECTS = $(am_getfsent_OBJECTS)
340 getfsent_LDADD = $(LDADD)
341 getfsent_DEPENDENCIES = ../common-src/libamanda.la libamclient.la \
342         ../amandad-src/libamandad.la ../common-src/libamanda.la \
343         ../gnulib/libgnu.la
344 killpgrp_SOURCES = killpgrp.c
345 killpgrp_OBJECTS = killpgrp.$(OBJEXT)
346 killpgrp_LDADD = $(LDADD)
347 killpgrp_DEPENDENCIES = ../common-src/libamanda.la libamclient.la \
348         ../amandad-src/libamandad.la ../common-src/libamanda.la \
349         ../gnulib/libgnu.la
350 noop_SOURCES = noop.c
351 noop_OBJECTS = noop.$(OBJEXT)
352 noop_LDADD = $(LDADD)
353 noop_DEPENDENCIES = ../common-src/libamanda.la libamclient.la \
354         ../amandad-src/libamandad.la ../common-src/libamanda.la \
355         ../gnulib/libgnu.la
356 rundump_SOURCES = rundump.c
357 rundump_OBJECTS = rundump.$(OBJEXT)
358 rundump_LDADD = $(LDADD)
359 rundump_DEPENDENCIES = ../common-src/libamanda.la libamclient.la \
360         ../amandad-src/libamandad.la ../common-src/libamanda.la \
361         ../gnulib/libgnu.la
362 runtar_SOURCES = runtar.c
363 runtar_OBJECTS = runtar.$(OBJEXT)
364 runtar_LDADD = $(LDADD)
365 runtar_DEPENDENCIES = ../common-src/libamanda.la libamclient.la \
366         ../amandad-src/libamandad.la ../common-src/libamanda.la \
367         ../gnulib/libgnu.la
368 selfcheck_SOURCES = selfcheck.c
369 selfcheck_OBJECTS = selfcheck.$(OBJEXT)
370 selfcheck_LDADD = $(LDADD)
371 selfcheck_DEPENDENCIES = ../common-src/libamanda.la libamclient.la \
372         ../amandad-src/libamandad.la ../common-src/libamanda.la \
373         ../gnulib/libgnu.la
374 am_sendbackup_OBJECTS = sendbackup.$(OBJEXT) sendbackup-dump.$(OBJEXT) \
375         sendbackup-gnutar.$(OBJEXT)
376 sendbackup_OBJECTS = $(am_sendbackup_OBJECTS)
377 sendbackup_LDADD = $(LDADD)
378 sendbackup_DEPENDENCIES = ../common-src/libamanda.la libamclient.la \
379         ../amandad-src/libamandad.la ../common-src/libamanda.la \
380         ../gnulib/libgnu.la
381 sendsize_SOURCES = sendsize.c
382 sendsize_OBJECTS = sendsize.$(OBJEXT)
383 sendsize_LDADD = $(LDADD)
384 sendsize_DEPENDENCIES = ../common-src/libamanda.la libamclient.la \
385         ../amandad-src/libamandad.la ../common-src/libamanda.la \
386         ../gnulib/libgnu.la
387 versionsuffix_SOURCES = versionsuffix.c
388 versionsuffix_OBJECTS = versionsuffix.$(OBJEXT)
389 versionsuffix_LDADD = $(LDADD)
390 versionsuffix_DEPENDENCIES = ../common-src/libamanda.la libamclient.la \
391         ../amandad-src/libamandad.la ../common-src/libamanda.la \
392         ../gnulib/libgnu.la
393 amlibexecSCRIPT_INSTALL = $(INSTALL_SCRIPT)
394 SCRIPTS = $(amlibexec_SCRIPTS)
395 DEFAULT_INCLUDES = -I.@am__isrc@ -I$(top_builddir)/config
396 depcomp = $(SHELL) $(top_srcdir)/config/depcomp
397 am__depfiles_maybe = depfiles
398 COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \
399         $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS)
400 LTCOMPILE = $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) \
401         --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) \
402         $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS)
403 CCLD = $(CC)
404 LINK = $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) \
405         --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) $(AM_LDFLAGS) \
406         $(LDFLAGS) -o $@
407 SOURCES = $(libamclient_la_SOURCES) calcsize.c $(getfsent_SOURCES) \
408         killpgrp.c noop.c rundump.c runtar.c selfcheck.c \
409         $(sendbackup_SOURCES) sendsize.c versionsuffix.c
410 DIST_SOURCES = $(am__libamclient_la_SOURCES_DIST) calcsize.c \
411         $(getfsent_SOURCES) killpgrp.c noop.c rundump.c runtar.c \
412         selfcheck.c $(sendbackup_SOURCES) sendsize.c versionsuffix.c
413 HEADERS = $(noinst_HEADERS)
414 ETAGS = etags
415 CTAGS = ctags
416 DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST)
417 ACLOCAL = @ACLOCAL@
418 AIX_BACKUP = @AIX_BACKUP@
419 ALLOCA = @ALLOCA@
420 ALLOCA_H = @ALLOCA_H@
421 AMANDA_DBGDIR = @AMANDA_DBGDIR@
422 AMANDA_DEBUG_DAYS = @AMANDA_DEBUG_DAYS@
423 AMANDA_STATIC_LDFLAGS = @AMANDA_STATIC_LDFLAGS@
424 AMANDA_TMPDIR = @AMANDA_TMPDIR@
425 AMANDA_WARNING_CFLAGS = @AMANDA_WARNING_CFLAGS@
426 AMLINT = @AMLINT@
427 AMLINTFLAGS = @AMLINTFLAGS@
428 AMPLOT_CAT_COMPRESS = @AMPLOT_CAT_COMPRESS@
429 AMPLOT_CAT_GZIP = @AMPLOT_CAT_GZIP@
430 AMPLOT_CAT_PACK = @AMPLOT_CAT_PACK@
431 AMPLOT_COMPRESS = @AMPLOT_COMPRESS@
432 AMTAR = @AMTAR@
433 APPLICATION_DIR = @APPLICATION_DIR@
434 AR = @AR@
435 ARPA_INET_H = @ARPA_INET_H@
436 ASSERTIONS = @ASSERTIONS@
437 AUTOCONF = @AUTOCONF@
438 AUTOHEADER = @AUTOHEADER@
439 AUTOMAKE = @AUTOMAKE@
440 AWK = @AWK@
441 BASH = @BASH@
442 BINARY_OWNER = @BINARY_OWNER@
443 BITSIZEOF_PTRDIFF_T = @BITSIZEOF_PTRDIFF_T@
444 BITSIZEOF_SIG_ATOMIC_T = @BITSIZEOF_SIG_ATOMIC_T@
445 BITSIZEOF_SIZE_T = @BITSIZEOF_SIZE_T@
446 BITSIZEOF_WCHAR_T = @BITSIZEOF_WCHAR_T@
447 BITSIZEOF_WINT_T = @BITSIZEOF_WINT_T@
448 BSDTCP_SECURITY = @BSDTCP_SECURITY@
449 BSDUDP_SECURITY = @BSDUDP_SECURITY@
450 BSD_SECURITY = @BSD_SECURITY@
451 CAT = @CAT@
452 CC = @CC@
453 CCDEPMODE = @CCDEPMODE@
454 CFLAGS = @CFLAGS@
455 CFLAG_VISIBILITY = @CFLAG_VISIBILITY@
456 CHECK_USERID = @CHECK_USERID@
457 CHIO = @CHIO@
458 CHS = @CHS@
459 CLIENT_HOST_INSTANCE = @CLIENT_HOST_INSTANCE@
460 CLIENT_HOST_KEY_FILE = @CLIENT_HOST_KEY_FILE@
461 CLIENT_HOST_PRINCIPAL = @CLIENT_HOST_PRINCIPAL@
462 CLIENT_LOGIN = @CLIENT_LOGIN@
463 CLIENT_SCRIPTS_OPT = @CLIENT_SCRIPTS_OPT@
464 COMPRESS = @COMPRESS@
465 COMPRESS_BEST_OPT = @COMPRESS_BEST_OPT@
466 COMPRESS_FAST_OPT = @COMPRESS_FAST_OPT@
467 COMPRESS_PATH = @COMPRESS_PATH@
468 COMPRESS_SUFFIX = @COMPRESS_SUFFIX@
469 CONFIG_CLOBBER_MY_CONFIG = @CONFIG_CLOBBER_MY_CONFIG@
470 CONFIG_DIR = @CONFIG_DIR@
471 CPP = @CPP@
472 CPPFLAGS = @CPPFLAGS@
473 CURL_CONFIG = @CURL_CONFIG@
474 CXX = @CXX@
475 CXXCPP = @CXXCPP@
476 CXXDEPMODE = @CXXDEPMODE@
477 CXXFLAGS = @CXXFLAGS@
478 CYGPATH_W = @CYGPATH_W@
479 DD = @DD@
480 DEFAULT_AMANDATES_FILE = @DEFAULT_AMANDATES_FILE@
481 DEFAULT_CHANGER_DEVICE = @DEFAULT_CHANGER_DEVICE@
482 DEFAULT_CONFIG = @DEFAULT_CONFIG@
483 DEFAULT_MAILER = @DEFAULT_MAILER@
484 DEFAULT_SERVER = @DEFAULT_SERVER@
485 DEFAULT_TAPE_DEVICE = @DEFAULT_TAPE_DEVICE@
486 DEFAULT_TAPE_SERVER = @DEFAULT_TAPE_SERVER@
487 DEFS = @DEFS@
488 DEPDIR = @DEPDIR@
489 DOC_BUILD_DATE = @DOC_BUILD_DATE@
490 DUMP = @DUMP@
491 DUMP_RETURNS_1 = @DUMP_RETURNS_1@
492 ECHO = @ECHO@
493 ECHO_C = @ECHO_C@
494 ECHO_N = @ECHO_N@
495 ECHO_T = @ECHO_T@
496 EGREP = @EGREP@
497 EOVERFLOW = @EOVERFLOW@
498 EXAMPLE_TAPEDEV = @EXAMPLE_TAPEDEV@
499 EXEEXT = @EXEEXT@
500 F77 = @F77@
501 FFLAGS = @FFLAGS@
502 FLOAT_H = @FLOAT_H@
503 GETCONF = @GETCONF@
504 GETOPT_H = @GETOPT_H@
505 GETTEXT = @GETTEXT@
506 GLIB_CFLAGS = @GLIB_CFLAGS@
507 GLIB_GENMARSHAL = @GLIB_GENMARSHAL@
508 GLIB_LIBS = @GLIB_LIBS@
509 GLIB_MKENUMS = @GLIB_MKENUMS@
510 GMSGFMT = @GMSGFMT@
511 GMSGFMT_015 = @GMSGFMT_015@
512 GNULIB_CALLOC_POSIX = @GNULIB_CALLOC_POSIX@
513 GNULIB_CHOWN = @GNULIB_CHOWN@
514 GNULIB_DUP2 = @GNULIB_DUP2@
515 GNULIB_ENVIRON = @GNULIB_ENVIRON@
516 GNULIB_FCHDIR = @GNULIB_FCHDIR@
517 GNULIB_FFLUSH = @GNULIB_FFLUSH@
518 GNULIB_FOPEN = @GNULIB_FOPEN@
519 GNULIB_FPRINTF_POSIX = @GNULIB_FPRINTF_POSIX@
520 GNULIB_FREOPEN = @GNULIB_FREOPEN@
521 GNULIB_FSEEK = @GNULIB_FSEEK@
522 GNULIB_FSEEKO = @GNULIB_FSEEKO@
523 GNULIB_FTELL = @GNULIB_FTELL@
524 GNULIB_FTELLO = @GNULIB_FTELLO@
525 GNULIB_FTRUNCATE = @GNULIB_FTRUNCATE@
526 GNULIB_GETCWD = @GNULIB_GETCWD@
527 GNULIB_GETDELIM = @GNULIB_GETDELIM@
528 GNULIB_GETLINE = @GNULIB_GETLINE@
529 GNULIB_GETLOGIN_R = @GNULIB_GETLOGIN_R@
530 GNULIB_GETPAGESIZE = @GNULIB_GETPAGESIZE@
531 GNULIB_GETSUBOPT = @GNULIB_GETSUBOPT@
532 GNULIB_LCHOWN = @GNULIB_LCHOWN@
533 GNULIB_LSEEK = @GNULIB_LSEEK@
534 GNULIB_MALLOC_POSIX = @GNULIB_MALLOC_POSIX@
535 GNULIB_MBSCASECMP = @GNULIB_MBSCASECMP@
536 GNULIB_MBSCASESTR = @GNULIB_MBSCASESTR@
537 GNULIB_MBSCHR = @GNULIB_MBSCHR@
538 GNULIB_MBSCSPN = @GNULIB_MBSCSPN@
539 GNULIB_MBSLEN = @GNULIB_MBSLEN@
540 GNULIB_MBSNCASECMP = @GNULIB_MBSNCASECMP@
541 GNULIB_MBSNLEN = @GNULIB_MBSNLEN@
542 GNULIB_MBSPBRK = @GNULIB_MBSPBRK@
543 GNULIB_MBSPCASECMP = @GNULIB_MBSPCASECMP@
544 GNULIB_MBSRCHR = @GNULIB_MBSRCHR@
545 GNULIB_MBSSEP = @GNULIB_MBSSEP@
546 GNULIB_MBSSPN = @GNULIB_MBSSPN@
547 GNULIB_MBSSTR = @GNULIB_MBSSTR@
548 GNULIB_MBSTOK_R = @GNULIB_MBSTOK_R@
549 GNULIB_MEMMEM = @GNULIB_MEMMEM@
550 GNULIB_MEMPCPY = @GNULIB_MEMPCPY@
551 GNULIB_MEMRCHR = @GNULIB_MEMRCHR@
552 GNULIB_MKDTEMP = @GNULIB_MKDTEMP@
553 GNULIB_MKSTEMP = @GNULIB_MKSTEMP@
554 GNULIB_PRINTF_POSIX = @GNULIB_PRINTF_POSIX@
555 GNULIB_PUTENV = @GNULIB_PUTENV@
556 GNULIB_READLINK = @GNULIB_READLINK@
557 GNULIB_REALLOC_POSIX = @GNULIB_REALLOC_POSIX@
558 GNULIB_SETENV = @GNULIB_SETENV@
559 GNULIB_SLEEP = @GNULIB_SLEEP@
560 GNULIB_SNPRINTF = @GNULIB_SNPRINTF@
561 GNULIB_SPRINTF_POSIX = @GNULIB_SPRINTF_POSIX@
562 GNULIB_STPCPY = @GNULIB_STPCPY@
563 GNULIB_STPNCPY = @GNULIB_STPNCPY@
564 GNULIB_STRCASESTR = @GNULIB_STRCASESTR@
565 GNULIB_STRCHRNUL = @GNULIB_STRCHRNUL@
566 GNULIB_STRDUP = @GNULIB_STRDUP@
567 GNULIB_STRERROR = @GNULIB_STRERROR@
568 GNULIB_STRNDUP = @GNULIB_STRNDUP@
569 GNULIB_STRNLEN = @GNULIB_STRNLEN@
570 GNULIB_STRPBRK = @GNULIB_STRPBRK@
571 GNULIB_STRSEP = @GNULIB_STRSEP@
572 GNULIB_STRSIGNAL = @GNULIB_STRSIGNAL@
573 GNULIB_STRSTR = @GNULIB_STRSTR@
574 GNULIB_STRTOK_R = @GNULIB_STRTOK_R@
575 GNULIB_UNSETENV = @GNULIB_UNSETENV@
576 GNULIB_VASPRINTF = @GNULIB_VASPRINTF@
577 GNULIB_VFPRINTF_POSIX = @GNULIB_VFPRINTF_POSIX@
578 GNULIB_VPRINTF_POSIX = @GNULIB_VPRINTF_POSIX@
579 GNULIB_VSNPRINTF = @GNULIB_VSNPRINTF@
580 GNULIB_VSPRINTF_POSIX = @GNULIB_VSPRINTF_POSIX@
581 GNULIB_WCWIDTH = @GNULIB_WCWIDTH@
582 GNUPLOT = @GNUPLOT@
583 GNUTAR = @GNUTAR@
584 GNUTAR_LISTED_INCREMENTAL_DIR = @GNUTAR_LISTED_INCREMENTAL_DIR@
585 GOBJECT_QUERY = @GOBJECT_QUERY@
586 GREP = @GREP@
587 GZIP = @GZIP@
588 HAVE_CALLOC_POSIX = @HAVE_CALLOC_POSIX@
589 HAVE_DECL_ENVIRON = @HAVE_DECL_ENVIRON@
590 HAVE_DECL_GETDELIM = @HAVE_DECL_GETDELIM@
591 HAVE_DECL_GETLINE = @HAVE_DECL_GETLINE@
592 HAVE_DECL_GETLOGIN_R = @HAVE_DECL_GETLOGIN_R@
593 HAVE_DECL_MEMMEM = @HAVE_DECL_MEMMEM@
594 HAVE_DECL_MEMRCHR = @HAVE_DECL_MEMRCHR@
595 HAVE_DECL_MKDIR = @HAVE_DECL_MKDIR@
596 HAVE_DECL_SNPRINTF = @HAVE_DECL_SNPRINTF@
597 HAVE_DECL_STRDUP = @HAVE_DECL_STRDUP@
598 HAVE_DECL_STRERROR = @HAVE_DECL_STRERROR@
599 HAVE_DECL_STRNDUP = @HAVE_DECL_STRNDUP@
600 HAVE_DECL_STRNLEN = @HAVE_DECL_STRNLEN@
601 HAVE_DECL_STRSIGNAL = @HAVE_DECL_STRSIGNAL@
602 HAVE_DECL_STRTOK_R = @HAVE_DECL_STRTOK_R@
603 HAVE_DECL_VSNPRINTF = @HAVE_DECL_VSNPRINTF@
604 HAVE_DECL_WCWIDTH = @HAVE_DECL_WCWIDTH@
605 HAVE_DUP2 = @HAVE_DUP2@
606 HAVE_FSEEKO = @HAVE_FSEEKO@
607 HAVE_FTELLO = @HAVE_FTELLO@
608 HAVE_FTRUNCATE = @HAVE_FTRUNCATE@
609 HAVE_GETPAGESIZE = @HAVE_GETPAGESIZE@
610 HAVE_GETSUBOPT = @HAVE_GETSUBOPT@
611 HAVE_GZIP = @HAVE_GZIP@
612 HAVE_INTTYPES_H = @HAVE_INTTYPES_H@
613 HAVE_IO_H = @HAVE_IO_H@
614 HAVE_LONG_LONG_INT = @HAVE_LONG_LONG_INT@
615 HAVE_LSTAT = @HAVE_LSTAT@
616 HAVE_MALLOC_POSIX = @HAVE_MALLOC_POSIX@
617 HAVE_MEMPCPY = @HAVE_MEMPCPY@
618 HAVE_MKDTEMP = @HAVE_MKDTEMP@
619 HAVE_NETINET_IN_H = @HAVE_NETINET_IN_H@
620 HAVE_OS_H = @HAVE_OS_H@
621 HAVE_READLINK = @HAVE_READLINK@
622 HAVE_REALLOC_POSIX = @HAVE_REALLOC_POSIX@
623 HAVE_SETENV = @HAVE_SETENV@
624 HAVE_SIGNED_SIG_ATOMIC_T = @HAVE_SIGNED_SIG_ATOMIC_T@
625 HAVE_SIGNED_WCHAR_T = @HAVE_SIGNED_WCHAR_T@
626 HAVE_SIGNED_WINT_T = @HAVE_SIGNED_WINT_T@
627 HAVE_SLEEP = @HAVE_SLEEP@
628 HAVE_STDINT_H = @HAVE_STDINT_H@
629 HAVE_STPCPY = @HAVE_STPCPY@
630 HAVE_STPNCPY = @HAVE_STPNCPY@
631 HAVE_STRCASESTR = @HAVE_STRCASESTR@
632 HAVE_STRCHRNUL = @HAVE_STRCHRNUL@
633 HAVE_STRNDUP = @HAVE_STRNDUP@
634 HAVE_STRPBRK = @HAVE_STRPBRK@
635 HAVE_STRSEP = @HAVE_STRSEP@
636 HAVE_STRUCT_TIMEVAL = @HAVE_STRUCT_TIMEVAL@
637 HAVE_SYS_BITYPES_H = @HAVE_SYS_BITYPES_H@
638 HAVE_SYS_INTTYPES_H = @HAVE_SYS_INTTYPES_H@
639 HAVE_SYS_PARAM_H = @HAVE_SYS_PARAM_H@
640 HAVE_SYS_SOCKET_H = @HAVE_SYS_SOCKET_H@
641 HAVE_SYS_TIME_H = @HAVE_SYS_TIME_H@
642 HAVE_SYS_TYPES_H = @HAVE_SYS_TYPES_H@
643 HAVE_UNISTD_H = @HAVE_UNISTD_H@
644 HAVE_UNSETENV = @HAVE_UNSETENV@
645 HAVE_UNSIGNED_LONG_LONG_INT = @HAVE_UNSIGNED_LONG_LONG_INT@
646 HAVE_VASPRINTF = @HAVE_VASPRINTF@
647 HAVE_VISIBILITY = @HAVE_VISIBILITY@
648 HAVE_WCHAR_H = @HAVE_WCHAR_H@
649 HAVE_WINSOCK2_H = @HAVE_WINSOCK2_H@
650 HAVE_WS2TCPIP_H = @HAVE_WS2TCPIP_H@
651 HAVE__BOOL = @HAVE__BOOL@
652 INCLUDE_NEXT = @INCLUDE_NEXT@
653 INSTALL = @INSTALL@
654 INSTALL_DATA = @INSTALL_DATA@
655 INSTALL_PROGRAM = @INSTALL_PROGRAM@
656 INSTALL_SCRIPT = @INSTALL_SCRIPT@
657 INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@
658 INTLLIBS = @INTLLIBS@
659 INTL_MACOSX_LIBS = @INTL_MACOSX_LIBS@
660 KRB4_SECURITY = @KRB4_SECURITY@
661 KRB5_SECURITY = @KRB5_SECURITY@
662 LDFLAGS = @LDFLAGS@
663 LEX = @LEX@
664 LEXLIB = @LEXLIB@
665 LEX_OUTPUT_ROOT = @LEX_OUTPUT_ROOT@
666 LIBCURL = @LIBCURL@
667 LIBCURL_CPPFLAGS = @LIBCURL_CPPFLAGS@
668 LIBICONV = @LIBICONV@
669 LIBINTL = @LIBINTL@
670 LIBMULTITHREAD = @LIBMULTITHREAD@
671 LIBOBJS = @LIBOBJS@
672 LIBPTH = @LIBPTH@
673 LIBS = @LIBS@
674 LIBTHREAD = @LIBTHREAD@
675 LIBTOOL = @LIBTOOL@
676 LIBTOOL_DEPS = @LIBTOOL_DEPS@
677 LN_S = @LN_S@
678 LOCKING = @LOCKING@
679 LOW_TCPPORTRANGE = @LOW_TCPPORTRANGE@
680 LTLIBICONV = @LTLIBICONV@
681 LTLIBINTL = @LTLIBINTL@
682 LTLIBMULTITHREAD = @LTLIBMULTITHREAD@
683 LTLIBOBJS = @LTLIBOBJS@
684 LTLIBPTH = @LTLIBPTH@
685 LTLIBTHREAD = @LTLIBTHREAD@
686 MAILER = @MAILER@
687 MAKEINFO = @MAKEINFO@
688 MCUTIL = @MCUTIL@
689 MKDIR_P = @MKDIR_P@
690 MSGFMT = @MSGFMT@
691 MSGFMT_015 = @MSGFMT_015@
692 MSGMERGE = @MSGMERGE@
693 MT = @MT@
694 MTX = @MTX@
695 MT_FILE_FLAG = @MT_FILE_FLAG@
696 NETINET_IN_H = @NETINET_IN_H@
697 NEXT_FLOAT_H = @NEXT_FLOAT_H@
698 NEXT_NETINET_IN_H = @NEXT_NETINET_IN_H@
699 NEXT_STDINT_H = @NEXT_STDINT_H@
700 NEXT_STDIO_H = @NEXT_STDIO_H@
701 NEXT_STDLIB_H = @NEXT_STDLIB_H@
702 NEXT_STRING_H = @NEXT_STRING_H@
703 NEXT_SYS_SOCKET_H = @NEXT_SYS_SOCKET_H@
704 NEXT_SYS_STAT_H = @NEXT_SYS_STAT_H@
705 NEXT_SYS_TIME_H = @NEXT_SYS_TIME_H@
706 NEXT_UNISTD_H = @NEXT_UNISTD_H@
707 NEXT_WCHAR_H = @NEXT_WCHAR_H@
708 OBJEXT = @OBJEXT@
709 PACKAGE = @PACKAGE@
710 PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@
711 PACKAGE_NAME = @PACKAGE_NAME@
712 PACKAGE_STRING = @PACKAGE_STRING@
713 PACKAGE_TARNAME = @PACKAGE_TARNAME@
714 PACKAGE_VERSION = @PACKAGE_VERSION@
715 PATH_SEPARATOR = @PATH_SEPARATOR@
716 PCAT = @PCAT@
717 PERL = @PERL@
718 PERLEXTLIBS = @PERLEXTLIBS@
719 PERL_INC = @PERL_INC@
720 PKG_CONFIG = @PKG_CONFIG@
721 POSUB = @POSUB@
722 PRINT = @PRINT@
723 PS = @PS@
724 PS_ARGUMENT = @PS_ARGUMENT@
725 PTRDIFF_T_SUFFIX = @PTRDIFF_T_SUFFIX@
726 RANLIB = @RANLIB@
727 READLINE_LIBS = @READLINE_LIBS@
728 REPLACE_CHOWN = @REPLACE_CHOWN@
729 REPLACE_FCHDIR = @REPLACE_FCHDIR@
730 REPLACE_FFLUSH = @REPLACE_FFLUSH@
731 REPLACE_FOPEN = @REPLACE_FOPEN@
732 REPLACE_FPRINTF = @REPLACE_FPRINTF@
733 REPLACE_FREOPEN = @REPLACE_FREOPEN@
734 REPLACE_FSEEK = @REPLACE_FSEEK@
735 REPLACE_FSEEKO = @REPLACE_FSEEKO@
736 REPLACE_FTELL = @REPLACE_FTELL@
737 REPLACE_FTELLO = @REPLACE_FTELLO@
738 REPLACE_GETCWD = @REPLACE_GETCWD@
739 REPLACE_GETLINE = @REPLACE_GETLINE@
740 REPLACE_GETPAGESIZE = @REPLACE_GETPAGESIZE@
741 REPLACE_GETTIMEOFDAY = @REPLACE_GETTIMEOFDAY@
742 REPLACE_LCHOWN = @REPLACE_LCHOWN@
743 REPLACE_LSEEK = @REPLACE_LSEEK@
744 REPLACE_MEMMEM = @REPLACE_MEMMEM@
745 REPLACE_MKSTEMP = @REPLACE_MKSTEMP@
746 REPLACE_PRINTF = @REPLACE_PRINTF@
747 REPLACE_PUTENV = @REPLACE_PUTENV@
748 REPLACE_SNPRINTF = @REPLACE_SNPRINTF@
749 REPLACE_SPRINTF = @REPLACE_SPRINTF@
750 REPLACE_STRCASESTR = @REPLACE_STRCASESTR@
751 REPLACE_STRERROR = @REPLACE_STRERROR@
752 REPLACE_STRSIGNAL = @REPLACE_STRSIGNAL@
753 REPLACE_STRSTR = @REPLACE_STRSTR@
754 REPLACE_VASPRINTF = @REPLACE_VASPRINTF@
755 REPLACE_VFPRINTF = @REPLACE_VFPRINTF@
756 REPLACE_VPRINTF = @REPLACE_VPRINTF@
757 REPLACE_VSNPRINTF = @REPLACE_VSNPRINTF@
758 REPLACE_VSPRINTF = @REPLACE_VSPRINTF@
759 REPLACE_WCWIDTH = @REPLACE_WCWIDTH@
760 RESTORE = @RESTORE@
761 RSH_SECURITY = @RSH_SECURITY@
762 SAMBA_CLIENT = @SAMBA_CLIENT@
763 SERVER_HOST_INSTANCE = @SERVER_HOST_INSTANCE@
764 SERVER_HOST_KEY_FILE = @SERVER_HOST_KEY_FILE@
765 SERVER_HOST_PRINCIPAL = @SERVER_HOST_PRINCIPAL@
766 SERVICE_SUFFIX = @SERVICE_SUFFIX@
767 SETUID_GROUP = @SETUID_GROUP@
768 SET_MAKE = @SET_MAKE@
769 SHELL = @SHELL@
770 SIG_ATOMIC_T_SUFFIX = @SIG_ATOMIC_T_SUFFIX@
771 SIZE_T_SUFFIX = @SIZE_T_SUFFIX@
772 SNAPSHOT_STAMP = @SNAPSHOT_STAMP@
773 SORT = @SORT@
774 SSH = @SSH@
775 SSH_SECURITY = @SSH_SECURITY@
776 STDBOOL_H = @STDBOOL_H@
777 STDINT_H = @STDINT_H@
778 STRIP = @STRIP@
779 SVN = @SVN@
780 SWIG = @SWIG@
781 SWIG_LIB = @SWIG_LIB@
782 SYS_SOCKET_H = @SYS_SOCKET_H@
783 SYS_STAT_H = @SYS_STAT_H@
784 SYS_TIME_H = @SYS_TIME_H@
785 TCPPORTRANGE = @TCPPORTRANGE@
786 TICKET_LIFETIME = @TICKET_LIFETIME@
787 UDPPORTRANGE = @UDPPORTRANGE@
788 UNCOMPRESS_OPT = @UNCOMPRESS_OPT@
789 UNCOMPRESS_PATH = @UNCOMPRESS_PATH@
790 USE_AMANDAHOSTS = @USE_AMANDAHOSTS@
791 USE_NLS = @USE_NLS@
792 USE_RUNDUMP = @USE_RUNDUMP@
793 USE_VERSION_SUFFIXES = @USE_VERSION_SUFFIXES@
794 VDUMP = @VDUMP@
795 VERSION = @VERSION@
796 VERSION_COMMENT = @VERSION_COMMENT@
797 VERSION_MAJOR = @VERSION_MAJOR@
798 VERSION_MINOR = @VERSION_MINOR@
799 VERSION_PATCH = @VERSION_PATCH@
800 VERSION_SUFFIX = @VERSION_SUFFIX@
801 VOID_UNSETENV = @VOID_UNSETENV@
802 VRESTORE = @VRESTORE@
803 VXDUMP = @VXDUMP@
804 VXRESTORE = @VXRESTORE@
805 WCHAR_H = @WCHAR_H@
806 WCHAR_T_SUFFIX = @WCHAR_T_SUFFIX@
807 WINT_T_SUFFIX = @WINT_T_SUFFIX@
808 XFSDUMP = @XFSDUMP@
809 XFSRESTORE = @XFSRESTORE@
810 XGETTEXT = @XGETTEXT@
811 XGETTEXT_015 = @XGETTEXT_015@
812 XSLREL = @XSLREL@
813 XSLTPROC = @XSLTPROC@
814 XSLTPROC_FLAGS = @XSLTPROC_FLAGS@
815 YACC = @YACC@
816 YFLAGS = @YFLAGS@
817 _libcurl_config = @_libcurl_config@
818 abs_builddir = @abs_builddir@
819 abs_srcdir = @abs_srcdir@
820 abs_top_builddir = @abs_top_builddir@
821 abs_top_srcdir = @abs_top_srcdir@
822 ac_ct_CC = @ac_ct_CC@
823 ac_ct_CXX = @ac_ct_CXX@
824 ac_ct_F77 = @ac_ct_F77@
825 am__include = @am__include@
826 am__leading_dot = @am__leading_dot@
827 am__quote = @am__quote@
828 am__tar = @am__tar@
829 am__untar = @am__untar@
830 amdatadir = @amdatadir@
831 amincludedir = @amincludedir@
832 amlibdir = @amlibdir@
833 amlibexecdir = @amlibexecdir@
834 amperldir = @amperldir@
835 bindir = @bindir@
836 build = @build@
837 build_alias = @build_alias@
838 build_cpu = @build_cpu@
839 build_os = @build_os@
840 build_vendor = @build_vendor@
841 builddir = @builddir@
842 datadir = @datadir@
843 datarootdir = @datarootdir@
844 docdir = @docdir@
845 dvidir = @dvidir@
846 exec_prefix = @exec_prefix@
847 gl_LIBOBJS = @gl_LIBOBJS@
848 gl_LTLIBOBJS = @gl_LTLIBOBJS@
849 gltests_LIBOBJS = @gltests_LIBOBJS@
850 gltests_LTLIBOBJS = @gltests_LTLIBOBJS@
851 host = @host@
852 host_alias = @host_alias@
853 host_cpu = @host_cpu@
854 host_os = @host_os@
855 host_vendor = @host_vendor@
856 htmldir = @htmldir@
857 includedir = @includedir@
858 infodir = @infodir@
859 install_sh = @install_sh@
860 libdir = @libdir@
861 libexecdir = @libexecdir@
862 localedir = @localedir@
863 localstatedir = @localstatedir@
864 mandir = @mandir@
865 mkdir_p = @mkdir_p@
866 oldincludedir = @oldincludedir@
867 pdfdir = @pdfdir@
868 prefix = @prefix@
869 program_transform_name = @program_transform_name@
870 psdir = @psdir@
871 sbindir = @sbindir@
872 sharedstatedir = @sharedstatedir@
873 srcdir = @srcdir@
874 sysconfdir = @sysconfdir@
875 target = @target@
876 target_alias = @target_alias@
877 target_cpu = @target_cpu@
878 target_os = @target_os@
879 target_vendor = @target_vendor@
880 top_build_prefix = @top_build_prefix@
881 top_builddir = @top_builddir@
882 top_srcdir = @top_srcdir@
883 SUFFIXES = 
884 EXTRA_DIST = 
885 BUILT_SOURCES = 
886 MOSTLYCLEANFILES = 
887
888 # config.status leaves config.log files around
889 CLEANFILES = config.log *.test.c
890
891 # and we'll need to clean up our generated files for distclean
892 DISTCLEANFILES = $(SCRIPTS_SHELL) $(SCRIPTS_PERL) $(SCRIPTS_AWK) \
893         $(SCRIPTS_INCLUDE) $(am__append_1)
894 MAINTAINERCLEANFILES = 
895
896 # syntax-check shell scripts on 'make check'
897 CHECK_SHELL = $(SCRIPTS_SHELL)
898
899 # sed expression to strip leading directories from a filename; this converts e.g.,
900 # src/foo/bar.so to bar.so.
901 strip_leading_dirs = s|^.*/||
902 @WANT_INSTALLPERMS_FALSE@do_file = pa="$$dest"/`echo "$$cmd"|sed '$(strip_leading_dirs)'|sed '$(transform)'`; \
903 @WANT_INSTALLPERMS_FALSE@    echo "installperm \"$$chown\" \"$$chmod\" \"$$pa\"" >> "$(installperms_sh)"
904
905
906 # define a snippet of the scripts below to either perform a chown/chmod operation,
907 # or record that operation in the logfile.  On entry to the snippet, $$dest is the
908 # destination directory, $$cmd is the srcdir-relative pathname of the target file,
909 # $$chown is the ownership, and $$chmod is the permission pattern.
910 @WANT_INSTALLPERMS_TRUE@do_file = pa="$(DESTDIR)$$dest"/`echo "$$cmd"|sed '$(strip_leading_dirs)'|sed '$(transform)'`; \
911 @WANT_INSTALLPERMS_TRUE@    if test -n "$$chown"; then \
912 @WANT_INSTALLPERMS_TRUE@        echo chown "$$chown" "$$pa"; \
913 @WANT_INSTALLPERMS_TRUE@        chown "$$chown" "$$pa" || exit 1; \
914 @WANT_INSTALLPERMS_TRUE@    fi; \
915 @WANT_INSTALLPERMS_TRUE@    if test -n "$$chmod"; then \
916 @WANT_INSTALLPERMS_TRUE@        echo chmod "$$chmod" "$$pa"; \
917 @WANT_INSTALLPERMS_TRUE@        chmod "$$chmod" "$$pa" || exit 1; \
918 @WANT_INSTALLPERMS_TRUE@    fi 
919
920 @WANT_INSTALLPERMS_FALSE@installperms_sh = "$(top_builddir)/installperms.sh"
921 INCLUDES = -I$(top_builddir)/common-src \
922                 -I$(top_srcdir)/common-src   \
923                 -I$(top_srcdir)/amandad-src  \
924                 -I$(top_srcdir)/gnulib
925
926 AM_CFLAGS = $(AMANDA_WARNING_CFLAGS)
927 AM_LDFLAGS = $(AMANDA_STATIC_LDFLAGS)
928 LINT = $(AMLINT)
929 LINTFLAGS = $(AMLINTFLAGS)
930 amlib_LTLIBRARIES = libamclient.la
931 amlibexec_SCRIPTS = patch-system
932 CHECK_PERL = $(sbin_SCRIPTS)
933 SCRIPTS_PERL = $(CHECK_PERL)
934 SCRIPTS_SHELL = $(amlibexec_SCRIPTS)
935 libamclient_la_SOURCES = amandates.c getfsent.c unctime.c \
936         client_util.c $(am__append_2)
937 libamclient_la_LDFLAGS = -release $(VERSION)
938 libamclient_la_LIBADD = ../common-src/libamanda.la
939
940 ###
941 # Because libamanda includes routines (e.g. regex) provided by some system
942 # libraries, and because of the way libtool sets up the command line, we
943 # need to list libamanda twice here, first to override the system library
944 # routines, and second to pick up any references in the other libraries.
945 ###
946 LDADD = ../common-src/libamanda.la \
947         libamclient.la \
948         ../amandad-src/libamandad.la \
949         ../common-src/libamanda.la \
950         ../gnulib/libgnu.la
951
952
953 # these are used for testing only:
954 TEST_PROGS = getfsent
955 sendbackup_SOURCES = sendbackup.c               sendbackup.h      \
956                         sendbackup-dump.c       sendbackup-gnutar.c
957
958 noinst_HEADERS = amandates.h    getfsent.h      \
959                         findpass.h      client_util.h
960
961 INSTALLPERMS_exec = chown=amanda dest=$(amlibexecdir) \
962         $(amlibexec_PROGRAMS) $(am__append_3)
963 INSTALLPERMS_data = chown=amanda \
964         dest=$(sbindir) $(sbin_SCRIPTS) \
965         dest=$(amlibexecdir) $(amlibexec_SCRIPTS)
966
967 getfsent_SOURCES = getfsent.test.c
968 all: $(BUILT_SOURCES)
969         $(MAKE) $(AM_MAKEFLAGS) all-am
970
971 .SUFFIXES:
972 .SUFFIXES: .c .lo .o .obj
973 $(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)
974         @for dep in $?; do \
975           case '$(am__configure_deps)' in \
976             *$$dep*) \
977               cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh \
978                 && exit 0; \
979               exit 1;; \
980           esac; \
981         done; \
982         echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu  client-src/Makefile'; \
983         cd $(top_srcdir) && \
984           $(AUTOMAKE) --gnu  client-src/Makefile
985 .PRECIOUS: Makefile
986 Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
987         @case '$?' in \
988           *config.status*) \
989             cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \
990           *) \
991             echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \
992             cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \
993         esac;
994
995 $(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES)
996         cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
997
998 $(top_srcdir)/configure:  $(am__configure_deps)
999         cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
1000 $(ACLOCAL_M4):  $(am__aclocal_m4_deps)
1001         cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
1002 install-amlibLTLIBRARIES: $(amlib_LTLIBRARIES)
1003         @$(NORMAL_INSTALL)
1004         test -z "$(amlibdir)" || $(MKDIR_P) "$(DESTDIR)$(amlibdir)"
1005         @list='$(amlib_LTLIBRARIES)'; for p in $$list; do \
1006           if test -f $$p; then \
1007             f=$(am__strip_dir) \
1008             echo " $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=install $(amlibLTLIBRARIES_INSTALL) $(INSTALL_STRIP_FLAG) '$$p' '$(DESTDIR)$(amlibdir)/$$f'"; \
1009             $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=install $(amlibLTLIBRARIES_INSTALL) $(INSTALL_STRIP_FLAG) "$$p" "$(DESTDIR)$(amlibdir)/$$f"; \
1010           else :; fi; \
1011         done
1012
1013 uninstall-amlibLTLIBRARIES:
1014         @$(NORMAL_UNINSTALL)
1015         @list='$(amlib_LTLIBRARIES)'; for p in $$list; do \
1016           p=$(am__strip_dir) \
1017           echo " $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=uninstall rm -f '$(DESTDIR)$(amlibdir)/$$p'"; \
1018           $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=uninstall rm -f "$(DESTDIR)$(amlibdir)/$$p"; \
1019         done
1020
1021 clean-amlibLTLIBRARIES:
1022         -test -z "$(amlib_LTLIBRARIES)" || rm -f $(amlib_LTLIBRARIES)
1023         @list='$(amlib_LTLIBRARIES)'; for p in $$list; do \
1024           dir="`echo $$p | sed -e 's|/[^/]*$$||'`"; \
1025           test "$$dir" != "$$p" || dir=.; \
1026           echo "rm -f \"$${dir}/so_locations\""; \
1027           rm -f "$${dir}/so_locations"; \
1028         done
1029 libamclient.la: $(libamclient_la_OBJECTS) $(libamclient_la_DEPENDENCIES) 
1030         $(libamclient_la_LINK) -rpath $(amlibdir) $(libamclient_la_OBJECTS) $(libamclient_la_LIBADD) $(LIBS)
1031 install-amlibexecPROGRAMS: $(amlibexec_PROGRAMS)
1032         @$(NORMAL_INSTALL)
1033         test -z "$(amlibexecdir)" || $(MKDIR_P) "$(DESTDIR)$(amlibexecdir)"
1034         @list='$(amlibexec_PROGRAMS)'; for p in $$list; do \
1035           p1=`echo $$p|sed 's/$(EXEEXT)$$//'`; \
1036           if test -f $$p \
1037              || test -f $$p1 \
1038           ; then \
1039             f=`echo "$$p1" | sed 's,^.*/,,;$(transform);s/$$/$(EXEEXT)/'`; \
1040            echo " $(INSTALL_PROGRAM_ENV) $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=install $(amlibexecPROGRAMS_INSTALL) '$$p' '$(DESTDIR)$(amlibexecdir)/$$f'"; \
1041            $(INSTALL_PROGRAM_ENV) $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=install $(amlibexecPROGRAMS_INSTALL) "$$p" "$(DESTDIR)$(amlibexecdir)/$$f" || exit 1; \
1042           else :; fi; \
1043         done
1044
1045 uninstall-amlibexecPROGRAMS:
1046         @$(NORMAL_UNINSTALL)
1047         @list='$(amlibexec_PROGRAMS)'; for p in $$list; do \
1048           f=`echo "$$p" | sed 's,^.*/,,;s/$(EXEEXT)$$//;$(transform);s/$$/$(EXEEXT)/'`; \
1049           echo " rm -f '$(DESTDIR)$(amlibexecdir)/$$f'"; \
1050           rm -f "$(DESTDIR)$(amlibexecdir)/$$f"; \
1051         done
1052
1053 clean-amlibexecPROGRAMS:
1054         @list='$(amlibexec_PROGRAMS)'; for p in $$list; do \
1055           f=`echo $$p|sed 's/$(EXEEXT)$$//'`; \
1056           echo " rm -f $$p $$f"; \
1057           rm -f $$p $$f ; \
1058         done
1059 calcsize$(EXEEXT): $(calcsize_OBJECTS) $(calcsize_DEPENDENCIES) 
1060         @rm -f calcsize$(EXEEXT)
1061         $(LINK) $(calcsize_OBJECTS) $(calcsize_LDADD) $(LIBS)
1062 getfsent$(EXEEXT): $(getfsent_OBJECTS) $(getfsent_DEPENDENCIES) 
1063         @rm -f getfsent$(EXEEXT)
1064         $(LINK) $(getfsent_OBJECTS) $(getfsent_LDADD) $(LIBS)
1065 killpgrp$(EXEEXT): $(killpgrp_OBJECTS) $(killpgrp_DEPENDENCIES) 
1066         @rm -f killpgrp$(EXEEXT)
1067         $(LINK) $(killpgrp_OBJECTS) $(killpgrp_LDADD) $(LIBS)
1068 noop$(EXEEXT): $(noop_OBJECTS) $(noop_DEPENDENCIES) 
1069         @rm -f noop$(EXEEXT)
1070         $(LINK) $(noop_OBJECTS) $(noop_LDADD) $(LIBS)
1071 rundump$(EXEEXT): $(rundump_OBJECTS) $(rundump_DEPENDENCIES) 
1072         @rm -f rundump$(EXEEXT)
1073         $(LINK) $(rundump_OBJECTS) $(rundump_LDADD) $(LIBS)
1074 runtar$(EXEEXT): $(runtar_OBJECTS) $(runtar_DEPENDENCIES) 
1075         @rm -f runtar$(EXEEXT)
1076         $(LINK) $(runtar_OBJECTS) $(runtar_LDADD) $(LIBS)
1077 selfcheck$(EXEEXT): $(selfcheck_OBJECTS) $(selfcheck_DEPENDENCIES) 
1078         @rm -f selfcheck$(EXEEXT)
1079         $(LINK) $(selfcheck_OBJECTS) $(selfcheck_LDADD) $(LIBS)
1080 sendbackup$(EXEEXT): $(sendbackup_OBJECTS) $(sendbackup_DEPENDENCIES) 
1081         @rm -f sendbackup$(EXEEXT)
1082         $(LINK) $(sendbackup_OBJECTS) $(sendbackup_LDADD) $(LIBS)
1083 sendsize$(EXEEXT): $(sendsize_OBJECTS) $(sendsize_DEPENDENCIES) 
1084         @rm -f sendsize$(EXEEXT)
1085         $(LINK) $(sendsize_OBJECTS) $(sendsize_LDADD) $(LIBS)
1086 versionsuffix$(EXEEXT): $(versionsuffix_OBJECTS) $(versionsuffix_DEPENDENCIES) 
1087         @rm -f versionsuffix$(EXEEXT)
1088         $(LINK) $(versionsuffix_OBJECTS) $(versionsuffix_LDADD) $(LIBS)
1089 install-amlibexecSCRIPTS: $(amlibexec_SCRIPTS)
1090         @$(NORMAL_INSTALL)
1091         test -z "$(amlibexecdir)" || $(MKDIR_P) "$(DESTDIR)$(amlibexecdir)"
1092         @list='$(amlibexec_SCRIPTS)'; for p in $$list; do \
1093           if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \
1094           if test -f $$d$$p; then \
1095             f=`echo "$$p" | sed 's|^.*/||;$(transform)'`; \
1096             echo " $(amlibexecSCRIPT_INSTALL) '$$d$$p' '$(DESTDIR)$(amlibexecdir)/$$f'"; \
1097             $(amlibexecSCRIPT_INSTALL) "$$d$$p" "$(DESTDIR)$(amlibexecdir)/$$f"; \
1098           else :; fi; \
1099         done
1100
1101 uninstall-amlibexecSCRIPTS:
1102         @$(NORMAL_UNINSTALL)
1103         @list='$(amlibexec_SCRIPTS)'; for p in $$list; do \
1104           f=`echo "$$p" | sed 's|^.*/||;$(transform)'`; \
1105           echo " rm -f '$(DESTDIR)$(amlibexecdir)/$$f'"; \
1106           rm -f "$(DESTDIR)$(amlibexecdir)/$$f"; \
1107         done
1108
1109 mostlyclean-compile:
1110         -rm -f *.$(OBJEXT)
1111
1112 distclean-compile:
1113         -rm -f *.tab.c
1114
1115 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/amandates.Plo@am__quote@
1116 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/calcsize.Po@am__quote@
1117 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/client_util.Plo@am__quote@
1118 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/findpass.Plo@am__quote@
1119 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/getfsent.Plo@am__quote@
1120 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/getfsent.test.Po@am__quote@
1121 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/killpgrp.Po@am__quote@
1122 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/noop.Po@am__quote@
1123 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/rundump.Po@am__quote@
1124 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/runtar.Po@am__quote@
1125 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/selfcheck.Po@am__quote@
1126 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/sendbackup-dump.Po@am__quote@
1127 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/sendbackup-gnutar.Po@am__quote@
1128 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/sendbackup.Po@am__quote@
1129 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/sendsize.Po@am__quote@
1130 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/unctime.Plo@am__quote@
1131 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/versionsuffix.Po@am__quote@
1132
1133 .c.o:
1134 @am__fastdepCC_TRUE@    $(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $<
1135 @am__fastdepCC_TRUE@    mv -f $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po
1136 @AMDEP_TRUE@@am__fastdepCC_FALSE@       source='$<' object='$@' libtool=no @AMDEPBACKSLASH@
1137 @AMDEP_TRUE@@am__fastdepCC_FALSE@       DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
1138 @am__fastdepCC_FALSE@   $(COMPILE) -c $<
1139
1140 .c.obj:
1141 @am__fastdepCC_TRUE@    $(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ `$(CYGPATH_W) '$<'`
1142 @am__fastdepCC_TRUE@    mv -f $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po
1143 @AMDEP_TRUE@@am__fastdepCC_FALSE@       source='$<' object='$@' libtool=no @AMDEPBACKSLASH@
1144 @AMDEP_TRUE@@am__fastdepCC_FALSE@       DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
1145 @am__fastdepCC_FALSE@   $(COMPILE) -c `$(CYGPATH_W) '$<'`
1146
1147 .c.lo:
1148 @am__fastdepCC_TRUE@    $(LTCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $<
1149 @am__fastdepCC_TRUE@    mv -f $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Plo
1150 @AMDEP_TRUE@@am__fastdepCC_FALSE@       source='$<' object='$@' libtool=yes @AMDEPBACKSLASH@
1151 @AMDEP_TRUE@@am__fastdepCC_FALSE@       DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
1152 @am__fastdepCC_FALSE@   $(LTCOMPILE) -c -o $@ $<
1153
1154 mostlyclean-libtool:
1155         -rm -f *.lo
1156
1157 clean-libtool:
1158         -rm -rf .libs _libs
1159
1160 ID: $(HEADERS) $(SOURCES) $(LISP) $(TAGS_FILES)
1161         list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \
1162         unique=`for i in $$list; do \
1163             if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
1164           done | \
1165           $(AWK) '{ files[$$0] = 1; nonemtpy = 1; } \
1166               END { if (nonempty) { for (i in files) print i; }; }'`; \
1167         mkid -fID $$unique
1168 tags: TAGS
1169
1170 TAGS:  $(HEADERS) $(SOURCES)  $(TAGS_DEPENDENCIES) \
1171                 $(TAGS_FILES) $(LISP)
1172         tags=; \
1173         here=`pwd`; \
1174         list='$(SOURCES) $(HEADERS)  $(LISP) $(TAGS_FILES)'; \
1175         unique=`for i in $$list; do \
1176             if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
1177           done | \
1178           $(AWK) '{ files[$$0] = 1; nonempty = 1; } \
1179               END { if (nonempty) { for (i in files) print i; }; }'`; \
1180         if test -z "$(ETAGS_ARGS)$$tags$$unique"; then :; else \
1181           test -n "$$unique" || unique=$$empty_fix; \
1182           $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \
1183             $$tags $$unique; \
1184         fi
1185 ctags: CTAGS
1186 CTAGS:  $(HEADERS) $(SOURCES)  $(TAGS_DEPENDENCIES) \
1187                 $(TAGS_FILES) $(LISP)
1188         tags=; \
1189         list='$(SOURCES) $(HEADERS)  $(LISP) $(TAGS_FILES)'; \
1190         unique=`for i in $$list; do \
1191             if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
1192           done | \
1193           $(AWK) '{ files[$$0] = 1; nonempty = 1; } \
1194               END { if (nonempty) { for (i in files) print i; }; }'`; \
1195         test -z "$(CTAGS_ARGS)$$tags$$unique" \
1196           || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \
1197              $$tags $$unique
1198
1199 GTAGS:
1200         here=`$(am__cd) $(top_builddir) && pwd` \
1201           && cd $(top_srcdir) \
1202           && gtags -i $(GTAGS_ARGS) $$here
1203
1204 distclean-tags:
1205         -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags
1206
1207 distdir: $(DISTFILES)
1208         @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
1209         topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
1210         list='$(DISTFILES)'; \
1211           dist_files=`for file in $$list; do echo $$file; done | \
1212           sed -e "s|^$$srcdirstrip/||;t" \
1213               -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \
1214         case $$dist_files in \
1215           */*) $(MKDIR_P) `echo "$$dist_files" | \
1216                            sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \
1217                            sort -u` ;; \
1218         esac; \
1219         for file in $$dist_files; do \
1220           if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \
1221           if test -d $$d/$$file; then \
1222             dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \
1223             if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \
1224               cp -pR $(srcdir)/$$file $(distdir)$$dir || exit 1; \
1225             fi; \
1226             cp -pR $$d/$$file $(distdir)$$dir || exit 1; \
1227           else \
1228             test -f $(distdir)/$$file \
1229             || cp -p $$d/$$file $(distdir)/$$file \
1230             || exit 1; \
1231           fi; \
1232         done
1233         $(MAKE) $(AM_MAKEFLAGS) \
1234           top_distdir="$(top_distdir)" distdir="$(distdir)" \
1235           dist-hook
1236 check-am: all-am
1237         $(MAKE) $(AM_MAKEFLAGS) check-local
1238 check: $(BUILT_SOURCES)
1239         $(MAKE) $(AM_MAKEFLAGS) check-am
1240 all-am: Makefile $(LTLIBRARIES) $(PROGRAMS) $(SCRIPTS) $(HEADERS)
1241 installdirs:
1242         for dir in "$(DESTDIR)$(amlibdir)" "$(DESTDIR)$(amlibexecdir)" "$(DESTDIR)$(amlibexecdir)"; do \
1243           test -z "$$dir" || $(MKDIR_P) "$$dir"; \
1244         done
1245 install: $(BUILT_SOURCES)
1246         $(MAKE) $(AM_MAKEFLAGS) install-am
1247 install-exec: install-exec-am
1248 install-data: install-data-am
1249 uninstall: uninstall-am
1250
1251 install-am: all-am
1252         @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am
1253
1254 installcheck: installcheck-am
1255 install-strip:
1256         $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \
1257           install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \
1258           `test -z '$(STRIP)' || \
1259             echo "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'"` install
1260 mostlyclean-generic:
1261         -test -z "$(MOSTLYCLEANFILES)" || rm -f $(MOSTLYCLEANFILES)
1262
1263 clean-generic:
1264         -test -z "$(CLEANFILES)" || rm -f $(CLEANFILES)
1265
1266 distclean-generic:
1267         -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES)
1268         -test -z "$(DISTCLEANFILES)" || rm -f $(DISTCLEANFILES)
1269
1270 maintainer-clean-generic:
1271         @echo "This command is intended for maintainers to use"
1272         @echo "it deletes files that may require special tools to rebuild."
1273         -test -z "$(BUILT_SOURCES)" || rm -f $(BUILT_SOURCES)
1274         -test -z "$(MAINTAINERCLEANFILES)" || rm -f $(MAINTAINERCLEANFILES)
1275 clean: clean-am
1276
1277 clean-am: clean-amlibLTLIBRARIES clean-amlibexecPROGRAMS clean-generic \
1278         clean-libtool mostlyclean-am
1279
1280 distclean: distclean-am
1281         -rm -rf ./$(DEPDIR)
1282         -rm -f Makefile
1283 distclean-am: clean-am distclean-compile distclean-generic \
1284         distclean-tags
1285
1286 dvi: dvi-am
1287
1288 dvi-am:
1289
1290 html: html-am
1291
1292 info: info-am
1293
1294 info-am:
1295
1296 install-data-am: install-amlibLTLIBRARIES
1297         @$(NORMAL_INSTALL)
1298         $(MAKE) $(AM_MAKEFLAGS) install-data-hook
1299
1300 install-dvi: install-dvi-am
1301
1302 install-exec-am: install-amlibexecPROGRAMS install-amlibexecSCRIPTS
1303         @$(NORMAL_INSTALL)
1304         $(MAKE) $(AM_MAKEFLAGS) install-exec-hook
1305
1306 install-html: install-html-am
1307
1308 install-info: install-info-am
1309
1310 install-man:
1311
1312 install-pdf: install-pdf-am
1313
1314 install-ps: install-ps-am
1315
1316 installcheck-am: installcheck-local
1317
1318 maintainer-clean: maintainer-clean-am
1319         -rm -rf ./$(DEPDIR)
1320         -rm -f Makefile
1321 maintainer-clean-am: distclean-am maintainer-clean-generic
1322
1323 mostlyclean: mostlyclean-am
1324
1325 mostlyclean-am: mostlyclean-compile mostlyclean-generic \
1326         mostlyclean-libtool
1327
1328 pdf: pdf-am
1329
1330 pdf-am:
1331
1332 ps: ps-am
1333
1334 ps-am:
1335
1336 uninstall-am: uninstall-amlibLTLIBRARIES uninstall-amlibexecPROGRAMS \
1337         uninstall-amlibexecSCRIPTS
1338
1339 .MAKE: install-am install-data-am install-exec-am install-strip
1340
1341 .PHONY: CTAGS GTAGS all all-am check check-am check-local clean \
1342         clean-amlibLTLIBRARIES clean-amlibexecPROGRAMS clean-generic \
1343         clean-libtool ctags dist-hook distclean distclean-compile \
1344         distclean-generic distclean-libtool distclean-tags distdir dvi \
1345         dvi-am html html-am info info-am install install-am \
1346         install-amlibLTLIBRARIES install-amlibexecPROGRAMS \
1347         install-amlibexecSCRIPTS install-data install-data-am \
1348         install-data-hook install-dvi install-dvi-am install-exec \
1349         install-exec-am install-exec-hook install-html install-html-am \
1350         install-info install-info-am install-man install-pdf \
1351         install-pdf-am install-ps install-ps-am install-strip \
1352         installcheck installcheck-am installcheck-local installdirs \
1353         maintainer-clean maintainer-clean-generic mostlyclean \
1354         mostlyclean-compile mostlyclean-generic mostlyclean-libtool \
1355         pdf pdf-am ps ps-am tags uninstall uninstall-am \
1356         uninstall-amlibLTLIBRARIES uninstall-amlibexecPROGRAMS \
1357         uninstall-amlibexecSCRIPTS
1358
1359
1360 # Perl
1361 %: %.pl $(top_builddir)/config.status
1362         $(top_builddir)/config.status --file=$@:$<
1363         chmod a+x $@
1364         @if test -f $(top_builddir)/perl/.libs/libCmdline.so -o -f $(top_builddir)/perl/libCmdline.so; then \
1365                 grep -v '^use lib' $@ > $@.nouselib; \
1366                 $(PERL) $(CHECK_PERL_FLAGS) -I$(top_builddir)/perl -I$(top_builddir)/perl/.libs -I$(top_srcdir)/perl -c -w -T $@.nouselib || exit 1; \
1367                 rm $@.nouselib; \
1368         fi
1369
1370 %.pl: %.pl.in $(top_builddir)/config.status
1371         $(top_builddir)/config.status --file=$@:$<
1372
1373 %.pm: %.pm.in $(top_builddir)/config.status
1374         $(top_builddir)/config.status --file=$@:$<
1375
1376 # Shell
1377 %: %.sh $(top_builddir)/config.status
1378         $(top_builddir)/config.status --file=$@:$<
1379         chmod a+x $@
1380
1381 %.sh: %.sh.in $(top_builddir)/config.status
1382         $(top_builddir)/config.status --file=$@:$<
1383
1384 # Awk
1385 %: %.awk $(top_builddir)/config.status
1386         $(top_builddir)/config.status --file=$@:$<
1387         chmod a+x $@
1388
1389 %.awk: %.awk.in $(top_builddir)/config.status
1390         $(top_builddir)/config.status --file=$@:$<
1391
1392 # syntax-check perl scripts on 'make check'
1393 check-perl: $(CHECK_PERL)
1394         @CHECK_PERL="$(CHECK_PERL)"; \
1395         if test -f $(top_builddir)/perl/.libs/libCmdline.so -o -f $(top_builddir)/perl/libCmdline.so; then \
1396                 if test -n "$(PERL)"; then \
1397                         for perlobj in $$CHECK_PERL; do \
1398                                 grep -v '^use lib' $$perlobj > $$perlobj.nouselib; \
1399                                 $(PERL) $(CHECK_PERL_FLAGS) -I$(top_builddir)/perl -I$(top_builddir)/perl/.libs -I$(top_srcdir)/perl -c -w -T $$perlobj.nouselib || exit 1; \
1400                                 rm $$perlobj.nouselib; \
1401                         done; \
1402                 fi \
1403         fi
1404 check-local: check-perl
1405
1406 # syntax-check perl scripts on 'make installcheck'
1407 installcheck-perl: $(CHECK_PERL)
1408         @CHECK_PERL="$(CHECK_PERL)"; \
1409         if test -n "$(PERL)"; then \
1410                 for perlobj in $$CHECK_PERL; do \
1411                         $(PERL) $(CHECK_PERL_FLAGS) -c -w -T $$perlobj || exit 1; \
1412                 done; \
1413         fi
1414 installcheck-local: installcheck-perl
1415 check-shell: $(CHECK_SHELL)
1416         @CHECK_SHELL="$(CHECK_SHELL)"; \
1417         if test -n "$$CHECK_SHELL"; then \
1418                 if test -n "$(BASH)"; then \
1419                         for shobj in $$CHECK_SHELL; do \
1420                                 if $(BASH) -n $$shobj; then \
1421                                         echo "$$shobj syntax OK"; \
1422                                 else \
1423                                         echo "$$shobj syntax error"; \
1424                                         exit 1; \
1425                                 fi; \
1426                         done; \
1427                 else \
1428                         echo "No 'bash' available -- cannot syntax-check shell scripts"; \
1429                 fi; \
1430         fi
1431 check-local: check-shell
1432
1433 # make sure that the sources for all shell and perl scripts get included
1434 # in the distribution
1435 dist-scripts:
1436         SCRIPTS_PERL="$(SCRIPTS_PERL)"; SCRIPTS_SHELL="$(SCRIPTS_SHELL)"; SCRIPTS_AWK="$(SCRIPTS_AWK)"; \
1437         for script in $$SCRIPTS_PERL; do \
1438                 test -f $(srcdir)/$${script}.pl && { cp -p $(srcdir)/$${script}.pl $(distdir)/ || exit 1; } \
1439         done; \
1440         for script in $$SCRIPTS_SHELL; do \
1441                 test -f $(srcdir)/$${script}.sh && { cp -p $(srcdir)/$${script}.sh $(distdir)/ || exit 1; } \
1442         done; \
1443         for script in $$SCRIPTS_AWK; do \
1444                 test -f $(srcdir)/$${script}.awk && { cp -p $(srcdir)/$${script}.awk $(distdir)/ || exit 1; } \
1445         done; \
1446         for script in $$SCRIPTS_SHELL $$SCRIPTS_PERL $$SCRIPTS_AWK; do \
1447                 test -f $(srcdir)/$${script}.in && { cp -p $(srcdir)/$${script}.in $(distdir)/ || exit 1; } \
1448         done; \
1449         true
1450 dist-hook: dist-scripts
1451
1452 installperms-exec:
1453         @installperms="$(INSTALLPERMS_exec)"; \
1454         test -n "$$installperms" && echo "Setting installation permissions on executables"; \
1455         dest=; chown=; chmod=; \
1456         for cmd in $$installperms; do \
1457             case "$$cmd" in \
1458                 chown=amanda) \
1459                         echo "  ($$cmd)"; chown="$(BINARY_OWNER):$(SETUID_GROUP)";; \
1460                 dest=*|chown=*|chmod=*) \
1461                         echo "  ($$cmd)"; eval $$cmd;; \
1462                 *) $(do_file) ;; \
1463             esac; \
1464         done
1465
1466 installperms-data:
1467         @installperms="$(INSTALLPERMS_data)"; \
1468         dest=; chown=; chmod=; \
1469         for cmd in $$installperms; do \
1470             case "$$cmd" in \
1471                 chown=amanda) \
1472                         echo "  ($$cmd)"; chown="$(BINARY_OWNER):$(SETUID_GROUP)";; \
1473                 dest=*|chown=*|chmod=*) \
1474                         echo "  ($$cmd)"; eval $$cmd;; \
1475                 *)  $(do_file) ;; \
1476             esac; \
1477         done
1478
1479 install-exec-hook: installperms-exec
1480 install-data-hook: installperms-data
1481
1482 # define a rule to initialize the installperms manifest file
1483 @WANT_INSTALLPERMS_TRUE@installperms-init:
1484 @WANT_INSTALLPERMS_FALSE@installperms-init:
1485 @WANT_INSTALLPERMS_FALSE@       rm -f "$(installperms_sh)"
1486
1487 # A rule to make precompiler output from C files.  This is not used during
1488 # ordinary builds, but but can very useful in debugging problems on strange
1489 # architectures.  With this rule, we can ask users to 'make foo.i' and send
1490 # the result to us.
1491 #
1492 # It touches some automake internals ($COMPILE), but since it's not
1493 # build-critical, that's OK.
1494 %.i : %.c
1495         $(COMPILE) -E -o $@ $<
1496
1497 lint:
1498         @ for p in $(amlibexec_PROGRAMS); do                                    \
1499                 p=`basename $$p $(EXEEXT)`;                                     \
1500                 f="$$p.c $(libamclient_la_SOURCES)";                            \
1501                 (cd ../common-src; make listlibsrc);                            \
1502                 f="$$f "`cat ../common-src/listlibsrc.output`;                  \
1503                 echo $(LINT) $$f;                                               \
1504                 $(LINT) $(LINTFLAGS) $(CPPFLAGS) $(DEFS) -I. -I$(top_builddir)/config   \
1505                     $(INCLUDES) $$f;                                            \
1506                 if [ $$? -ne 0 ]; then                                          \
1507                     exit 1;                                                     \
1508                 fi;                                                             \
1509         done;                                                                   \
1510         exit 0
1511
1512 %.test.c: $(srcdir)/%.c
1513         echo '#define TEST' >$@
1514         echo '#include "$<"' >>$@
1515 # Tell versions [3.59,3.63) of GNU make to not export all variables.
1516 # Otherwise a system limit (for SysV at least) may be exceeded.
1517 .NOEXPORT: