1c006e1224e41c34e67fd4afd491d8b19432152a
[debian/amanda] / installcheck / Makefile.in
1 # Makefile.in generated by automake 1.11 from Makefile.am.
2 # @configure_input@
3
4 # Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002,
5 # 2003, 2004, 2005, 2006, 2007, 2008, 2009  Free Software Foundation,
6 # Inc.
7 # This Makefile.in is free software; the Free Software Foundation
8 # gives unlimited permission to copy and/or distribute it,
9 # with or without modifications, as long as this notice is preserved.
10
11 # This program is distributed in the hope that it will be useful,
12 # but WITHOUT ANY WARRANTY, to the extent permitted by law; without
13 # even the implied warranty of MERCHANTABILITY or FITNESS FOR A
14 # PARTICULAR PURPOSE.
15
16 @SET_MAKE@
17
18 # Note that this architecture assumes a full install -- not just server
19 # or just client.  Neither is sufficiently test-able on its own.
20
21 # vim:ft=automake
22 # Copyright (c) 2005-2008 Zmanda Inc.  All Rights Reserved.
23
24 # This library is free software; you can redistribute it and/or modify it
25 # under the terms of the GNU Lesser General Public License version 2.1 as 
26 # published by the Free Software Foundation.
27
28 # This library is distributed in the hope that it will be useful, but
29 # WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
30 # or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU Lesser General Public
31 # License for more details.
32
33 # You should have received a copy of the GNU Lesser General Public License
34 # along with this library; if not, write to the Free Software Foundation,
35 # Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA.
36
37 # Contact information: Zmanda Inc., 465 S Mathlida Ave, Suite 300
38 # Sunnyvale, CA 94086, USA, or: http://www.zmanda.com
39
40 # simple include file to pre-define variables which are then +='d by other
41 # scripts in this directory.
42
43 # vim:ft=automake
44 # Copyright (c) 2005-2008 Zmanda Inc.  All Rights Reserved.
45
46 # This library is free software; you can redistribute it and/or modify it
47 # under the terms of the GNU Lesser General Public License version 2.1 as 
48 # published by the Free Software Foundation.
49
50 # This library is distributed in the hope that it will be useful, but
51 # WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
52 # or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU Lesser General Public
53 # License for more details.
54
55 # You should have received a copy of the GNU Lesser General Public License
56 # along with this library; if not, write to the Free Software Foundation,
57 # Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA.
58
59 # Contact information: Zmanda Inc., 465 S Mathlida Ave, Suite 300
60 # Sunnyvale, CA 94086, USA, or: http://www.zmanda.com
61
62 # SYNOPSIS:
63 #
64 # Automake magic to handle the various tasks of building scripts.  Scripts can
65 # be built down to extensionless executables (e.g., foo.pl -> foo), or to 
66 # files with the usual extension (foo-lib.sh.in -> foo.sh).
67 #
68 # Files which support it are syntax-checked when the user invokes 'make check'.
69 #
70 # All *target* filenames must be listed in SCRIPTS_SHELL, SCRIPTS_PERL, and 
71 # SCRIPTS_AWK to support 'make check', 'make dist', and 'make distclean'. No
72 # files which are not substituted by config.status should be included in
73 # SCRIPTS_PERL, SCRIPTS_SHELL, or SCRIPTS_AWK.  If non-generated files are listed
74 # for installation, then Automake will figure out that they should be distributed;
75 # otherwise, include them in EXTRA_DIST.
76 #
77 # USAGE:
78 #
79 #   include $(top_srcdir)/config/automake/vars.am
80 #   include $(top_srcdir)/config/automake/scripts.am
81 #   ...
82 #   SCRIPTS_PERL = fooscript barscript perl-lib.pl perlmod.pm
83 #   SCRIPTS_SHELL = shell1 shell2 sh-lib.sh
84 #   SCRIPTS_AWK = talk balk chalk awk-lib.awk
85 #   sbin_SCRIPTS = not-subbed
86 #   EXTRA_DIST = util-script.pl
87 #
88 # with the corresponding files in the repository:
89 #
90 #   fooscript.pl barscript.pl perl-lib.pl.in perlmod.pm.in
91 #   shell1.sh shell2.sh sh-lib.sh.in
92 #   talk.awk balk.awk chalk.awk awk-lib.awk.in
93 #   not-subbed util-script.pl
94 #
95 # by default, all shell and perl scripts are syntax checked.  If this is
96 # a problem (for example, perl scripts depending on Amanda extension 
97 # modules), then assign to CHECK_{PERL,SHELL} the list of files you wish
98 # to be checked (which can be empty).
99 #
100 # To add extra flags to the perl checks (e.g., to add new -I flags), set
101 # CHECK_PERL_FLAGS.
102
103 # Implementation note:
104 #
105 # This file uses config.status to substitute @foo@ in those scripts while
106 # converting them. It also adds the executable bits (a+x) to extensionless
107 # files.  The substitution works even though the files are not listed in 
108 # configure.in
109 VPATH = @srcdir@
110 pkgdatadir = $(datadir)/@PACKAGE@
111 pkgincludedir = $(includedir)/@PACKAGE@
112 pkglibdir = $(libdir)/@PACKAGE@
113 pkglibexecdir = $(libexecdir)/@PACKAGE@
114 am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd
115 install_sh_DATA = $(install_sh) -c -m 644
116 install_sh_PROGRAM = $(install_sh) -c
117 install_sh_SCRIPT = $(install_sh) -c
118 INSTALL_HEADER = $(INSTALL_DATA)
119 transform = $(program_transform_name)
120 NORMAL_INSTALL = :
121 PRE_INSTALL = :
122 POST_INSTALL = :
123 NORMAL_UNINSTALL = :
124 PRE_UNINSTALL = :
125 POST_UNINSTALL = :
126 build_triplet = @build@
127 host_triplet = @host@
128 target_triplet = @target@
129 DIST_COMMON = $(srcdir)/Makefile.am $(srcdir)/Makefile.in \
130         $(top_srcdir)/config/automake/scripts.am \
131         $(top_srcdir)/config/automake/vars.am
132
133 # tests requiring server
134 @WANT_SERVER_TRUE@am__append_1 = $(server_tests)
135
136 # tests requiring a client and a server (any tests that run amdump)
137 @WANT_CLIENT_TRUE@@WANT_SERVER_TRUE@am__append_2 = $(full_tests)
138
139 # tests requiring a client and a server AND restore facilities (any tests that run amdump)
140 @WANT_CLIENT_TRUE@@WANT_RESTORE_TRUE@@WANT_SERVER_TRUE@am__append_3 = $(restore_tests)
141 subdir = installcheck
142 ACLOCAL_M4 = $(top_srcdir)/aclocal.m4
143 am__aclocal_m4_deps =  \
144         $(top_srcdir)/config/macro-archive/ac_define_dir.m4 \
145         $(top_srcdir)/config/macro-archive/ac_perl_module_version.m4 \
146         $(top_srcdir)/config/macro-archive/ac_prog_perl_version.m4 \
147         $(top_srcdir)/config/macro-archive/ac_prog_swig.m4 \
148         $(top_srcdir)/config/macro-archive/ax_compare_version.m4 \
149         $(top_srcdir)/config/macro-archive/docbook-dtd.m4 \
150         $(top_srcdir)/config/macro-archive/docbook-xslt-min.m4 \
151         $(top_srcdir)/config/macro-archive/docbook-xslt.m4 \
152         $(top_srcdir)/config/macro-archive/xsltproc.m4 \
153         $(top_srcdir)/config/amanda/amplot.m4 \
154         $(top_srcdir)/config/amanda/bsd-security.m4 \
155         $(top_srcdir)/config/amanda/bsdtcp-security.m4 \
156         $(top_srcdir)/config/amanda/bsdudp-security.m4 \
157         $(top_srcdir)/config/amanda/changer.m4 \
158         $(top_srcdir)/config/amanda/components.m4 \
159         $(top_srcdir)/config/amanda/compress.m4 \
160         $(top_srcdir)/config/amanda/config.m4 \
161         $(top_srcdir)/config/amanda/debugging.m4 \
162         $(top_srcdir)/config/amanda/defaults.m4 \
163         $(top_srcdir)/config/amanda/devprefix.m4 \
164         $(top_srcdir)/config/amanda/dirs.m4 \
165         $(top_srcdir)/config/amanda/documentation.m4 \
166         $(top_srcdir)/config/amanda/dumpers.m4 \
167         $(top_srcdir)/config/amanda/flags.m4 \
168         $(top_srcdir)/config/amanda/flock.m4 \
169         $(top_srcdir)/config/amanda/funcs.m4 \
170         $(top_srcdir)/config/amanda/getfsent.m4 \
171         $(top_srcdir)/config/amanda/i18n.m4 \
172         $(top_srcdir)/config/amanda/ipv6.m4 \
173         $(top_srcdir)/config/amanda/krb4-security.m4 \
174         $(top_srcdir)/config/amanda/krb5-security.m4 \
175         $(top_srcdir)/config/amanda/lfs.m4 \
176         $(top_srcdir)/config/amanda/libs.m4 \
177         $(top_srcdir)/config/amanda/net.m4 \
178         $(top_srcdir)/config/amanda/progs.m4 \
179         $(top_srcdir)/config/amanda/ps.m4 \
180         $(top_srcdir)/config/amanda/readdir.m4 \
181         $(top_srcdir)/config/amanda/readline.m4 \
182         $(top_srcdir)/config/amanda/rsh-security.m4 \
183         $(top_srcdir)/config/amanda/s3-device.m4 \
184         $(top_srcdir)/config/amanda/shmem.m4 \
185         $(top_srcdir)/config/amanda/socklen_t_equiv.m4 \
186         $(top_srcdir)/config/amanda/ssh-security.m4 \
187         $(top_srcdir)/config/amanda/summary.m4 \
188         $(top_srcdir)/config/amanda/swig.m4 \
189         $(top_srcdir)/config/amanda/syshacks.m4 \
190         $(top_srcdir)/config/amanda/tape.m4 \
191         $(top_srcdir)/config/amanda/types.m4 \
192         $(top_srcdir)/config/amanda/userid.m4 \
193         $(top_srcdir)/config/amanda/version.m4 \
194         $(top_srcdir)/config/gnulib/alloca.m4 \
195         $(top_srcdir)/config/gnulib/arpa_inet_h.m4 \
196         $(top_srcdir)/config/gnulib/base64.m4 \
197         $(top_srcdir)/config/gnulib/eoverflow.m4 \
198         $(top_srcdir)/config/gnulib/extensions.m4 \
199         $(top_srcdir)/config/gnulib/float_h.m4 \
200         $(top_srcdir)/config/gnulib/fsusage.m4 \
201         $(top_srcdir)/config/gnulib/getaddrinfo.m4 \
202         $(top_srcdir)/config/gnulib/getopt.m4 \
203         $(top_srcdir)/config/gnulib/gettimeofday.m4 \
204         $(top_srcdir)/config/gnulib/gnulib-common.m4 \
205         $(top_srcdir)/config/gnulib/gnulib-comp.m4 \
206         $(top_srcdir)/config/gnulib/include_next.m4 \
207         $(top_srcdir)/config/gnulib/inet_ntop.m4 \
208         $(top_srcdir)/config/gnulib/intmax_t.m4 \
209         $(top_srcdir)/config/gnulib/lock.m4 \
210         $(top_srcdir)/config/gnulib/longlong.m4 \
211         $(top_srcdir)/config/gnulib/malloc.m4 \
212         $(top_srcdir)/config/gnulib/mkdtemp.m4 \
213         $(top_srcdir)/config/gnulib/netinet_in_h.m4 \
214         $(top_srcdir)/config/gnulib/onceonly_2_57.m4 \
215         $(top_srcdir)/config/gnulib/physmem.m4 \
216         $(top_srcdir)/config/gnulib/safe-read.m4 \
217         $(top_srcdir)/config/gnulib/safe-write.m4 \
218         $(top_srcdir)/config/gnulib/snprintf.m4 \
219         $(top_srcdir)/config/gnulib/socklen.m4 \
220         $(top_srcdir)/config/gnulib/sockpfaf.m4 \
221         $(top_srcdir)/config/gnulib/ssize_t.m4 \
222         $(top_srcdir)/config/gnulib/stdbool.m4 \
223         $(top_srcdir)/config/gnulib/stdint.m4 \
224         $(top_srcdir)/config/gnulib/stdio_h.m4 \
225         $(top_srcdir)/config/gnulib/stdlib_h.m4 \
226         $(top_srcdir)/config/gnulib/strdup.m4 \
227         $(top_srcdir)/config/gnulib/string_h.m4 \
228         $(top_srcdir)/config/gnulib/sys_socket_h.m4 \
229         $(top_srcdir)/config/gnulib/sys_stat_h.m4 \
230         $(top_srcdir)/config/gnulib/sys_time_h.m4 \
231         $(top_srcdir)/config/gnulib/tempname.m4 \
232         $(top_srcdir)/config/gnulib/unistd_h.m4 \
233         $(top_srcdir)/config/gnulib/vasnprintf.m4 \
234         $(top_srcdir)/config/gnulib/visibility.m4 \
235         $(top_srcdir)/config/gnulib/wchar.m4 \
236         $(top_srcdir)/config/gettext-macros/gettext.m4 \
237         $(top_srcdir)/config/gettext-macros/iconv.m4 \
238         $(top_srcdir)/config/gettext-macros/inttypes_h.m4 \
239         $(top_srcdir)/config/gettext-macros/lib-ld.m4 \
240         $(top_srcdir)/config/gettext-macros/lib-link.m4 \
241         $(top_srcdir)/config/gettext-macros/lib-prefix.m4 \
242         $(top_srcdir)/config/gettext-macros/nls.m4 \
243         $(top_srcdir)/config/gettext-macros/po.m4 \
244         $(top_srcdir)/config/gettext-macros/progtest.m4 \
245         $(top_srcdir)/config/gettext-macros/size_max.m4 \
246         $(top_srcdir)/config/gettext-macros/stdint_h.m4 \
247         $(top_srcdir)/config/gettext-macros/wchar_t.m4 \
248         $(top_srcdir)/config/gettext-macros/wint_t.m4 \
249         $(top_srcdir)/config/gettext-macros/xsize.m4 \
250         $(top_srcdir)/config/libtool.m4 $(top_srcdir)/configure.in
251 am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \
252         $(ACLOCAL_M4)
253 mkinstalldirs = $(SHELL) $(top_srcdir)/config/mkinstalldirs
254 CONFIG_HEADER = $(top_builddir)/config/config.h
255 CONFIG_CLEAN_FILES =
256 CONFIG_CLEAN_VPATH_FILES =
257 SOURCES =
258 DIST_SOURCES =
259 DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST)
260 ACLOCAL = @ACLOCAL@
261 AIX_BACKUP = @AIX_BACKUP@
262 ALLOCA = @ALLOCA@
263 ALLOCA_H = @ALLOCA_H@
264 AMANDA_DBGDIR = @AMANDA_DBGDIR@
265 AMANDA_DEBUG_DAYS = @AMANDA_DEBUG_DAYS@
266 AMANDA_STATIC_LDFLAGS = @AMANDA_STATIC_LDFLAGS@
267 AMANDA_TMPDIR = @AMANDA_TMPDIR@
268 AMANDA_WARNING_CFLAGS = @AMANDA_WARNING_CFLAGS@
269 AMLINT = @AMLINT@
270 AMLINTFLAGS = @AMLINTFLAGS@
271 AMPLOT_CAT_COMPRESS = @AMPLOT_CAT_COMPRESS@
272 AMPLOT_CAT_GZIP = @AMPLOT_CAT_GZIP@
273 AMPLOT_CAT_PACK = @AMPLOT_CAT_PACK@
274 AMPLOT_COMPRESS = @AMPLOT_COMPRESS@
275 AMTAR = @AMTAR@
276 APPLICATION_DIR = @APPLICATION_DIR@
277 AR = @AR@
278 ARPA_INET_H = @ARPA_INET_H@
279 ASSERTIONS = @ASSERTIONS@
280 AUTOCONF = @AUTOCONF@
281 AUTOHEADER = @AUTOHEADER@
282 AUTOMAKE = @AUTOMAKE@
283 AWK = @AWK@
284 BASH = @BASH@
285 BINARY_OWNER = @BINARY_OWNER@
286 BITSIZEOF_PTRDIFF_T = @BITSIZEOF_PTRDIFF_T@
287 BITSIZEOF_SIG_ATOMIC_T = @BITSIZEOF_SIG_ATOMIC_T@
288 BITSIZEOF_SIZE_T = @BITSIZEOF_SIZE_T@
289 BITSIZEOF_WCHAR_T = @BITSIZEOF_WCHAR_T@
290 BITSIZEOF_WINT_T = @BITSIZEOF_WINT_T@
291 BSDTCP_SECURITY = @BSDTCP_SECURITY@
292 BSDUDP_SECURITY = @BSDUDP_SECURITY@
293 BSD_SECURITY = @BSD_SECURITY@
294 CAT = @CAT@
295 CC = @CC@
296 CCDEPMODE = @CCDEPMODE@
297 CFLAGS = @CFLAGS@
298 CFLAG_VISIBILITY = @CFLAG_VISIBILITY@
299 CHECK_USERID = @CHECK_USERID@
300 CHIO = @CHIO@
301 CHS = @CHS@
302 CLIENT_HOST_INSTANCE = @CLIENT_HOST_INSTANCE@
303 CLIENT_HOST_KEY_FILE = @CLIENT_HOST_KEY_FILE@
304 CLIENT_HOST_PRINCIPAL = @CLIENT_HOST_PRINCIPAL@
305 CLIENT_LOGIN = @CLIENT_LOGIN@
306 CLIENT_SCRIPTS_OPT = @CLIENT_SCRIPTS_OPT@
307 COMPRESS = @COMPRESS@
308 COMPRESS_BEST_OPT = @COMPRESS_BEST_OPT@
309 COMPRESS_FAST_OPT = @COMPRESS_FAST_OPT@
310 COMPRESS_PATH = @COMPRESS_PATH@
311 COMPRESS_SUFFIX = @COMPRESS_SUFFIX@
312 CONFIG_CLOBBER_MY_CONFIG = @CONFIG_CLOBBER_MY_CONFIG@
313 CONFIG_DIR = @CONFIG_DIR@
314 CPP = @CPP@
315 CPPFLAGS = @CPPFLAGS@
316 CURL_CONFIG = @CURL_CONFIG@
317 CXX = @CXX@
318 CXXCPP = @CXXCPP@
319 CXXDEPMODE = @CXXDEPMODE@
320 CXXFLAGS = @CXXFLAGS@
321 CYGPATH_W = @CYGPATH_W@
322 DD = @DD@
323 DEFAULT_AMANDATES_FILE = @DEFAULT_AMANDATES_FILE@
324 DEFAULT_CHANGER_DEVICE = @DEFAULT_CHANGER_DEVICE@
325 DEFAULT_CONFIG = @DEFAULT_CONFIG@
326 DEFAULT_MAILER = @DEFAULT_MAILER@
327 DEFAULT_SERVER = @DEFAULT_SERVER@
328 DEFAULT_TAPE_DEVICE = @DEFAULT_TAPE_DEVICE@
329 DEFAULT_TAPE_SERVER = @DEFAULT_TAPE_SERVER@
330 DEFS = @DEFS@
331 DEPDIR = @DEPDIR@
332 DOC_BUILD_DATE = @DOC_BUILD_DATE@
333 DUMP = @DUMP@
334 DUMP_RETURNS_1 = @DUMP_RETURNS_1@
335 ECHO = @ECHO@
336 ECHO_C = @ECHO_C@
337 ECHO_N = @ECHO_N@
338 ECHO_T = @ECHO_T@
339 EGREP = @EGREP@
340 EOVERFLOW = @EOVERFLOW@
341 EXAMPLE_TAPEDEV = @EXAMPLE_TAPEDEV@
342 EXEEXT = @EXEEXT@
343 F77 = @F77@
344 FFLAGS = @FFLAGS@
345 FLOAT_H = @FLOAT_H@
346 GETCONF = @GETCONF@
347 GETOPT_H = @GETOPT_H@
348 GETTEXT = @GETTEXT@
349 GLIB_CFLAGS = @GLIB_CFLAGS@
350 GLIB_GENMARSHAL = @GLIB_GENMARSHAL@
351 GLIB_LIBS = @GLIB_LIBS@
352 GLIB_MKENUMS = @GLIB_MKENUMS@
353 GMSGFMT = @GMSGFMT@
354 GMSGFMT_015 = @GMSGFMT_015@
355 GNULIB_CALLOC_POSIX = @GNULIB_CALLOC_POSIX@
356 GNULIB_CHOWN = @GNULIB_CHOWN@
357 GNULIB_DUP2 = @GNULIB_DUP2@
358 GNULIB_ENVIRON = @GNULIB_ENVIRON@
359 GNULIB_FCHDIR = @GNULIB_FCHDIR@
360 GNULIB_FFLUSH = @GNULIB_FFLUSH@
361 GNULIB_FOPEN = @GNULIB_FOPEN@
362 GNULIB_FPRINTF_POSIX = @GNULIB_FPRINTF_POSIX@
363 GNULIB_FREOPEN = @GNULIB_FREOPEN@
364 GNULIB_FSEEK = @GNULIB_FSEEK@
365 GNULIB_FSEEKO = @GNULIB_FSEEKO@
366 GNULIB_FTELL = @GNULIB_FTELL@
367 GNULIB_FTELLO = @GNULIB_FTELLO@
368 GNULIB_FTRUNCATE = @GNULIB_FTRUNCATE@
369 GNULIB_GETCWD = @GNULIB_GETCWD@
370 GNULIB_GETDELIM = @GNULIB_GETDELIM@
371 GNULIB_GETLINE = @GNULIB_GETLINE@
372 GNULIB_GETLOGIN_R = @GNULIB_GETLOGIN_R@
373 GNULIB_GETPAGESIZE = @GNULIB_GETPAGESIZE@
374 GNULIB_GETSUBOPT = @GNULIB_GETSUBOPT@
375 GNULIB_LCHOWN = @GNULIB_LCHOWN@
376 GNULIB_LSEEK = @GNULIB_LSEEK@
377 GNULIB_MALLOC_POSIX = @GNULIB_MALLOC_POSIX@
378 GNULIB_MBSCASECMP = @GNULIB_MBSCASECMP@
379 GNULIB_MBSCASESTR = @GNULIB_MBSCASESTR@
380 GNULIB_MBSCHR = @GNULIB_MBSCHR@
381 GNULIB_MBSCSPN = @GNULIB_MBSCSPN@
382 GNULIB_MBSLEN = @GNULIB_MBSLEN@
383 GNULIB_MBSNCASECMP = @GNULIB_MBSNCASECMP@
384 GNULIB_MBSNLEN = @GNULIB_MBSNLEN@
385 GNULIB_MBSPBRK = @GNULIB_MBSPBRK@
386 GNULIB_MBSPCASECMP = @GNULIB_MBSPCASECMP@
387 GNULIB_MBSRCHR = @GNULIB_MBSRCHR@
388 GNULIB_MBSSEP = @GNULIB_MBSSEP@
389 GNULIB_MBSSPN = @GNULIB_MBSSPN@
390 GNULIB_MBSSTR = @GNULIB_MBSSTR@
391 GNULIB_MBSTOK_R = @GNULIB_MBSTOK_R@
392 GNULIB_MEMMEM = @GNULIB_MEMMEM@
393 GNULIB_MEMPCPY = @GNULIB_MEMPCPY@
394 GNULIB_MEMRCHR = @GNULIB_MEMRCHR@
395 GNULIB_MKDTEMP = @GNULIB_MKDTEMP@
396 GNULIB_MKSTEMP = @GNULIB_MKSTEMP@
397 GNULIB_PRINTF_POSIX = @GNULIB_PRINTF_POSIX@
398 GNULIB_PUTENV = @GNULIB_PUTENV@
399 GNULIB_READLINK = @GNULIB_READLINK@
400 GNULIB_REALLOC_POSIX = @GNULIB_REALLOC_POSIX@
401 GNULIB_SETENV = @GNULIB_SETENV@
402 GNULIB_SLEEP = @GNULIB_SLEEP@
403 GNULIB_SNPRINTF = @GNULIB_SNPRINTF@
404 GNULIB_SPRINTF_POSIX = @GNULIB_SPRINTF_POSIX@
405 GNULIB_STPCPY = @GNULIB_STPCPY@
406 GNULIB_STPNCPY = @GNULIB_STPNCPY@
407 GNULIB_STRCASESTR = @GNULIB_STRCASESTR@
408 GNULIB_STRCHRNUL = @GNULIB_STRCHRNUL@
409 GNULIB_STRDUP = @GNULIB_STRDUP@
410 GNULIB_STRERROR = @GNULIB_STRERROR@
411 GNULIB_STRNDUP = @GNULIB_STRNDUP@
412 GNULIB_STRNLEN = @GNULIB_STRNLEN@
413 GNULIB_STRPBRK = @GNULIB_STRPBRK@
414 GNULIB_STRSEP = @GNULIB_STRSEP@
415 GNULIB_STRSIGNAL = @GNULIB_STRSIGNAL@
416 GNULIB_STRSTR = @GNULIB_STRSTR@
417 GNULIB_STRTOK_R = @GNULIB_STRTOK_R@
418 GNULIB_UNSETENV = @GNULIB_UNSETENV@
419 GNULIB_VASPRINTF = @GNULIB_VASPRINTF@
420 GNULIB_VFPRINTF_POSIX = @GNULIB_VFPRINTF_POSIX@
421 GNULIB_VPRINTF_POSIX = @GNULIB_VPRINTF_POSIX@
422 GNULIB_VSNPRINTF = @GNULIB_VSNPRINTF@
423 GNULIB_VSPRINTF_POSIX = @GNULIB_VSPRINTF_POSIX@
424 GNULIB_WCWIDTH = @GNULIB_WCWIDTH@
425 GNUPLOT = @GNUPLOT@
426 GNUTAR = @GNUTAR@
427 GNUTAR_LISTED_INCREMENTAL_DIR = @GNUTAR_LISTED_INCREMENTAL_DIR@
428 GOBJECT_QUERY = @GOBJECT_QUERY@
429 GREP = @GREP@
430 GZIP = @GZIP@
431 HAVE_CALLOC_POSIX = @HAVE_CALLOC_POSIX@
432 HAVE_DECL_ENVIRON = @HAVE_DECL_ENVIRON@
433 HAVE_DECL_GETDELIM = @HAVE_DECL_GETDELIM@
434 HAVE_DECL_GETLINE = @HAVE_DECL_GETLINE@
435 HAVE_DECL_GETLOGIN_R = @HAVE_DECL_GETLOGIN_R@
436 HAVE_DECL_MEMMEM = @HAVE_DECL_MEMMEM@
437 HAVE_DECL_MEMRCHR = @HAVE_DECL_MEMRCHR@
438 HAVE_DECL_MKDIR = @HAVE_DECL_MKDIR@
439 HAVE_DECL_SNPRINTF = @HAVE_DECL_SNPRINTF@
440 HAVE_DECL_STRDUP = @HAVE_DECL_STRDUP@
441 HAVE_DECL_STRERROR = @HAVE_DECL_STRERROR@
442 HAVE_DECL_STRNDUP = @HAVE_DECL_STRNDUP@
443 HAVE_DECL_STRNLEN = @HAVE_DECL_STRNLEN@
444 HAVE_DECL_STRSIGNAL = @HAVE_DECL_STRSIGNAL@
445 HAVE_DECL_STRTOK_R = @HAVE_DECL_STRTOK_R@
446 HAVE_DECL_VSNPRINTF = @HAVE_DECL_VSNPRINTF@
447 HAVE_DECL_WCWIDTH = @HAVE_DECL_WCWIDTH@
448 HAVE_DUP2 = @HAVE_DUP2@
449 HAVE_FSEEKO = @HAVE_FSEEKO@
450 HAVE_FTELLO = @HAVE_FTELLO@
451 HAVE_FTRUNCATE = @HAVE_FTRUNCATE@
452 HAVE_GETPAGESIZE = @HAVE_GETPAGESIZE@
453 HAVE_GETSUBOPT = @HAVE_GETSUBOPT@
454 HAVE_GZIP = @HAVE_GZIP@
455 HAVE_INTTYPES_H = @HAVE_INTTYPES_H@
456 HAVE_IO_H = @HAVE_IO_H@
457 HAVE_LONG_LONG_INT = @HAVE_LONG_LONG_INT@
458 HAVE_LSTAT = @HAVE_LSTAT@
459 HAVE_MALLOC_POSIX = @HAVE_MALLOC_POSIX@
460 HAVE_MEMPCPY = @HAVE_MEMPCPY@
461 HAVE_MKDTEMP = @HAVE_MKDTEMP@
462 HAVE_NETINET_IN_H = @HAVE_NETINET_IN_H@
463 HAVE_OS_H = @HAVE_OS_H@
464 HAVE_READLINK = @HAVE_READLINK@
465 HAVE_REALLOC_POSIX = @HAVE_REALLOC_POSIX@
466 HAVE_SETENV = @HAVE_SETENV@
467 HAVE_SIGNED_SIG_ATOMIC_T = @HAVE_SIGNED_SIG_ATOMIC_T@
468 HAVE_SIGNED_WCHAR_T = @HAVE_SIGNED_WCHAR_T@
469 HAVE_SIGNED_WINT_T = @HAVE_SIGNED_WINT_T@
470 HAVE_SLEEP = @HAVE_SLEEP@
471 HAVE_STDINT_H = @HAVE_STDINT_H@
472 HAVE_STPCPY = @HAVE_STPCPY@
473 HAVE_STPNCPY = @HAVE_STPNCPY@
474 HAVE_STRCASESTR = @HAVE_STRCASESTR@
475 HAVE_STRCHRNUL = @HAVE_STRCHRNUL@
476 HAVE_STRNDUP = @HAVE_STRNDUP@
477 HAVE_STRPBRK = @HAVE_STRPBRK@
478 HAVE_STRSEP = @HAVE_STRSEP@
479 HAVE_STRUCT_TIMEVAL = @HAVE_STRUCT_TIMEVAL@
480 HAVE_SYS_BITYPES_H = @HAVE_SYS_BITYPES_H@
481 HAVE_SYS_INTTYPES_H = @HAVE_SYS_INTTYPES_H@
482 HAVE_SYS_PARAM_H = @HAVE_SYS_PARAM_H@
483 HAVE_SYS_SOCKET_H = @HAVE_SYS_SOCKET_H@
484 HAVE_SYS_TIME_H = @HAVE_SYS_TIME_H@
485 HAVE_SYS_TYPES_H = @HAVE_SYS_TYPES_H@
486 HAVE_UNISTD_H = @HAVE_UNISTD_H@
487 HAVE_UNSETENV = @HAVE_UNSETENV@
488 HAVE_UNSIGNED_LONG_LONG_INT = @HAVE_UNSIGNED_LONG_LONG_INT@
489 HAVE_VASPRINTF = @HAVE_VASPRINTF@
490 HAVE_VISIBILITY = @HAVE_VISIBILITY@
491 HAVE_WCHAR_H = @HAVE_WCHAR_H@
492 HAVE_WINSOCK2_H = @HAVE_WINSOCK2_H@
493 HAVE_WS2TCPIP_H = @HAVE_WS2TCPIP_H@
494 HAVE__BOOL = @HAVE__BOOL@
495 INCLUDE_NEXT = @INCLUDE_NEXT@
496 INSTALL = @INSTALL@
497 INSTALL_DATA = @INSTALL_DATA@
498 INSTALL_PROGRAM = @INSTALL_PROGRAM@
499 INSTALL_SCRIPT = @INSTALL_SCRIPT@
500 INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@
501 INTLLIBS = @INTLLIBS@
502 INTL_MACOSX_LIBS = @INTL_MACOSX_LIBS@
503 KRB4_SECURITY = @KRB4_SECURITY@
504 KRB5_SECURITY = @KRB5_SECURITY@
505 LDFLAGS = @LDFLAGS@
506 LEX = @LEX@
507 LEXLIB = @LEXLIB@
508 LEX_OUTPUT_ROOT = @LEX_OUTPUT_ROOT@
509 LIBCURL = @LIBCURL@
510 LIBCURL_CPPFLAGS = @LIBCURL_CPPFLAGS@
511 LIBICONV = @LIBICONV@
512 LIBINTL = @LIBINTL@
513 LIBMULTITHREAD = @LIBMULTITHREAD@
514 LIBOBJS = @LIBOBJS@
515 LIBPTH = @LIBPTH@
516 LIBS = @LIBS@
517 LIBTHREAD = @LIBTHREAD@
518 LIBTOOL = @LIBTOOL@
519 LIBTOOL_DEPS = @LIBTOOL_DEPS@
520 LN_S = @LN_S@
521 LOCKING = @LOCKING@
522 LOW_TCPPORTRANGE = @LOW_TCPPORTRANGE@
523 LTLIBICONV = @LTLIBICONV@
524 LTLIBINTL = @LTLIBINTL@
525 LTLIBMULTITHREAD = @LTLIBMULTITHREAD@
526 LTLIBOBJS = @LTLIBOBJS@
527 LTLIBPTH = @LTLIBPTH@
528 LTLIBTHREAD = @LTLIBTHREAD@
529 MAILER = @MAILER@
530 MAKEINFO = @MAKEINFO@
531 MCUTIL = @MCUTIL@
532 MKDIR_P = @MKDIR_P@
533 MSGFMT = @MSGFMT@
534 MSGFMT_015 = @MSGFMT_015@
535 MSGMERGE = @MSGMERGE@
536 MT = @MT@
537 MTX = @MTX@
538 MT_FILE_FLAG = @MT_FILE_FLAG@
539 NETINET_IN_H = @NETINET_IN_H@
540 NEXT_FLOAT_H = @NEXT_FLOAT_H@
541 NEXT_NETINET_IN_H = @NEXT_NETINET_IN_H@
542 NEXT_STDINT_H = @NEXT_STDINT_H@
543 NEXT_STDIO_H = @NEXT_STDIO_H@
544 NEXT_STDLIB_H = @NEXT_STDLIB_H@
545 NEXT_STRING_H = @NEXT_STRING_H@
546 NEXT_SYS_SOCKET_H = @NEXT_SYS_SOCKET_H@
547 NEXT_SYS_STAT_H = @NEXT_SYS_STAT_H@
548 NEXT_SYS_TIME_H = @NEXT_SYS_TIME_H@
549 NEXT_UNISTD_H = @NEXT_UNISTD_H@
550 NEXT_WCHAR_H = @NEXT_WCHAR_H@
551 OBJEXT = @OBJEXT@
552 PACKAGE = @PACKAGE@
553 PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@
554 PACKAGE_NAME = @PACKAGE_NAME@
555 PACKAGE_STRING = @PACKAGE_STRING@
556 PACKAGE_TARNAME = @PACKAGE_TARNAME@
557 PACKAGE_VERSION = @PACKAGE_VERSION@
558 PATH_SEPARATOR = @PATH_SEPARATOR@
559 PCAT = @PCAT@
560 PERL = @PERL@
561 PERLEXTLIBS = @PERLEXTLIBS@
562 PERL_INC = @PERL_INC@
563 PKG_CONFIG = @PKG_CONFIG@
564 POSUB = @POSUB@
565 PRINT = @PRINT@
566 PS = @PS@
567 PS_ARGUMENT = @PS_ARGUMENT@
568 PTRDIFF_T_SUFFIX = @PTRDIFF_T_SUFFIX@
569 RANLIB = @RANLIB@
570 READLINE_LIBS = @READLINE_LIBS@
571 REPLACE_CHOWN = @REPLACE_CHOWN@
572 REPLACE_FCHDIR = @REPLACE_FCHDIR@
573 REPLACE_FFLUSH = @REPLACE_FFLUSH@
574 REPLACE_FOPEN = @REPLACE_FOPEN@
575 REPLACE_FPRINTF = @REPLACE_FPRINTF@
576 REPLACE_FREOPEN = @REPLACE_FREOPEN@
577 REPLACE_FSEEK = @REPLACE_FSEEK@
578 REPLACE_FSEEKO = @REPLACE_FSEEKO@
579 REPLACE_FTELL = @REPLACE_FTELL@
580 REPLACE_FTELLO = @REPLACE_FTELLO@
581 REPLACE_GETCWD = @REPLACE_GETCWD@
582 REPLACE_GETLINE = @REPLACE_GETLINE@
583 REPLACE_GETPAGESIZE = @REPLACE_GETPAGESIZE@
584 REPLACE_GETTIMEOFDAY = @REPLACE_GETTIMEOFDAY@
585 REPLACE_LCHOWN = @REPLACE_LCHOWN@
586 REPLACE_LSEEK = @REPLACE_LSEEK@
587 REPLACE_MEMMEM = @REPLACE_MEMMEM@
588 REPLACE_MKSTEMP = @REPLACE_MKSTEMP@
589 REPLACE_PRINTF = @REPLACE_PRINTF@
590 REPLACE_PUTENV = @REPLACE_PUTENV@
591 REPLACE_SNPRINTF = @REPLACE_SNPRINTF@
592 REPLACE_SPRINTF = @REPLACE_SPRINTF@
593 REPLACE_STRCASESTR = @REPLACE_STRCASESTR@
594 REPLACE_STRERROR = @REPLACE_STRERROR@
595 REPLACE_STRSIGNAL = @REPLACE_STRSIGNAL@
596 REPLACE_STRSTR = @REPLACE_STRSTR@
597 REPLACE_VASPRINTF = @REPLACE_VASPRINTF@
598 REPLACE_VFPRINTF = @REPLACE_VFPRINTF@
599 REPLACE_VPRINTF = @REPLACE_VPRINTF@
600 REPLACE_VSNPRINTF = @REPLACE_VSNPRINTF@
601 REPLACE_VSPRINTF = @REPLACE_VSPRINTF@
602 REPLACE_WCWIDTH = @REPLACE_WCWIDTH@
603 RESTORE = @RESTORE@
604 RSH_SECURITY = @RSH_SECURITY@
605 SAMBA_CLIENT = @SAMBA_CLIENT@
606 SERVER_HOST_INSTANCE = @SERVER_HOST_INSTANCE@
607 SERVER_HOST_KEY_FILE = @SERVER_HOST_KEY_FILE@
608 SERVER_HOST_PRINCIPAL = @SERVER_HOST_PRINCIPAL@
609 SERVICE_SUFFIX = @SERVICE_SUFFIX@
610 SETUID_GROUP = @SETUID_GROUP@
611 SET_MAKE = @SET_MAKE@
612 SHELL = @SHELL@
613 SIG_ATOMIC_T_SUFFIX = @SIG_ATOMIC_T_SUFFIX@
614 SIZE_T_SUFFIX = @SIZE_T_SUFFIX@
615 SNAPSHOT_STAMP = @SNAPSHOT_STAMP@
616 SORT = @SORT@
617 SSH = @SSH@
618 SSH_SECURITY = @SSH_SECURITY@
619 STDBOOL_H = @STDBOOL_H@
620 STDINT_H = @STDINT_H@
621 STRIP = @STRIP@
622 SVN = @SVN@
623 SWIG = @SWIG@
624 SWIG_LIB = @SWIG_LIB@
625 SYS_SOCKET_H = @SYS_SOCKET_H@
626 SYS_STAT_H = @SYS_STAT_H@
627 SYS_TIME_H = @SYS_TIME_H@
628 TCPPORTRANGE = @TCPPORTRANGE@
629 TICKET_LIFETIME = @TICKET_LIFETIME@
630 UDPPORTRANGE = @UDPPORTRANGE@
631 UNCOMPRESS_OPT = @UNCOMPRESS_OPT@
632 UNCOMPRESS_PATH = @UNCOMPRESS_PATH@
633 USE_AMANDAHOSTS = @USE_AMANDAHOSTS@
634 USE_NLS = @USE_NLS@
635 USE_RUNDUMP = @USE_RUNDUMP@
636 USE_VERSION_SUFFIXES = @USE_VERSION_SUFFIXES@
637 VDUMP = @VDUMP@
638 VERSION = @VERSION@
639 VERSION_COMMENT = @VERSION_COMMENT@
640 VERSION_MAJOR = @VERSION_MAJOR@
641 VERSION_MINOR = @VERSION_MINOR@
642 VERSION_PATCH = @VERSION_PATCH@
643 VERSION_SUFFIX = @VERSION_SUFFIX@
644 VOID_UNSETENV = @VOID_UNSETENV@
645 VRESTORE = @VRESTORE@
646 VXDUMP = @VXDUMP@
647 VXRESTORE = @VXRESTORE@
648 WCHAR_H = @WCHAR_H@
649 WCHAR_T_SUFFIX = @WCHAR_T_SUFFIX@
650 WINT_T_SUFFIX = @WINT_T_SUFFIX@
651 XFSDUMP = @XFSDUMP@
652 XFSRESTORE = @XFSRESTORE@
653 XGETTEXT = @XGETTEXT@
654 XGETTEXT_015 = @XGETTEXT_015@
655 XSLREL = @XSLREL@
656 XSLTPROC = @XSLTPROC@
657 XSLTPROC_FLAGS = @XSLTPROC_FLAGS@
658 YACC = @YACC@
659 YFLAGS = @YFLAGS@
660 _libcurl_config = @_libcurl_config@
661 abs_builddir = @abs_builddir@
662 abs_srcdir = @abs_srcdir@
663 abs_top_builddir = @abs_top_builddir@
664 abs_top_srcdir = @abs_top_srcdir@
665 ac_ct_CC = @ac_ct_CC@
666 ac_ct_CXX = @ac_ct_CXX@
667 ac_ct_F77 = @ac_ct_F77@
668 am__include = @am__include@
669 am__leading_dot = @am__leading_dot@
670 am__quote = @am__quote@
671 am__tar = @am__tar@
672 am__untar = @am__untar@
673 amdatadir = @amdatadir@
674 amincludedir = @amincludedir@
675 amlibdir = @amlibdir@
676 amlibexecdir = @amlibexecdir@
677 amperldir = @amperldir@
678 bindir = @bindir@
679 build = @build@
680 build_alias = @build_alias@
681 build_cpu = @build_cpu@
682 build_os = @build_os@
683 build_vendor = @build_vendor@
684 builddir = @builddir@
685 datadir = @datadir@
686 datarootdir = @datarootdir@
687 docdir = @docdir@
688 dvidir = @dvidir@
689 exec_prefix = @exec_prefix@
690 gl_LIBOBJS = @gl_LIBOBJS@
691 gl_LTLIBOBJS = @gl_LTLIBOBJS@
692 gltests_LIBOBJS = @gltests_LIBOBJS@
693 gltests_LTLIBOBJS = @gltests_LTLIBOBJS@
694 host = @host@
695 host_alias = @host_alias@
696 host_cpu = @host_cpu@
697 host_os = @host_os@
698 host_vendor = @host_vendor@
699 htmldir = @htmldir@
700 includedir = @includedir@
701 infodir = @infodir@
702 install_sh = @install_sh@
703 libdir = @libdir@
704 libexecdir = @libexecdir@
705 localedir = @localedir@
706 localstatedir = @localstatedir@
707 mandir = @mandir@
708 mkdir_p = @mkdir_p@
709 oldincludedir = @oldincludedir@
710 pdfdir = @pdfdir@
711 prefix = @prefix@
712 program_transform_name = @program_transform_name@
713 psdir = @psdir@
714 sbindir = @sbindir@
715 sharedstatedir = @sharedstatedir@
716 srcdir = @srcdir@
717 sysconfdir = @sysconfdir@
718 target = @target@
719 target_alias = @target_alias@
720 target_cpu = @target_cpu@
721 target_os = @target_os@
722 target_vendor = @target_vendor@
723 top_build_prefix = @top_build_prefix@
724 top_builddir = @top_builddir@
725 top_srcdir = @top_srcdir@
726 SUFFIXES = 
727 EXTRA_DIST = $(test_utils)
728 BUILT_SOURCES = 
729 MOSTLYCLEANFILES = 
730
731 # config.status leaves config.log files around
732 CLEANFILES = config.log
733
734 # and we'll need to clean up our generated files for distclean
735 DISTCLEANFILES = $(SCRIPTS_SHELL) $(SCRIPTS_PERL) $(SCRIPTS_AWK) \
736         $(SCRIPTS_INCLUDE)
737 MAINTAINERCLEANFILES = 
738
739 # syntax-check shell scripts on 'make check'
740 CHECK_SHELL = $(SCRIPTS_SHELL)
741
742 # Add your tests here.
743 common_tests = \
744         Amanda_Archive \
745         Amanda_Config \
746         Amanda_Debug \
747         Amanda_MainLoop \
748         Amanda_Types \
749         Amanda_Util \
750         amarchiver
751
752 server_tests = \
753         Amanda_Changer \
754         Amanda_Changer_compat \
755         Amanda_Changer_disk \
756         Amanda_Changer_single \
757         Amanda_Cmdline \
758         Amanda_DB_Catalog \
759         Amanda_Device \
760         Amanda_Logfile \
761         Amanda_Tapelist \
762         Amanda_Process \
763         Amanda_Xfer \
764         bigint \
765         amgetconf \
766         amtapetype
767
768 full_tests = \
769         amdevcheck \
770         amcheckdump \
771         amdump \
772         amservice \
773         amstatus \
774         pp-scripts
775
776 restore_tests = \
777         amfetchdump
778
779
780 # tests requiring neither client nor server
781 tests = $(common_tests) $(am__append_1) $(am__append_2) \
782         $(am__append_3)
783
784 # Add any common files (that should not be run as tests, and that do not
785 # require configure-variable substitution) here:
786 test_utils = Installcheck/Config.pm Installcheck/Run.pm
787 CHECK_PERL_FLAGS = -I$(top_srcdir)/installcheck
788 SCRIPTS_PERL = $(tests)
789
790 # we don't need to syntax check the test scripts..
791 CHECK_PERL = 
792 all: $(BUILT_SOURCES)
793         $(MAKE) $(AM_MAKEFLAGS) all-am
794
795 .SUFFIXES:
796 .SUFFIXES: 
797 $(srcdir)/Makefile.in:  $(srcdir)/Makefile.am $(top_srcdir)/config/automake/vars.am $(top_srcdir)/config/automake/scripts.am $(am__configure_deps)
798         @for dep in $?; do \
799           case '$(am__configure_deps)' in \
800             *$$dep*) \
801               ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \
802                 && { if test -f $@; then exit 0; else break; fi; }; \
803               exit 1;; \
804           esac; \
805         done; \
806         echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu installcheck/Makefile'; \
807         $(am__cd) $(top_srcdir) && \
808           $(AUTOMAKE) --gnu installcheck/Makefile
809 .PRECIOUS: Makefile
810 Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
811         @case '$?' in \
812           *config.status*) \
813             cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \
814           *) \
815             echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \
816             cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \
817         esac;
818
819 $(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES)
820         cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
821
822 $(top_srcdir)/configure:  $(am__configure_deps)
823         cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
824 $(ACLOCAL_M4):  $(am__aclocal_m4_deps)
825         cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
826 $(am__aclocal_m4_deps):
827
828 mostlyclean-libtool:
829         -rm -f *.lo
830
831 clean-libtool:
832         -rm -rf .libs _libs
833 tags: TAGS
834 TAGS:
835
836 ctags: CTAGS
837 CTAGS:
838
839
840 distdir: $(DISTFILES)
841         @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
842         topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
843         list='$(DISTFILES)'; \
844           dist_files=`for file in $$list; do echo $$file; done | \
845           sed -e "s|^$$srcdirstrip/||;t" \
846               -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \
847         case $$dist_files in \
848           */*) $(MKDIR_P) `echo "$$dist_files" | \
849                            sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \
850                            sort -u` ;; \
851         esac; \
852         for file in $$dist_files; do \
853           if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \
854           if test -d $$d/$$file; then \
855             dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \
856             if test -d "$(distdir)/$$file"; then \
857               find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \
858             fi; \
859             if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \
860               cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \
861               find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \
862             fi; \
863             cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \
864           else \
865             test -f "$(distdir)/$$file" \
866             || cp -p $$d/$$file "$(distdir)/$$file" \
867             || exit 1; \
868           fi; \
869         done
870         $(MAKE) $(AM_MAKEFLAGS) \
871           top_distdir="$(top_distdir)" distdir="$(distdir)" \
872           dist-hook
873 check-am: all-am
874         $(MAKE) $(AM_MAKEFLAGS) check-local
875 check: $(BUILT_SOURCES)
876         $(MAKE) $(AM_MAKEFLAGS) check-am
877 all-am: Makefile
878 installdirs:
879 install: $(BUILT_SOURCES)
880         $(MAKE) $(AM_MAKEFLAGS) install-am
881 install-exec: install-exec-am
882 install-data: install-data-am
883 uninstall: uninstall-am
884
885 install-am: all-am
886         @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am
887
888 installcheck: installcheck-am
889 install-strip:
890         $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \
891           install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \
892           `test -z '$(STRIP)' || \
893             echo "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'"` install
894 mostlyclean-generic:
895         -test -z "$(MOSTLYCLEANFILES)" || rm -f $(MOSTLYCLEANFILES)
896
897 clean-generic:
898         -test -z "$(CLEANFILES)" || rm -f $(CLEANFILES)
899
900 distclean-generic:
901         -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES)
902         -test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES)
903         -test -z "$(DISTCLEANFILES)" || rm -f $(DISTCLEANFILES)
904
905 maintainer-clean-generic:
906         @echo "This command is intended for maintainers to use"
907         @echo "it deletes files that may require special tools to rebuild."
908         -test -z "$(BUILT_SOURCES)" || rm -f $(BUILT_SOURCES)
909         -test -z "$(MAINTAINERCLEANFILES)" || rm -f $(MAINTAINERCLEANFILES)
910 clean: clean-am
911
912 clean-am: clean-generic clean-libtool mostlyclean-am
913
914 distclean: distclean-am
915         -rm -f Makefile
916 distclean-am: clean-am distclean-generic
917
918 dvi: dvi-am
919
920 dvi-am:
921
922 html: html-am
923
924 html-am:
925
926 info: info-am
927
928 info-am:
929
930 install-data-am:
931
932 install-dvi: install-dvi-am
933
934 install-dvi-am:
935
936 install-exec-am:
937
938 install-html: install-html-am
939
940 install-html-am:
941
942 install-info: install-info-am
943
944 install-info-am:
945
946 install-man:
947
948 install-pdf: install-pdf-am
949
950 install-pdf-am:
951
952 install-ps: install-ps-am
953
954 install-ps-am:
955
956 installcheck-am: installcheck-local
957
958 maintainer-clean: maintainer-clean-am
959         -rm -f Makefile
960 maintainer-clean-am: distclean-am maintainer-clean-generic
961
962 mostlyclean: mostlyclean-am
963
964 mostlyclean-am: mostlyclean-generic mostlyclean-libtool
965
966 pdf: pdf-am
967
968 pdf-am:
969
970 ps: ps-am
971
972 ps-am:
973
974 uninstall-am:
975
976 .MAKE: all check check-am install install-am install-strip
977
978 .PHONY: all all-am check check-am check-local clean clean-generic \
979         clean-libtool dist-hook distclean distclean-generic \
980         distclean-libtool distdir dvi dvi-am html html-am info info-am \
981         install install-am install-data install-data-am install-dvi \
982         install-dvi-am install-exec install-exec-am install-html \
983         install-html-am install-info install-info-am install-man \
984         install-pdf install-pdf-am install-ps install-ps-am \
985         install-strip installcheck installcheck-am installcheck-local \
986         installdirs maintainer-clean maintainer-clean-generic \
987         mostlyclean mostlyclean-generic mostlyclean-libtool pdf pdf-am \
988         ps ps-am uninstall uninstall-am
989
990
991 # Perl
992 %: %.pl $(top_builddir)/config.status
993         $(top_builddir)/config.status --file=$@:$<
994         chmod a+x $@
995         @if test -f $(top_builddir)/perl/.libs/libCmdline.so -o -f $(top_builddir)/perl/libCmdline.so; then \
996                 grep -v '^use lib' $@ > $@.nouselib; \
997                 $(PERL) $(CHECK_PERL_FLAGS) -I$(top_builddir)/perl -I$(top_builddir)/perl/.libs -I$(top_srcdir)/perl -c -w -T $@.nouselib || exit 1; \
998                 rm $@.nouselib; \
999         fi
1000
1001 %.pl: %.pl.in $(top_builddir)/config.status
1002         $(top_builddir)/config.status --file=$@:$<
1003
1004 %.pm: %.pm.in $(top_builddir)/config.status
1005         $(top_builddir)/config.status --file=$@:$<
1006
1007 # Shell
1008 %: %.sh $(top_builddir)/config.status
1009         $(top_builddir)/config.status --file=$@:$<
1010         chmod a+x $@
1011
1012 %.sh: %.sh.in $(top_builddir)/config.status
1013         $(top_builddir)/config.status --file=$@:$<
1014
1015 # Awk
1016 %: %.awk $(top_builddir)/config.status
1017         $(top_builddir)/config.status --file=$@:$<
1018         chmod a+x $@
1019
1020 %.awk: %.awk.in $(top_builddir)/config.status
1021         $(top_builddir)/config.status --file=$@:$<
1022
1023 # syntax-check perl scripts on 'make check'
1024 check-perl: $(CHECK_PERL)
1025         @CHECK_PERL="$(CHECK_PERL)"; \
1026         if test -f $(top_builddir)/perl/.libs/libCmdline.so -o -f $(top_builddir)/perl/libCmdline.so; then \
1027                 if test -n "$(PERL)"; then \
1028                         for perlobj in $$CHECK_PERL; do \
1029                                 grep -v '^use lib' $$perlobj > $$perlobj.nouselib; \
1030                                 $(PERL) $(CHECK_PERL_FLAGS) -I$(top_builddir)/perl -I$(top_builddir)/perl/.libs -I$(top_srcdir)/perl -c -w -T $$perlobj.nouselib || exit 1; \
1031                                 rm $$perlobj.nouselib; \
1032                         done; \
1033                 fi \
1034         fi
1035 check-local: check-perl
1036
1037 # syntax-check perl scripts on 'make installcheck'
1038 installcheck-perl: $(CHECK_PERL)
1039         @CHECK_PERL="$(CHECK_PERL)"; \
1040         if test -n "$(PERL)"; then \
1041                 for perlobj in $$CHECK_PERL; do \
1042                         $(PERL) $(CHECK_PERL_FLAGS) -c -w -T $$perlobj || exit 1; \
1043                 done; \
1044         fi
1045 installcheck-local: installcheck-perl
1046 check-shell: $(CHECK_SHELL)
1047         @CHECK_SHELL="$(CHECK_SHELL)"; \
1048         if test -n "$$CHECK_SHELL"; then \
1049                 if test -n "$(BASH)"; then \
1050                         for shobj in $$CHECK_SHELL; do \
1051                                 if $(BASH) -n $$shobj; then \
1052                                         echo "$$shobj syntax OK"; \
1053                                 else \
1054                                         echo "$$shobj syntax error"; \
1055                                         exit 1; \
1056                                 fi; \
1057                         done; \
1058                 else \
1059                         echo "No 'bash' available -- cannot syntax-check shell scripts"; \
1060                 fi; \
1061         fi
1062 check-local: check-shell
1063
1064 # make sure that the sources for all shell and perl scripts get included
1065 # in the distribution
1066 dist-scripts:
1067         SCRIPTS_PERL="$(SCRIPTS_PERL)"; SCRIPTS_SHELL="$(SCRIPTS_SHELL)"; SCRIPTS_AWK="$(SCRIPTS_AWK)"; \
1068         for script in $$SCRIPTS_PERL; do \
1069                 test -f $(srcdir)/$${script}.pl && { cp -p $(srcdir)/$${script}.pl $(distdir)/ || exit 1; } \
1070         done; \
1071         for script in $$SCRIPTS_SHELL; do \
1072                 test -f $(srcdir)/$${script}.sh && { cp -p $(srcdir)/$${script}.sh $(distdir)/ || exit 1; } \
1073         done; \
1074         for script in $$SCRIPTS_AWK; do \
1075                 test -f $(srcdir)/$${script}.awk && { cp -p $(srcdir)/$${script}.awk $(distdir)/ || exit 1; } \
1076         done; \
1077         for script in $$SCRIPTS_SHELL $$SCRIPTS_PERL $$SCRIPTS_AWK; do \
1078                 test -f $(srcdir)/$${script}.in && { cp -p $(srcdir)/$${script}.in $(distdir)/ || exit 1; } \
1079         done; \
1080         true
1081 dist-hook: dist-scripts
1082
1083 .PHONY: clobber_my_config_is_ok
1084 clobber_my_config_is_ok:
1085         @if test "$(CONFIG_CLOBBER_MY_CONFIG)" != "OK" -a \
1086                  "$(CLOBBER_MY_CONFIG)" != "OK"; then \
1087                 echo ""; \
1088                 echo "'make installcheck' is a dangerous tool.  It will overwrite your"; \
1089                 echo "amanda-client.conf and amandates, and (if it triggers an as-yet undetected"; \
1090                 echo "bug) may do other unexpected things.  You are strongly encouraged"; \
1091                 echo "  - not to run installchecks on a production install"; \
1092                 echo "  - not to run installchecks as root"; \
1093                 echo "See http://wiki.zmanda.com/index.php/Testing for instructions on setting up a"; \
1094                 echo "test environment in which potential damage is limited by your filesystem's"; \
1095                 echo "permissions.  To actually run the installchecks, invoke make as follows:"; \
1096                 echo "  $(MAKE) CLOBBER_MY_CONFIG=OK installcheck"; \
1097                 exit 1; \
1098         fi
1099
1100 installcheck-local: clobber_my_config_is_ok $(SCRIPTS_PERL)
1101         @$(mkdir_p) $(AMANDA_TMPDIR)
1102         @if test -f "$(CONFIG_DIR)/amanda-client.conf" -a ! -f "$(CONFIG_DIR)/amanda-client.conf.install-backup"; then \
1103             cp "$(CONFIG_DIR)/amanda-client.conf" "$(CONFIG_DIR)/amanda-client.conf.install-backup"; \
1104         fi 
1105         $(PERL) -I$(srcdir) -I. -e 'use Test::Harness qw(&runtests); runtests(@ARGV);' $(tests)
1106         rm -rf "$(CONFIG_DIR)/TESTCONF"
1107         @if test -f "$(CONFIG_DIR)/amanda-client.conf.install-backup"; then \
1108             mv -f "$(CONFIG_DIR)/amanda-client.conf.install-backup" "$(CONFIG_DIR)/amanda-client.conf"; \
1109         fi
1110         rm -rf "$(AMANDA_TMPDIR)/TESTCONF/amandates"
1111         rm -rf "$(AMANDA_TMPDIR)/TESTCONF/gnutar_listdir"
1112
1113 # Tell versions [3.59,3.63) of GNU make to not export all variables.
1114 # Otherwise a system limit (for SysV at least) may be exceeded.
1115 .NOEXPORT: