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