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