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