6a96e890d94b9d76f191a0a0250ea03396a4fc17
[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 am__EXEEXT_1 = xfer-test$(EXEEXT)
319 PROGRAMS = $(noinst_PROGRAMS)
320 am_xfer_test_OBJECTS = xfer-test.$(OBJEXT)
321 xfer_test_OBJECTS = $(am_xfer_test_OBJECTS)
322 xfer_test_DEPENDENCIES = ../common-src/libtestutils.la libamxfer.la
323 DEFAULT_INCLUDES = -I.@am__isrc@ -I$(top_builddir)/config
324 depcomp = $(SHELL) $(top_srcdir)/config/depcomp
325 am__depfiles_maybe = depfiles
326 COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \
327         $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS)
328 LTCOMPILE = $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) \
329         --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) \
330         $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS)
331 CCLD = $(CC)
332 LINK = $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) \
333         --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) $(AM_LDFLAGS) \
334         $(LDFLAGS) -o $@
335 SOURCES = $(libamxfer_la_SOURCES) $(xfer_test_SOURCES)
336 DIST_SOURCES = $(libamxfer_la_SOURCES) $(xfer_test_SOURCES)
337 HEADERS = $(noinst_HEADERS)
338 ETAGS = etags
339 CTAGS = ctags
340 DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST)
341 ACLOCAL = @ACLOCAL@
342 AIX_BACKUP = @AIX_BACKUP@
343 ALLOCA = @ALLOCA@
344 ALLOCA_H = @ALLOCA_H@
345 AMANDA_DBGDIR = @AMANDA_DBGDIR@
346 AMANDA_DEBUG_DAYS = @AMANDA_DEBUG_DAYS@
347 AMANDA_STATIC_LDFLAGS = @AMANDA_STATIC_LDFLAGS@
348 AMANDA_TMPDIR = @AMANDA_TMPDIR@
349 AMANDA_WARNING_CFLAGS = @AMANDA_WARNING_CFLAGS@
350 AMLINT = @AMLINT@
351 AMLINTFLAGS = @AMLINTFLAGS@
352 AMPLOT_CAT_COMPRESS = @AMPLOT_CAT_COMPRESS@
353 AMPLOT_CAT_GZIP = @AMPLOT_CAT_GZIP@
354 AMPLOT_CAT_PACK = @AMPLOT_CAT_PACK@
355 AMPLOT_COMPRESS = @AMPLOT_COMPRESS@
356 AMTAR = @AMTAR@
357 APPLICATION_DIR = @APPLICATION_DIR@
358 AR = @AR@
359 ARPA_INET_H = @ARPA_INET_H@
360 ASSERTIONS = @ASSERTIONS@
361 AUTOCONF = @AUTOCONF@
362 AUTOHEADER = @AUTOHEADER@
363 AUTOMAKE = @AUTOMAKE@
364 AWK = @AWK@
365 BASH = @BASH@
366 BINARY_OWNER = @BINARY_OWNER@
367 BITSIZEOF_PTRDIFF_T = @BITSIZEOF_PTRDIFF_T@
368 BITSIZEOF_SIG_ATOMIC_T = @BITSIZEOF_SIG_ATOMIC_T@
369 BITSIZEOF_SIZE_T = @BITSIZEOF_SIZE_T@
370 BITSIZEOF_WCHAR_T = @BITSIZEOF_WCHAR_T@
371 BITSIZEOF_WINT_T = @BITSIZEOF_WINT_T@
372 BSDTCP_SECURITY = @BSDTCP_SECURITY@
373 BSDUDP_SECURITY = @BSDUDP_SECURITY@
374 BSD_SECURITY = @BSD_SECURITY@
375 CAT = @CAT@
376 CC = @CC@
377 CCDEPMODE = @CCDEPMODE@
378 CFLAGS = @CFLAGS@
379 CFLAG_VISIBILITY = @CFLAG_VISIBILITY@
380 CHECK_USERID = @CHECK_USERID@
381 CHIO = @CHIO@
382 CHS = @CHS@
383 CLIENT_HOST_INSTANCE = @CLIENT_HOST_INSTANCE@
384 CLIENT_HOST_KEY_FILE = @CLIENT_HOST_KEY_FILE@
385 CLIENT_HOST_PRINCIPAL = @CLIENT_HOST_PRINCIPAL@
386 CLIENT_LOGIN = @CLIENT_LOGIN@
387 CLIENT_SCRIPTS_OPT = @CLIENT_SCRIPTS_OPT@
388 COMPRESS = @COMPRESS@
389 COMPRESS_BEST_OPT = @COMPRESS_BEST_OPT@
390 COMPRESS_FAST_OPT = @COMPRESS_FAST_OPT@
391 COMPRESS_PATH = @COMPRESS_PATH@
392 COMPRESS_SUFFIX = @COMPRESS_SUFFIX@
393 CONFIG_CLOBBER_MY_CONFIG = @CONFIG_CLOBBER_MY_CONFIG@
394 CONFIG_DIR = @CONFIG_DIR@
395 CPP = @CPP@
396 CPPFLAGS = @CPPFLAGS@
397 CURL_CONFIG = @CURL_CONFIG@
398 CXX = @CXX@
399 CXXCPP = @CXXCPP@
400 CXXDEPMODE = @CXXDEPMODE@
401 CXXFLAGS = @CXXFLAGS@
402 CYGPATH_W = @CYGPATH_W@
403 DD = @DD@
404 DEFAULT_AMANDATES_FILE = @DEFAULT_AMANDATES_FILE@
405 DEFAULT_CHANGER_DEVICE = @DEFAULT_CHANGER_DEVICE@
406 DEFAULT_CONFIG = @DEFAULT_CONFIG@
407 DEFAULT_MAILER = @DEFAULT_MAILER@
408 DEFAULT_SERVER = @DEFAULT_SERVER@
409 DEFAULT_TAPE_DEVICE = @DEFAULT_TAPE_DEVICE@
410 DEFAULT_TAPE_SERVER = @DEFAULT_TAPE_SERVER@
411 DEFS = @DEFS@
412 DEPDIR = @DEPDIR@
413 DOC_BUILD_DATE = @DOC_BUILD_DATE@
414 DUMP = @DUMP@
415 DUMP_RETURNS_1 = @DUMP_RETURNS_1@
416 ECHO = @ECHO@
417 ECHO_C = @ECHO_C@
418 ECHO_N = @ECHO_N@
419 ECHO_T = @ECHO_T@
420 EGREP = @EGREP@
421 EOVERFLOW = @EOVERFLOW@
422 EXAMPLE_TAPEDEV = @EXAMPLE_TAPEDEV@
423 EXEEXT = @EXEEXT@
424 F77 = @F77@
425 FFLAGS = @FFLAGS@
426 FLOAT_H = @FLOAT_H@
427 GETCONF = @GETCONF@
428 GETOPT_H = @GETOPT_H@
429 GETTEXT = @GETTEXT@
430 GLIB_CFLAGS = @GLIB_CFLAGS@
431 GLIB_GENMARSHAL = @GLIB_GENMARSHAL@
432 GLIB_LIBS = @GLIB_LIBS@
433 GLIB_MKENUMS = @GLIB_MKENUMS@
434 GMSGFMT = @GMSGFMT@
435 GMSGFMT_015 = @GMSGFMT_015@
436 GNULIB_CALLOC_POSIX = @GNULIB_CALLOC_POSIX@
437 GNULIB_CHOWN = @GNULIB_CHOWN@
438 GNULIB_DUP2 = @GNULIB_DUP2@
439 GNULIB_ENVIRON = @GNULIB_ENVIRON@
440 GNULIB_FCHDIR = @GNULIB_FCHDIR@
441 GNULIB_FFLUSH = @GNULIB_FFLUSH@
442 GNULIB_FOPEN = @GNULIB_FOPEN@
443 GNULIB_FPRINTF_POSIX = @GNULIB_FPRINTF_POSIX@
444 GNULIB_FREOPEN = @GNULIB_FREOPEN@
445 GNULIB_FSEEK = @GNULIB_FSEEK@
446 GNULIB_FSEEKO = @GNULIB_FSEEKO@
447 GNULIB_FTELL = @GNULIB_FTELL@
448 GNULIB_FTELLO = @GNULIB_FTELLO@
449 GNULIB_FTRUNCATE = @GNULIB_FTRUNCATE@
450 GNULIB_GETCWD = @GNULIB_GETCWD@
451 GNULIB_GETDELIM = @GNULIB_GETDELIM@
452 GNULIB_GETLINE = @GNULIB_GETLINE@
453 GNULIB_GETLOGIN_R = @GNULIB_GETLOGIN_R@
454 GNULIB_GETPAGESIZE = @GNULIB_GETPAGESIZE@
455 GNULIB_GETSUBOPT = @GNULIB_GETSUBOPT@
456 GNULIB_LCHOWN = @GNULIB_LCHOWN@
457 GNULIB_LSEEK = @GNULIB_LSEEK@
458 GNULIB_MALLOC_POSIX = @GNULIB_MALLOC_POSIX@
459 GNULIB_MBSCASECMP = @GNULIB_MBSCASECMP@
460 GNULIB_MBSCASESTR = @GNULIB_MBSCASESTR@
461 GNULIB_MBSCHR = @GNULIB_MBSCHR@
462 GNULIB_MBSCSPN = @GNULIB_MBSCSPN@
463 GNULIB_MBSLEN = @GNULIB_MBSLEN@
464 GNULIB_MBSNCASECMP = @GNULIB_MBSNCASECMP@
465 GNULIB_MBSNLEN = @GNULIB_MBSNLEN@
466 GNULIB_MBSPBRK = @GNULIB_MBSPBRK@
467 GNULIB_MBSPCASECMP = @GNULIB_MBSPCASECMP@
468 GNULIB_MBSRCHR = @GNULIB_MBSRCHR@
469 GNULIB_MBSSEP = @GNULIB_MBSSEP@
470 GNULIB_MBSSPN = @GNULIB_MBSSPN@
471 GNULIB_MBSSTR = @GNULIB_MBSSTR@
472 GNULIB_MBSTOK_R = @GNULIB_MBSTOK_R@
473 GNULIB_MEMMEM = @GNULIB_MEMMEM@
474 GNULIB_MEMPCPY = @GNULIB_MEMPCPY@
475 GNULIB_MEMRCHR = @GNULIB_MEMRCHR@
476 GNULIB_MKDTEMP = @GNULIB_MKDTEMP@
477 GNULIB_MKSTEMP = @GNULIB_MKSTEMP@
478 GNULIB_PRINTF_POSIX = @GNULIB_PRINTF_POSIX@
479 GNULIB_PUTENV = @GNULIB_PUTENV@
480 GNULIB_READLINK = @GNULIB_READLINK@
481 GNULIB_REALLOC_POSIX = @GNULIB_REALLOC_POSIX@
482 GNULIB_SETENV = @GNULIB_SETENV@
483 GNULIB_SLEEP = @GNULIB_SLEEP@
484 GNULIB_SNPRINTF = @GNULIB_SNPRINTF@
485 GNULIB_SPRINTF_POSIX = @GNULIB_SPRINTF_POSIX@
486 GNULIB_STPCPY = @GNULIB_STPCPY@
487 GNULIB_STPNCPY = @GNULIB_STPNCPY@
488 GNULIB_STRCASESTR = @GNULIB_STRCASESTR@
489 GNULIB_STRCHRNUL = @GNULIB_STRCHRNUL@
490 GNULIB_STRDUP = @GNULIB_STRDUP@
491 GNULIB_STRERROR = @GNULIB_STRERROR@
492 GNULIB_STRNDUP = @GNULIB_STRNDUP@
493 GNULIB_STRNLEN = @GNULIB_STRNLEN@
494 GNULIB_STRPBRK = @GNULIB_STRPBRK@
495 GNULIB_STRSEP = @GNULIB_STRSEP@
496 GNULIB_STRSIGNAL = @GNULIB_STRSIGNAL@
497 GNULIB_STRSTR = @GNULIB_STRSTR@
498 GNULIB_STRTOK_R = @GNULIB_STRTOK_R@
499 GNULIB_UNSETENV = @GNULIB_UNSETENV@
500 GNULIB_VASPRINTF = @GNULIB_VASPRINTF@
501 GNULIB_VFPRINTF_POSIX = @GNULIB_VFPRINTF_POSIX@
502 GNULIB_VPRINTF_POSIX = @GNULIB_VPRINTF_POSIX@
503 GNULIB_VSNPRINTF = @GNULIB_VSNPRINTF@
504 GNULIB_VSPRINTF_POSIX = @GNULIB_VSPRINTF_POSIX@
505 GNULIB_WCWIDTH = @GNULIB_WCWIDTH@
506 GNUPLOT = @GNUPLOT@
507 GNUTAR = @GNUTAR@
508 GNUTAR_LISTED_INCREMENTAL_DIR = @GNUTAR_LISTED_INCREMENTAL_DIR@
509 GOBJECT_QUERY = @GOBJECT_QUERY@
510 GREP = @GREP@
511 GZIP = @GZIP@
512 HAVE_CALLOC_POSIX = @HAVE_CALLOC_POSIX@
513 HAVE_DECL_ENVIRON = @HAVE_DECL_ENVIRON@
514 HAVE_DECL_GETDELIM = @HAVE_DECL_GETDELIM@
515 HAVE_DECL_GETLINE = @HAVE_DECL_GETLINE@
516 HAVE_DECL_GETLOGIN_R = @HAVE_DECL_GETLOGIN_R@
517 HAVE_DECL_MEMMEM = @HAVE_DECL_MEMMEM@
518 HAVE_DECL_MEMRCHR = @HAVE_DECL_MEMRCHR@
519 HAVE_DECL_MKDIR = @HAVE_DECL_MKDIR@
520 HAVE_DECL_SNPRINTF = @HAVE_DECL_SNPRINTF@
521 HAVE_DECL_STRDUP = @HAVE_DECL_STRDUP@
522 HAVE_DECL_STRERROR = @HAVE_DECL_STRERROR@
523 HAVE_DECL_STRNDUP = @HAVE_DECL_STRNDUP@
524 HAVE_DECL_STRNLEN = @HAVE_DECL_STRNLEN@
525 HAVE_DECL_STRSIGNAL = @HAVE_DECL_STRSIGNAL@
526 HAVE_DECL_STRTOK_R = @HAVE_DECL_STRTOK_R@
527 HAVE_DECL_VSNPRINTF = @HAVE_DECL_VSNPRINTF@
528 HAVE_DECL_WCWIDTH = @HAVE_DECL_WCWIDTH@
529 HAVE_DUP2 = @HAVE_DUP2@
530 HAVE_FSEEKO = @HAVE_FSEEKO@
531 HAVE_FTELLO = @HAVE_FTELLO@
532 HAVE_FTRUNCATE = @HAVE_FTRUNCATE@
533 HAVE_GETPAGESIZE = @HAVE_GETPAGESIZE@
534 HAVE_GETSUBOPT = @HAVE_GETSUBOPT@
535 HAVE_GZIP = @HAVE_GZIP@
536 HAVE_INTTYPES_H = @HAVE_INTTYPES_H@
537 HAVE_IO_H = @HAVE_IO_H@
538 HAVE_LONG_LONG_INT = @HAVE_LONG_LONG_INT@
539 HAVE_LSTAT = @HAVE_LSTAT@
540 HAVE_MALLOC_POSIX = @HAVE_MALLOC_POSIX@
541 HAVE_MEMPCPY = @HAVE_MEMPCPY@
542 HAVE_MKDTEMP = @HAVE_MKDTEMP@
543 HAVE_NETINET_IN_H = @HAVE_NETINET_IN_H@
544 HAVE_OS_H = @HAVE_OS_H@
545 HAVE_READLINK = @HAVE_READLINK@
546 HAVE_REALLOC_POSIX = @HAVE_REALLOC_POSIX@
547 HAVE_SETENV = @HAVE_SETENV@
548 HAVE_SIGNED_SIG_ATOMIC_T = @HAVE_SIGNED_SIG_ATOMIC_T@
549 HAVE_SIGNED_WCHAR_T = @HAVE_SIGNED_WCHAR_T@
550 HAVE_SIGNED_WINT_T = @HAVE_SIGNED_WINT_T@
551 HAVE_SLEEP = @HAVE_SLEEP@
552 HAVE_STDINT_H = @HAVE_STDINT_H@
553 HAVE_STPCPY = @HAVE_STPCPY@
554 HAVE_STPNCPY = @HAVE_STPNCPY@
555 HAVE_STRCASESTR = @HAVE_STRCASESTR@
556 HAVE_STRCHRNUL = @HAVE_STRCHRNUL@
557 HAVE_STRNDUP = @HAVE_STRNDUP@
558 HAVE_STRPBRK = @HAVE_STRPBRK@
559 HAVE_STRSEP = @HAVE_STRSEP@
560 HAVE_STRUCT_TIMEVAL = @HAVE_STRUCT_TIMEVAL@
561 HAVE_SYS_BITYPES_H = @HAVE_SYS_BITYPES_H@
562 HAVE_SYS_INTTYPES_H = @HAVE_SYS_INTTYPES_H@
563 HAVE_SYS_PARAM_H = @HAVE_SYS_PARAM_H@
564 HAVE_SYS_SOCKET_H = @HAVE_SYS_SOCKET_H@
565 HAVE_SYS_TIME_H = @HAVE_SYS_TIME_H@
566 HAVE_SYS_TYPES_H = @HAVE_SYS_TYPES_H@
567 HAVE_UNISTD_H = @HAVE_UNISTD_H@
568 HAVE_UNSETENV = @HAVE_UNSETENV@
569 HAVE_UNSIGNED_LONG_LONG_INT = @HAVE_UNSIGNED_LONG_LONG_INT@
570 HAVE_VASPRINTF = @HAVE_VASPRINTF@
571 HAVE_VISIBILITY = @HAVE_VISIBILITY@
572 HAVE_WCHAR_H = @HAVE_WCHAR_H@
573 HAVE_WINSOCK2_H = @HAVE_WINSOCK2_H@
574 HAVE_WS2TCPIP_H = @HAVE_WS2TCPIP_H@
575 HAVE__BOOL = @HAVE__BOOL@
576 INCLUDE_NEXT = @INCLUDE_NEXT@
577 INSTALL = @INSTALL@
578 INSTALL_DATA = @INSTALL_DATA@
579 INSTALL_PROGRAM = @INSTALL_PROGRAM@
580 INSTALL_SCRIPT = @INSTALL_SCRIPT@
581 INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@
582 INTLLIBS = @INTLLIBS@
583 INTL_MACOSX_LIBS = @INTL_MACOSX_LIBS@
584 KRB4_SECURITY = @KRB4_SECURITY@
585 KRB5_SECURITY = @KRB5_SECURITY@
586 LDFLAGS = @LDFLAGS@
587 LEX = @LEX@
588 LEXLIB = @LEXLIB@
589 LEX_OUTPUT_ROOT = @LEX_OUTPUT_ROOT@
590 LIBCURL = @LIBCURL@
591 LIBCURL_CPPFLAGS = @LIBCURL_CPPFLAGS@
592 LIBICONV = @LIBICONV@
593 LIBINTL = @LIBINTL@
594 LIBMULTITHREAD = @LIBMULTITHREAD@
595 LIBOBJS = @LIBOBJS@
596 LIBPTH = @LIBPTH@
597 LIBS = @LIBS@
598 LIBTHREAD = @LIBTHREAD@
599 LIBTOOL = @LIBTOOL@
600 LIBTOOL_DEPS = @LIBTOOL_DEPS@
601 LN_S = @LN_S@
602 LOCKING = @LOCKING@
603 LOW_TCPPORTRANGE = @LOW_TCPPORTRANGE@
604 LTLIBICONV = @LTLIBICONV@
605 LTLIBINTL = @LTLIBINTL@
606 LTLIBMULTITHREAD = @LTLIBMULTITHREAD@
607 LTLIBOBJS = @LTLIBOBJS@
608 LTLIBPTH = @LTLIBPTH@
609 LTLIBTHREAD = @LTLIBTHREAD@
610 MAILER = @MAILER@
611 MAKEINFO = @MAKEINFO@
612 MCUTIL = @MCUTIL@
613 MKDIR_P = @MKDIR_P@
614 MSGFMT = @MSGFMT@
615 MSGFMT_015 = @MSGFMT_015@
616 MSGMERGE = @MSGMERGE@
617 MT = @MT@
618 MTX = @MTX@
619 MT_FILE_FLAG = @MT_FILE_FLAG@
620 NETINET_IN_H = @NETINET_IN_H@
621 NEXT_FLOAT_H = @NEXT_FLOAT_H@
622 NEXT_NETINET_IN_H = @NEXT_NETINET_IN_H@
623 NEXT_STDINT_H = @NEXT_STDINT_H@
624 NEXT_STDIO_H = @NEXT_STDIO_H@
625 NEXT_STDLIB_H = @NEXT_STDLIB_H@
626 NEXT_STRING_H = @NEXT_STRING_H@
627 NEXT_SYS_SOCKET_H = @NEXT_SYS_SOCKET_H@
628 NEXT_SYS_STAT_H = @NEXT_SYS_STAT_H@
629 NEXT_SYS_TIME_H = @NEXT_SYS_TIME_H@
630 NEXT_UNISTD_H = @NEXT_UNISTD_H@
631 NEXT_WCHAR_H = @NEXT_WCHAR_H@
632 OBJEXT = @OBJEXT@
633 PACKAGE = @PACKAGE@
634 PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@
635 PACKAGE_NAME = @PACKAGE_NAME@
636 PACKAGE_STRING = @PACKAGE_STRING@
637 PACKAGE_TARNAME = @PACKAGE_TARNAME@
638 PACKAGE_VERSION = @PACKAGE_VERSION@
639 PATH_SEPARATOR = @PATH_SEPARATOR@
640 PCAT = @PCAT@
641 PERL = @PERL@
642 PERLEXTLIBS = @PERLEXTLIBS@
643 PERL_INC = @PERL_INC@
644 PKG_CONFIG = @PKG_CONFIG@
645 POSUB = @POSUB@
646 PRINT = @PRINT@
647 PS = @PS@
648 PS_ARGUMENT = @PS_ARGUMENT@
649 PTRDIFF_T_SUFFIX = @PTRDIFF_T_SUFFIX@
650 RANLIB = @RANLIB@
651 READLINE_LIBS = @READLINE_LIBS@
652 REPLACE_CHOWN = @REPLACE_CHOWN@
653 REPLACE_FCHDIR = @REPLACE_FCHDIR@
654 REPLACE_FFLUSH = @REPLACE_FFLUSH@
655 REPLACE_FOPEN = @REPLACE_FOPEN@
656 REPLACE_FPRINTF = @REPLACE_FPRINTF@
657 REPLACE_FREOPEN = @REPLACE_FREOPEN@
658 REPLACE_FSEEK = @REPLACE_FSEEK@
659 REPLACE_FSEEKO = @REPLACE_FSEEKO@
660 REPLACE_FTELL = @REPLACE_FTELL@
661 REPLACE_FTELLO = @REPLACE_FTELLO@
662 REPLACE_GETCWD = @REPLACE_GETCWD@
663 REPLACE_GETLINE = @REPLACE_GETLINE@
664 REPLACE_GETPAGESIZE = @REPLACE_GETPAGESIZE@
665 REPLACE_GETTIMEOFDAY = @REPLACE_GETTIMEOFDAY@
666 REPLACE_LCHOWN = @REPLACE_LCHOWN@
667 REPLACE_LSEEK = @REPLACE_LSEEK@
668 REPLACE_MEMMEM = @REPLACE_MEMMEM@
669 REPLACE_MKSTEMP = @REPLACE_MKSTEMP@
670 REPLACE_PRINTF = @REPLACE_PRINTF@
671 REPLACE_PUTENV = @REPLACE_PUTENV@
672 REPLACE_SNPRINTF = @REPLACE_SNPRINTF@
673 REPLACE_SPRINTF = @REPLACE_SPRINTF@
674 REPLACE_STRCASESTR = @REPLACE_STRCASESTR@
675 REPLACE_STRERROR = @REPLACE_STRERROR@
676 REPLACE_STRSIGNAL = @REPLACE_STRSIGNAL@
677 REPLACE_STRSTR = @REPLACE_STRSTR@
678 REPLACE_VASPRINTF = @REPLACE_VASPRINTF@
679 REPLACE_VFPRINTF = @REPLACE_VFPRINTF@
680 REPLACE_VPRINTF = @REPLACE_VPRINTF@
681 REPLACE_VSNPRINTF = @REPLACE_VSNPRINTF@
682 REPLACE_VSPRINTF = @REPLACE_VSPRINTF@
683 REPLACE_WCWIDTH = @REPLACE_WCWIDTH@
684 RESTORE = @RESTORE@
685 RSH_SECURITY = @RSH_SECURITY@
686 SAMBA_CLIENT = @SAMBA_CLIENT@
687 SERVER_HOST_INSTANCE = @SERVER_HOST_INSTANCE@
688 SERVER_HOST_KEY_FILE = @SERVER_HOST_KEY_FILE@
689 SERVER_HOST_PRINCIPAL = @SERVER_HOST_PRINCIPAL@
690 SERVICE_SUFFIX = @SERVICE_SUFFIX@
691 SETUID_GROUP = @SETUID_GROUP@
692 SET_MAKE = @SET_MAKE@
693 SHELL = @SHELL@
694 SIG_ATOMIC_T_SUFFIX = @SIG_ATOMIC_T_SUFFIX@
695 SIZE_T_SUFFIX = @SIZE_T_SUFFIX@
696 SNAPSHOT_STAMP = @SNAPSHOT_STAMP@
697 SORT = @SORT@
698 SSH = @SSH@
699 SSH_SECURITY = @SSH_SECURITY@
700 STDBOOL_H = @STDBOOL_H@
701 STDINT_H = @STDINT_H@
702 STRIP = @STRIP@
703 SVN = @SVN@
704 SWIG = @SWIG@
705 SWIG_LIB = @SWIG_LIB@
706 SYS_SOCKET_H = @SYS_SOCKET_H@
707 SYS_STAT_H = @SYS_STAT_H@
708 SYS_TIME_H = @SYS_TIME_H@
709 TCPPORTRANGE = @TCPPORTRANGE@
710 TICKET_LIFETIME = @TICKET_LIFETIME@
711 UDPPORTRANGE = @UDPPORTRANGE@
712 UNCOMPRESS_OPT = @UNCOMPRESS_OPT@
713 UNCOMPRESS_PATH = @UNCOMPRESS_PATH@
714 USE_AMANDAHOSTS = @USE_AMANDAHOSTS@
715 USE_NLS = @USE_NLS@
716 USE_RUNDUMP = @USE_RUNDUMP@
717 USE_VERSION_SUFFIXES = @USE_VERSION_SUFFIXES@
718 VDUMP = @VDUMP@
719 VERSION = @VERSION@
720 VERSION_COMMENT = @VERSION_COMMENT@
721 VERSION_MAJOR = @VERSION_MAJOR@
722 VERSION_MINOR = @VERSION_MINOR@
723 VERSION_PATCH = @VERSION_PATCH@
724 VERSION_SUFFIX = @VERSION_SUFFIX@
725 VOID_UNSETENV = @VOID_UNSETENV@
726 VRESTORE = @VRESTORE@
727 VXDUMP = @VXDUMP@
728 VXRESTORE = @VXRESTORE@
729 WCHAR_H = @WCHAR_H@
730 WCHAR_T_SUFFIX = @WCHAR_T_SUFFIX@
731 WINT_T_SUFFIX = @WINT_T_SUFFIX@
732 XFSDUMP = @XFSDUMP@
733 XFSRESTORE = @XFSRESTORE@
734 XGETTEXT = @XGETTEXT@
735 XGETTEXT_015 = @XGETTEXT_015@
736 XSLREL = @XSLREL@
737 XSLTPROC = @XSLTPROC@
738 XSLTPROC_FLAGS = @XSLTPROC_FLAGS@
739 YACC = @YACC@
740 YFLAGS = @YFLAGS@
741 _libcurl_config = @_libcurl_config@
742 abs_builddir = @abs_builddir@
743 abs_srcdir = @abs_srcdir@
744 abs_top_builddir = @abs_top_builddir@
745 abs_top_srcdir = @abs_top_srcdir@
746 ac_ct_CC = @ac_ct_CC@
747 ac_ct_CXX = @ac_ct_CXX@
748 ac_ct_F77 = @ac_ct_F77@
749 am__include = @am__include@
750 am__leading_dot = @am__leading_dot@
751 am__quote = @am__quote@
752 am__tar = @am__tar@
753 am__untar = @am__untar@
754 amdatadir = @amdatadir@
755 amincludedir = @amincludedir@
756 amlibdir = @amlibdir@
757 amlibexecdir = @amlibexecdir@
758 amperldir = @amperldir@
759 bindir = @bindir@
760 build = @build@
761 build_alias = @build_alias@
762 build_cpu = @build_cpu@
763 build_os = @build_os@
764 build_vendor = @build_vendor@
765 builddir = @builddir@
766 datadir = @datadir@
767 datarootdir = @datarootdir@
768 docdir = @docdir@
769 dvidir = @dvidir@
770 exec_prefix = @exec_prefix@
771 gl_LIBOBJS = @gl_LIBOBJS@
772 gl_LTLIBOBJS = @gl_LTLIBOBJS@
773 gltests_LIBOBJS = @gltests_LIBOBJS@
774 gltests_LTLIBOBJS = @gltests_LTLIBOBJS@
775 host = @host@
776 host_alias = @host_alias@
777 host_cpu = @host_cpu@
778 host_os = @host_os@
779 host_vendor = @host_vendor@
780 htmldir = @htmldir@
781 includedir = @includedir@
782 infodir = @infodir@
783 install_sh = @install_sh@
784 libdir = @libdir@
785 libexecdir = @libexecdir@
786 localedir = @localedir@
787 localstatedir = @localstatedir@
788 mandir = @mandir@
789 mkdir_p = @mkdir_p@
790 oldincludedir = @oldincludedir@
791 pdfdir = @pdfdir@
792 prefix = @prefix@
793 program_transform_name = @program_transform_name@
794 psdir = @psdir@
795 sbindir = @sbindir@
796 sharedstatedir = @sharedstatedir@
797 srcdir = @srcdir@
798 sysconfdir = @sysconfdir@
799 target = @target@
800 target_alias = @target_alias@
801 target_cpu = @target_cpu@
802 target_os = @target_os@
803 target_vendor = @target_vendor@
804 top_build_prefix = @top_build_prefix@
805 top_builddir = @top_builddir@
806 top_srcdir = @top_srcdir@
807 SUFFIXES = 
808 EXTRA_DIST = 
809 BUILT_SOURCES = 
810 MOSTLYCLEANFILES = 
811
812 # config.status leaves config.log files around
813 CLEANFILES = config.log
814
815 # and we'll need to clean up our generated files for distclean
816 DISTCLEANFILES = $(SCRIPTS_SHELL) $(SCRIPTS_PERL) $(SCRIPTS_AWK) \
817         $(SCRIPTS_INCLUDE) $(am__append_1)
818 MAINTAINERCLEANFILES = 
819
820 # syntax-check shell scripts on 'make check'
821 CHECK_SHELL = $(SCRIPTS_SHELL)
822
823 # sed expression to strip leading directories from a filename; this converts e.g.,
824 # src/foo/bar.so to bar.so.
825 strip_leading_dirs = s|^.*/||
826 @WANT_INSTALLPERMS_FALSE@do_file = pa="$$dest"/`echo "$$cmd"|sed '$(strip_leading_dirs)'|sed '$(transform)'`; \
827 @WANT_INSTALLPERMS_FALSE@    echo "installperm \"$$chown\" \"$$chmod\" \"$$pa\"" >> "$(installperms_sh)"
828
829
830 # define a snippet of the scripts below to either perform a chown/chmod operation,
831 # or record that operation in the logfile.  On entry to the snippet, $$dest is the
832 # destination directory, $$cmd is the srcdir-relative pathname of the target file,
833 # $$chown is the ownership, and $$chmod is the permission pattern.
834 @WANT_INSTALLPERMS_TRUE@do_file = pa="$(DESTDIR)$$dest"/`echo "$$cmd"|sed '$(strip_leading_dirs)'|sed '$(transform)'`; \
835 @WANT_INSTALLPERMS_TRUE@    if test -n "$$chown"; then \
836 @WANT_INSTALLPERMS_TRUE@        echo chown "$$chown" "$$pa"; \
837 @WANT_INSTALLPERMS_TRUE@        chown "$$chown" "$$pa" || exit 1; \
838 @WANT_INSTALLPERMS_TRUE@    fi; \
839 @WANT_INSTALLPERMS_TRUE@    if test -n "$$chmod"; then \
840 @WANT_INSTALLPERMS_TRUE@        echo chmod "$$chmod" "$$pa"; \
841 @WANT_INSTALLPERMS_TRUE@        chmod "$$chmod" "$$pa" || exit 1; \
842 @WANT_INSTALLPERMS_TRUE@    fi 
843
844 @WANT_INSTALLPERMS_FALSE@installperms_sh = "$(top_builddir)/installperms.sh"
845 INCLUDES = -I$(top_srcdir)/gnulib \
846                 -I$(top_srcdir)/device-src \
847                 -I$(top_srcdir)/common-src
848
849 AM_CFLAGS = $(AMANDA_WARNING_CFLAGS)
850 AM_LDFLAGS = $(AMANDA_STATIC_LDFLAGS)
851 amlib_LTLIBRARIES = libamxfer.la
852 LINT = $(AMLINT)
853 LINTFLAGS = $(AMLINTFLAGS)
854 libamxfer_la_SOURCES = \
855         dest-device.c \
856         dest-fd.c \
857         dest-null.c \
858         element-glue.c \
859         filter-xor.c \
860         source-device.c \
861         source-random.c \
862         source-fd.c \
863         source-pattern.c \
864         xfer-element.c \
865         xfer.c \
866         xmsg.c
867
868 libamxfer_la_LIBADD = \
869         ../device-src/libamdevice.la \
870         ../common-src/libamanda.la
871
872 noinst_HEADERS = \
873         amxfer.h \
874         element-glue.h \
875         xfer-element.h \
876         xfer.h \
877         xmsg.h
878
879 xfer_test_SOURCES = xfer-test.c
880 xfer_test_LDADD = \
881         ../common-src/libtestutils.la \
882         libamxfer.la
883
884 all: $(BUILT_SOURCES)
885         $(MAKE) $(AM_MAKEFLAGS) all-am
886
887 .SUFFIXES:
888 .SUFFIXES: .c .lo .o .obj
889 $(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)
890         @for dep in $?; do \
891           case '$(am__configure_deps)' in \
892             *$$dep*) \
893               cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh \
894                 && exit 0; \
895               exit 1;; \
896           esac; \
897         done; \
898         echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu  xfer-src/Makefile'; \
899         cd $(top_srcdir) && \
900           $(AUTOMAKE) --gnu  xfer-src/Makefile
901 .PRECIOUS: Makefile
902 Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
903         @case '$?' in \
904           *config.status*) \
905             cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \
906           *) \
907             echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \
908             cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \
909         esac;
910
911 $(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES)
912         cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
913
914 $(top_srcdir)/configure:  $(am__configure_deps)
915         cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
916 $(ACLOCAL_M4):  $(am__aclocal_m4_deps)
917         cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
918 install-amlibLTLIBRARIES: $(amlib_LTLIBRARIES)
919         @$(NORMAL_INSTALL)
920         test -z "$(amlibdir)" || $(MKDIR_P) "$(DESTDIR)$(amlibdir)"
921         @list='$(amlib_LTLIBRARIES)'; for p in $$list; do \
922           if test -f $$p; then \
923             f=$(am__strip_dir) \
924             echo " $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=install $(amlibLTLIBRARIES_INSTALL) $(INSTALL_STRIP_FLAG) '$$p' '$(DESTDIR)$(amlibdir)/$$f'"; \
925             $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=install $(amlibLTLIBRARIES_INSTALL) $(INSTALL_STRIP_FLAG) "$$p" "$(DESTDIR)$(amlibdir)/$$f"; \
926           else :; fi; \
927         done
928
929 uninstall-amlibLTLIBRARIES:
930         @$(NORMAL_UNINSTALL)
931         @list='$(amlib_LTLIBRARIES)'; for p in $$list; do \
932           p=$(am__strip_dir) \
933           echo " $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=uninstall rm -f '$(DESTDIR)$(amlibdir)/$$p'"; \
934           $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=uninstall rm -f "$(DESTDIR)$(amlibdir)/$$p"; \
935         done
936
937 clean-amlibLTLIBRARIES:
938         -test -z "$(amlib_LTLIBRARIES)" || rm -f $(amlib_LTLIBRARIES)
939         @list='$(amlib_LTLIBRARIES)'; for p in $$list; do \
940           dir="`echo $$p | sed -e 's|/[^/]*$$||'`"; \
941           test "$$dir" != "$$p" || dir=.; \
942           echo "rm -f \"$${dir}/so_locations\""; \
943           rm -f "$${dir}/so_locations"; \
944         done
945 libamxfer.la: $(libamxfer_la_OBJECTS) $(libamxfer_la_DEPENDENCIES) 
946         $(LINK) -rpath $(amlibdir) $(libamxfer_la_OBJECTS) $(libamxfer_la_LIBADD) $(LIBS)
947
948 clean-noinstPROGRAMS:
949         @list='$(noinst_PROGRAMS)'; for p in $$list; do \
950           f=`echo $$p|sed 's/$(EXEEXT)$$//'`; \
951           echo " rm -f $$p $$f"; \
952           rm -f $$p $$f ; \
953         done
954 xfer-test$(EXEEXT): $(xfer_test_OBJECTS) $(xfer_test_DEPENDENCIES) 
955         @rm -f xfer-test$(EXEEXT)
956         $(LINK) $(xfer_test_OBJECTS) $(xfer_test_LDADD) $(LIBS)
957
958 mostlyclean-compile:
959         -rm -f *.$(OBJEXT)
960
961 distclean-compile:
962         -rm -f *.tab.c
963
964 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/dest-device.Plo@am__quote@
965 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/dest-fd.Plo@am__quote@
966 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/dest-null.Plo@am__quote@
967 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/element-glue.Plo@am__quote@
968 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/filter-xor.Plo@am__quote@
969 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/source-device.Plo@am__quote@
970 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/source-fd.Plo@am__quote@
971 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/source-pattern.Plo@am__quote@
972 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/source-random.Plo@am__quote@
973 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/xfer-element.Plo@am__quote@
974 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/xfer-test.Po@am__quote@
975 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/xfer.Plo@am__quote@
976 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/xmsg.Plo@am__quote@
977
978 .c.o:
979 @am__fastdepCC_TRUE@    $(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $<
980 @am__fastdepCC_TRUE@    mv -f $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po
981 @AMDEP_TRUE@@am__fastdepCC_FALSE@       source='$<' object='$@' libtool=no @AMDEPBACKSLASH@
982 @AMDEP_TRUE@@am__fastdepCC_FALSE@       DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
983 @am__fastdepCC_FALSE@   $(COMPILE) -c $<
984
985 .c.obj:
986 @am__fastdepCC_TRUE@    $(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ `$(CYGPATH_W) '$<'`
987 @am__fastdepCC_TRUE@    mv -f $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po
988 @AMDEP_TRUE@@am__fastdepCC_FALSE@       source='$<' object='$@' libtool=no @AMDEPBACKSLASH@
989 @AMDEP_TRUE@@am__fastdepCC_FALSE@       DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
990 @am__fastdepCC_FALSE@   $(COMPILE) -c `$(CYGPATH_W) '$<'`
991
992 .c.lo:
993 @am__fastdepCC_TRUE@    $(LTCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $<
994 @am__fastdepCC_TRUE@    mv -f $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Plo
995 @AMDEP_TRUE@@am__fastdepCC_FALSE@       source='$<' object='$@' libtool=yes @AMDEPBACKSLASH@
996 @AMDEP_TRUE@@am__fastdepCC_FALSE@       DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
997 @am__fastdepCC_FALSE@   $(LTCOMPILE) -c -o $@ $<
998
999 mostlyclean-libtool:
1000         -rm -f *.lo
1001
1002 clean-libtool:
1003         -rm -rf .libs _libs
1004
1005 ID: $(HEADERS) $(SOURCES) $(LISP) $(TAGS_FILES)
1006         list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \
1007         unique=`for i in $$list; do \
1008             if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
1009           done | \
1010           $(AWK) '{ files[$$0] = 1; nonemtpy = 1; } \
1011               END { if (nonempty) { for (i in files) print i; }; }'`; \
1012         mkid -fID $$unique
1013 tags: TAGS
1014
1015 TAGS:  $(HEADERS) $(SOURCES)  $(TAGS_DEPENDENCIES) \
1016                 $(TAGS_FILES) $(LISP)
1017         tags=; \
1018         here=`pwd`; \
1019         list='$(SOURCES) $(HEADERS)  $(LISP) $(TAGS_FILES)'; \
1020         unique=`for i in $$list; do \
1021             if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
1022           done | \
1023           $(AWK) '{ files[$$0] = 1; nonempty = 1; } \
1024               END { if (nonempty) { for (i in files) print i; }; }'`; \
1025         if test -z "$(ETAGS_ARGS)$$tags$$unique"; then :; else \
1026           test -n "$$unique" || unique=$$empty_fix; \
1027           $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \
1028             $$tags $$unique; \
1029         fi
1030 ctags: CTAGS
1031 CTAGS:  $(HEADERS) $(SOURCES)  $(TAGS_DEPENDENCIES) \
1032                 $(TAGS_FILES) $(LISP)
1033         tags=; \
1034         list='$(SOURCES) $(HEADERS)  $(LISP) $(TAGS_FILES)'; \
1035         unique=`for i in $$list; do \
1036             if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
1037           done | \
1038           $(AWK) '{ files[$$0] = 1; nonempty = 1; } \
1039               END { if (nonempty) { for (i in files) print i; }; }'`; \
1040         test -z "$(CTAGS_ARGS)$$tags$$unique" \
1041           || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \
1042              $$tags $$unique
1043
1044 GTAGS:
1045         here=`$(am__cd) $(top_builddir) && pwd` \
1046           && cd $(top_srcdir) \
1047           && gtags -i $(GTAGS_ARGS) $$here
1048
1049 distclean-tags:
1050         -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags
1051
1052 check-TESTS: $(TESTS)
1053         @failed=0; all=0; xfail=0; xpass=0; skip=0; ws='[        ]'; \
1054         srcdir=$(srcdir); export srcdir; \
1055         list=' $(TESTS) '; \
1056         if test -n "$$list"; then \
1057           for tst in $$list; do \
1058             if test -f ./$$tst; then dir=./; \
1059             elif test -f $$tst; then dir=; \
1060             else dir="$(srcdir)/"; fi; \
1061             if $(TESTS_ENVIRONMENT) $${dir}$$tst; then \
1062               all=`expr $$all + 1`; \
1063               case " $(XFAIL_TESTS) " in \
1064               *$$ws$$tst$$ws*) \
1065                 xpass=`expr $$xpass + 1`; \
1066                 failed=`expr $$failed + 1`; \
1067                 echo "XPASS: $$tst"; \
1068               ;; \
1069               *) \
1070                 echo "PASS: $$tst"; \
1071               ;; \
1072               esac; \
1073             elif test $$? -ne 77; then \
1074               all=`expr $$all + 1`; \
1075               case " $(XFAIL_TESTS) " in \
1076               *$$ws$$tst$$ws*) \
1077                 xfail=`expr $$xfail + 1`; \
1078                 echo "XFAIL: $$tst"; \
1079               ;; \
1080               *) \
1081                 failed=`expr $$failed + 1`; \
1082                 echo "FAIL: $$tst"; \
1083               ;; \
1084               esac; \
1085             else \
1086               skip=`expr $$skip + 1`; \
1087               echo "SKIP: $$tst"; \
1088             fi; \
1089           done; \
1090           if test "$$failed" -eq 0; then \
1091             if test "$$xfail" -eq 0; then \
1092               banner="All $$all tests passed"; \
1093             else \
1094               banner="All $$all tests behaved as expected ($$xfail expected failures)"; \
1095             fi; \
1096           else \
1097             if test "$$xpass" -eq 0; then \
1098               banner="$$failed of $$all tests failed"; \
1099             else \
1100               banner="$$failed of $$all tests did not behave as expected ($$xpass unexpected passes)"; \
1101             fi; \
1102           fi; \
1103           dashes="$$banner"; \
1104           skipped=""; \
1105           if test "$$skip" -ne 0; then \
1106             skipped="($$skip tests were not run)"; \
1107             test `echo "$$skipped" | wc -c` -le `echo "$$banner" | wc -c` || \
1108               dashes="$$skipped"; \
1109           fi; \
1110           report=""; \
1111           if test "$$failed" -ne 0 && test -n "$(PACKAGE_BUGREPORT)"; then \
1112             report="Please report to $(PACKAGE_BUGREPORT)"; \
1113             test `echo "$$report" | wc -c` -le `echo "$$banner" | wc -c` || \
1114               dashes="$$report"; \
1115           fi; \
1116           dashes=`echo "$$dashes" | sed s/./=/g`; \
1117           echo "$$dashes"; \
1118           echo "$$banner"; \
1119           test -z "$$skipped" || echo "$$skipped"; \
1120           test -z "$$report" || echo "$$report"; \
1121           echo "$$dashes"; \
1122           test "$$failed" -eq 0; \
1123         else :; fi
1124
1125 distdir: $(DISTFILES)
1126         @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
1127         topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
1128         list='$(DISTFILES)'; \
1129           dist_files=`for file in $$list; do echo $$file; done | \
1130           sed -e "s|^$$srcdirstrip/||;t" \
1131               -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \
1132         case $$dist_files in \
1133           */*) $(MKDIR_P) `echo "$$dist_files" | \
1134                            sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \
1135                            sort -u` ;; \
1136         esac; \
1137         for file in $$dist_files; do \
1138           if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \
1139           if test -d $$d/$$file; then \
1140             dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \
1141             if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \
1142               cp -pR $(srcdir)/$$file $(distdir)$$dir || exit 1; \
1143             fi; \
1144             cp -pR $$d/$$file $(distdir)$$dir || exit 1; \
1145           else \
1146             test -f $(distdir)/$$file \
1147             || cp -p $$d/$$file $(distdir)/$$file \
1148             || exit 1; \
1149           fi; \
1150         done
1151         $(MAKE) $(AM_MAKEFLAGS) \
1152           top_distdir="$(top_distdir)" distdir="$(distdir)" \
1153           dist-hook
1154 check-am: all-am
1155         $(MAKE) $(AM_MAKEFLAGS) check-TESTS check-local
1156 check: $(BUILT_SOURCES)
1157         $(MAKE) $(AM_MAKEFLAGS) check-am
1158 all-am: Makefile $(LTLIBRARIES) $(PROGRAMS) $(HEADERS)
1159 installdirs:
1160         for dir in "$(DESTDIR)$(amlibdir)"; do \
1161           test -z "$$dir" || $(MKDIR_P) "$$dir"; \
1162         done
1163 install: $(BUILT_SOURCES)
1164         $(MAKE) $(AM_MAKEFLAGS) install-am
1165 install-exec: install-exec-am
1166 install-data: install-data-am
1167 uninstall: uninstall-am
1168
1169 install-am: all-am
1170         @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am
1171
1172 installcheck: installcheck-am
1173 install-strip:
1174         $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \
1175           install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \
1176           `test -z '$(STRIP)' || \
1177             echo "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'"` install
1178 mostlyclean-generic:
1179         -test -z "$(MOSTLYCLEANFILES)" || rm -f $(MOSTLYCLEANFILES)
1180
1181 clean-generic:
1182         -test -z "$(CLEANFILES)" || rm -f $(CLEANFILES)
1183
1184 distclean-generic:
1185         -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES)
1186         -test -z "$(DISTCLEANFILES)" || rm -f $(DISTCLEANFILES)
1187
1188 maintainer-clean-generic:
1189         @echo "This command is intended for maintainers to use"
1190         @echo "it deletes files that may require special tools to rebuild."
1191         -test -z "$(BUILT_SOURCES)" || rm -f $(BUILT_SOURCES)
1192         -test -z "$(MAINTAINERCLEANFILES)" || rm -f $(MAINTAINERCLEANFILES)
1193 clean: clean-am
1194
1195 clean-am: clean-amlibLTLIBRARIES clean-generic clean-libtool \
1196         clean-noinstPROGRAMS mostlyclean-am
1197
1198 distclean: distclean-am
1199         -rm -rf ./$(DEPDIR)
1200         -rm -f Makefile
1201 distclean-am: clean-am distclean-compile distclean-generic \
1202         distclean-tags
1203
1204 dvi: dvi-am
1205
1206 dvi-am:
1207
1208 html: html-am
1209
1210 info: info-am
1211
1212 info-am:
1213
1214 install-data-am: install-amlibLTLIBRARIES
1215         @$(NORMAL_INSTALL)
1216         $(MAKE) $(AM_MAKEFLAGS) install-data-hook
1217
1218 install-dvi: install-dvi-am
1219
1220 install-exec-am:
1221         @$(NORMAL_INSTALL)
1222         $(MAKE) $(AM_MAKEFLAGS) install-exec-hook
1223
1224 install-html: install-html-am
1225
1226 install-info: install-info-am
1227
1228 install-man:
1229
1230 install-pdf: install-pdf-am
1231
1232 install-ps: install-ps-am
1233
1234 installcheck-am: installcheck-local
1235
1236 maintainer-clean: maintainer-clean-am
1237         -rm -rf ./$(DEPDIR)
1238         -rm -f Makefile
1239 maintainer-clean-am: distclean-am maintainer-clean-generic
1240
1241 mostlyclean: mostlyclean-am
1242
1243 mostlyclean-am: mostlyclean-compile mostlyclean-generic \
1244         mostlyclean-libtool
1245
1246 pdf: pdf-am
1247
1248 pdf-am:
1249
1250 ps: ps-am
1251
1252 ps-am:
1253
1254 uninstall-am: uninstall-amlibLTLIBRARIES
1255
1256 .MAKE: install-am install-data-am install-exec-am install-strip
1257
1258 .PHONY: CTAGS GTAGS all all-am check check-TESTS check-am check-local \
1259         clean clean-amlibLTLIBRARIES clean-generic clean-libtool \
1260         clean-noinstPROGRAMS ctags dist-hook distclean \
1261         distclean-compile distclean-generic distclean-libtool \
1262         distclean-tags distdir dvi dvi-am html html-am info info-am \
1263         install install-am install-amlibLTLIBRARIES install-data \
1264         install-data-am install-data-hook install-dvi install-dvi-am \
1265         install-exec install-exec-am install-exec-hook install-html \
1266         install-html-am install-info install-info-am install-man \
1267         install-pdf install-pdf-am install-ps install-ps-am \
1268         install-strip installcheck installcheck-am installcheck-local \
1269         installdirs maintainer-clean maintainer-clean-generic \
1270         mostlyclean mostlyclean-compile mostlyclean-generic \
1271         mostlyclean-libtool pdf pdf-am ps ps-am tags uninstall \
1272         uninstall-am uninstall-amlibLTLIBRARIES
1273
1274
1275 # Perl
1276 %: %.pl $(top_builddir)/config.status
1277         $(top_builddir)/config.status --file=$@:$<
1278         chmod a+x $@
1279         @if test -f $(top_builddir)/perl/.libs/libCmdline.so -o -f $(top_builddir)/perl/libCmdline.so; then \
1280                 grep -v '^use lib' $@ > $@.nouselib; \
1281                 $(PERL) $(CHECK_PERL_FLAGS) -I$(top_builddir)/perl -I$(top_builddir)/perl/.libs -I$(top_srcdir)/perl -c -w -T $@.nouselib || exit 1; \
1282                 rm $@.nouselib; \
1283         fi
1284
1285 %.pl: %.pl.in $(top_builddir)/config.status
1286         $(top_builddir)/config.status --file=$@:$<
1287
1288 %.pm: %.pm.in $(top_builddir)/config.status
1289         $(top_builddir)/config.status --file=$@:$<
1290
1291 # Shell
1292 %: %.sh $(top_builddir)/config.status
1293         $(top_builddir)/config.status --file=$@:$<
1294         chmod a+x $@
1295
1296 %.sh: %.sh.in $(top_builddir)/config.status
1297         $(top_builddir)/config.status --file=$@:$<
1298
1299 # Awk
1300 %: %.awk $(top_builddir)/config.status
1301         $(top_builddir)/config.status --file=$@:$<
1302         chmod a+x $@
1303
1304 %.awk: %.awk.in $(top_builddir)/config.status
1305         $(top_builddir)/config.status --file=$@:$<
1306
1307 # syntax-check perl scripts on 'make check'
1308 check-perl: $(CHECK_PERL)
1309         @CHECK_PERL="$(CHECK_PERL)"; \
1310         if test -f $(top_builddir)/perl/.libs/libCmdline.so -o -f $(top_builddir)/perl/libCmdline.so; then \
1311                 if test -n "$(PERL)"; then \
1312                         for perlobj in $$CHECK_PERL; do \
1313                                 grep -v '^use lib' $$perlobj > $$perlobj.nouselib; \
1314                                 $(PERL) $(CHECK_PERL_FLAGS) -I$(top_builddir)/perl -I$(top_builddir)/perl/.libs -I$(top_srcdir)/perl -c -w -T $$perlobj.nouselib || exit 1; \
1315                                 rm $$perlobj.nouselib; \
1316                         done; \
1317                 fi \
1318         fi
1319 check-local: check-perl
1320
1321 # syntax-check perl scripts on 'make installcheck'
1322 installcheck-perl: $(CHECK_PERL)
1323         @CHECK_PERL="$(CHECK_PERL)"; \
1324         if test -n "$(PERL)"; then \
1325                 for perlobj in $$CHECK_PERL; do \
1326                         $(PERL) $(CHECK_PERL_FLAGS) -c -w -T $$perlobj || exit 1; \
1327                 done; \
1328         fi
1329 installcheck-local: installcheck-perl
1330 check-shell: $(CHECK_SHELL)
1331         @CHECK_SHELL="$(CHECK_SHELL)"; \
1332         if test -n "$$CHECK_SHELL"; then \
1333                 if test -n "$(BASH)"; then \
1334                         for shobj in $$CHECK_SHELL; do \
1335                                 if $(BASH) -n $$shobj; then \
1336                                         echo "$$shobj syntax OK"; \
1337                                 else \
1338                                         echo "$$shobj syntax error"; \
1339                                         exit 1; \
1340                                 fi; \
1341                         done; \
1342                 else \
1343                         echo "No 'bash' available -- cannot syntax-check shell scripts"; \
1344                 fi; \
1345         fi
1346 check-local: check-shell
1347
1348 # make sure that the sources for all shell and perl scripts get included
1349 # in the distribution
1350 dist-scripts:
1351         SCRIPTS_PERL="$(SCRIPTS_PERL)"; SCRIPTS_SHELL="$(SCRIPTS_SHELL)"; SCRIPTS_AWK="$(SCRIPTS_AWK)"; \
1352         for script in $$SCRIPTS_PERL; do \
1353                 test -f $(srcdir)/$${script}.pl && { cp -p $(srcdir)/$${script}.pl $(distdir)/ || exit 1; } \
1354         done; \
1355         for script in $$SCRIPTS_SHELL; do \
1356                 test -f $(srcdir)/$${script}.sh && { cp -p $(srcdir)/$${script}.sh $(distdir)/ || exit 1; } \
1357         done; \
1358         for script in $$SCRIPTS_AWK; do \
1359                 test -f $(srcdir)/$${script}.awk && { cp -p $(srcdir)/$${script}.awk $(distdir)/ || exit 1; } \
1360         done; \
1361         for script in $$SCRIPTS_SHELL $$SCRIPTS_PERL $$SCRIPTS_AWK; do \
1362                 test -f $(srcdir)/$${script}.in && { cp -p $(srcdir)/$${script}.in $(distdir)/ || exit 1; } \
1363         done; \
1364         true
1365 dist-hook: dist-scripts
1366
1367 installperms-exec:
1368         @installperms="$(INSTALLPERMS_exec)"; \
1369         test -n "$$installperms" && echo "Setting installation permissions on executables"; \
1370         dest=; chown=; chmod=; \
1371         for cmd in $$installperms; do \
1372             case "$$cmd" in \
1373                 chown=amanda) \
1374                         echo "  ($$cmd)"; chown="$(BINARY_OWNER):$(SETUID_GROUP)";; \
1375                 dest=*|chown=*|chmod=*) \
1376                         echo "  ($$cmd)"; eval $$cmd;; \
1377                 *) $(do_file) ;; \
1378             esac; \
1379         done
1380
1381 installperms-data:
1382         @installperms="$(INSTALLPERMS_data)"; \
1383         dest=; chown=; chmod=; \
1384         for cmd in $$installperms; do \
1385             case "$$cmd" in \
1386                 chown=amanda) \
1387                         echo "  ($$cmd)"; chown="$(BINARY_OWNER):$(SETUID_GROUP)";; \
1388                 dest=*|chown=*|chmod=*) \
1389                         echo "  ($$cmd)"; eval $$cmd;; \
1390                 *)  $(do_file) ;; \
1391             esac; \
1392         done
1393
1394 install-exec-hook: installperms-exec
1395 install-data-hook: installperms-data
1396
1397 # define a rule to initialize the installperms manifest file
1398 @WANT_INSTALLPERMS_TRUE@installperms-init:
1399 @WANT_INSTALLPERMS_FALSE@installperms-init:
1400 @WANT_INSTALLPERMS_FALSE@       rm -f "$(installperms_sh)"
1401
1402 # A rule to make precompiler output from C files.  This is not used during
1403 # ordinary builds, but but can very useful in debugging problems on strange
1404 # architectures.  With this rule, we can ask users to 'make foo.i' and send
1405 # the result to us.
1406 #
1407 # It touches some automake internals ($COMPILE), but since it's not
1408 # build-critical, that's OK.
1409 %.i : %.c
1410         $(COMPILE) -E -o $@ $<
1411
1412 # lint support
1413
1414 lint:
1415         @echo $(LINT) $(libamxfer_la_SOURCES)
1416         @$(LINT) $(LINTFLAGS) $(CPPFLAGS) $(DEFS) -I. -I$(top_builddir)/config $(INCLUDES) $(libamxfer_la_SOURCES)
1417         @echo $(LINT) $(genversion_SOURCES)
1418         @$(LINT) $(LINTFLAGS) $(CPPFLAGS) $(DEFS) -I. -I$(top_builddir)/config $(INCLUDES) $(genversion_SOURCES)
1419
1420 listlibsrc:
1421         @ for p in $(libamxfer_la_SOURCES); do  \
1422                 listlibsrcs="$$listlibsrcs `pwd`/$$p";          \
1423         done;                                                   \
1424         echo $$listlibsrcs >listlibsrc.output
1425 # Tell versions [3.59,3.63) of GNU make to not export all variables.
1426 # Otherwise a system limit (for SysV at least) may be exceeded.
1427 .NOEXPORT: