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