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