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