e8e9f0e347b1ca5f2b4238769720c5a84a74d148
[debian/amanda] / server-src / Makefile.in
1 # Makefile.in generated by automake 1.11 from Makefile.am.
2 # @configure_input@
3
4 # Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002,
5 # 2003, 2004, 2005, 2006, 2007, 2008, 2009  Free Software Foundation,
6 # Inc.
7 # This Makefile.in is free software; the Free Software Foundation
8 # gives unlimited permission to copy and/or distribute it,
9 # with or without modifications, as long as this notice is preserved.
10
11 # This program is distributed in the hope that it will be useful,
12 # but WITHOUT ANY WARRANTY, to the extent permitted by law; without
13 # even the implied warranty of MERCHANTABILITY or FITNESS FOR A
14 # PARTICULAR PURPOSE.
15
16 @SET_MAKE@
17
18 # Makefile for Amanda server programs.
19
20 # vim:ft=automake
21 # Copyright (c) 2007,2008,2009 Zmanda, Inc.  All Rights Reserved.
22 #
23 # This program is free software; you can redistribute it and/or modify it
24 # under the terms of the GNU General Public License version 2 as published
25 # by the Free Software Foundation.
26 #
27 # This program is distributed in the hope that it will be useful, but
28 # WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
29 # or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
30 # for more details.
31 #
32 # You should have received a copy of the GNU General Public License along
33 # with this program; if not, write to the Free Software Foundation, Inc.,
34 # 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
35 #
36 # Contact information: Zmanda Inc., 465 S. Mathilda Ave., Suite 300
37 # Sunnyvale, CA 94085, USA, or: http://www.zmanda.com
38
39 # simple include file to pre-define variables which are then +='d by other
40 # scripts in this directory.
41
42 # vim:ft=automake
43 # Copyright (c) 2007,2008,2009 Zmanda, Inc.  All Rights Reserved.
44 #
45 # This program is free software; you can redistribute it and/or modify it
46 # under the terms of the GNU General Public License version 2 as published
47 # by the Free Software Foundation.
48 #
49 # This program is distributed in the hope that it will be useful, but
50 # WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
51 # or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
52 # for more details.
53 #
54 # You should have received a copy of the GNU General Public License along
55 # with this program; if not, write to the Free Software Foundation, Inc.,
56 # 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
57 #
58 # Contact information: Zmanda Inc., 465 S. Mathilda Ave., Suite 300
59 # Sunnyvale, CA 94085, USA, or: http://www.zmanda.com
60
61 # SYNOPSIS:
62 #
63 # Automake magic to handle the various tasks of building scripts.  Scripts can
64 # be built down to extensionless executables (e.g., foo.pl -> foo), or to 
65 # files with the usual extension (foo-lib.sh.in -> foo.sh).
66 #
67 # Files which support it are syntax-checked when the user invokes 'make check',
68 # unless the Makefile.am defines SKIP_CHECKS.
69 #
70 # All *target* filenames must be listed in SCRIPTS_SHELL, SCRIPTS_PERL, and
71 # SCRIPTS_AWK to support 'make dist', and 'make distclean'. No files which are
72 # not substituted by config.status should be included in SCRIPTS_PERL,
73 # SCRIPTS_SHELL, or SCRIPTS_AWK.  If non-generated files are listed for
74 # installation, then Automake will figure out that they should be distributed;
75 # otherwise, include them in EXTRA_DIST.
76 #
77 # All SCRIPTS_SHELL and SCRIPTS_PERL are syntax-checked on 'make check'.  There is
78 # a fix in place to run these syntax checks against the perl modules in the build
79 # tree, rather than against the (potentially old) installed perl modules.
80 #
81 # To emulate EXTRA_DIST for scripts, use SCRIPTS_EXTRA_DIST, e.g.,
82 #   SCRIPTS_SHELL = $(selected_scripts)
83 #   SCRIPTS_EXTRA_DIST = $(all_scripts)
84 #
85 # USAGE:
86 #
87 #   include $(top_srcdir)/config/automake/vars.am
88 #   include $(top_srcdir)/config/automake/scripts.am
89 #   ...
90 #   SCRIPTS_PERL = fooscript barscript perl-lib.pl perlmod.pm
91 #   SCRIPTS_SHELL = shell1 shell2 sh-lib.sh
92 #   SCRIPTS_AWK = talk balk chalk awk-lib.awk
93 #   sbin_SCRIPTS = not-subbed
94 #   SCRIPTS_EXTRA_DIST = util-script
95 #
96 # with the corresponding files in the repository:
97 #
98 #   fooscript.pl barscript.pl perl-lib.pl.in perlmod.pm.in
99 #   shell1.sh shell2.sh sh-lib.sh.in
100 #   talk.awk balk.awk chalk.awk awk-lib.awk.in
101 #   not-subbed util-script.pl
102 #
103 # To add extra flags to the perl checks (e.g., to add new -I flags), set
104 # CHECK_PERL_FLAGS.
105
106 # Implementation note:
107 #
108 # This file uses config.status to substitute @foo@ in those scripts while
109 # converting them. It also adds the executable bits (a+x) to extensionless
110 # files.  The substitution works even though the files are not listed in 
111 # configure.in
112
113 # vim:ft=automake
114 #
115 # Adjust post-install permissions settings.  This rule works off two
116 # specially-formatted variables, INSTALLPERMS_exec and INSTALLPERMS_data. 
117 # Each is a whitespace-separated list of commands, all of which are either
118 # a variable assignment or a filename.  Three variables are available:
119 #
120 #  - dest= sets the destination directory to e.g., $(sbindir)
121 #  - chown= controls changes in ownership; value is first argument to chown
122 #  - chmod= controls changes in permissions; value is first argument to chmod
123 #
124 # As a special case, chown=amanda is taken as equivalent to 
125 # chown=$(BINARY_OWNER):$(SETUID_GROUP), which may otherwise have problems with
126 # whitespace in the user/group names.
127
128 # when a filename is seen, the currently active variables are applied.
129 #
130 # Note that scripts are data, not executables!
131 #
132 # EXAMPLE
133 #
134 # sbin_PROGRAMS = foo bar bing
135 # libexec_PROGRAMS = pro gram
136 # sbin_SCRIPTS = sk ript
137 # INSTALLPERMS_exec = \
138 #       dest=$(sbindir) chown=amanda chmod= \
139 #               foo bar \
140 #       chmod=07450 \
141 #               bing
142 #       dest=$(libexecdir) chmod= \
143 #               $(libexec_PROGRAMS)
144 # INSTALLPERMS_data = \
145 #       dest=$(sbindir) chown=amanda chmod= \
146 #               $(sbin_SCRIPTS)
147 #
148 # This whole operation is not required when making builds for packaging,
149 # and can be disabled with --disable-installperms, via the WANT_INSTALLPERMS
150 # AM_CONDITIONAL.  When disabled, the file 'installperms.sh' in the top-level
151 # build directory is populated with a format suitable for shell interpretation,
152 # with lines like this:
153 #   installperm "amanda:disk" "04750" "/usr/local/sbin/bing"
154 # the arguments being, respectively, owner:group, mode, and filename.  There will
155 # be exactly one line for each file which has specific permissions.  The intention
156 # is that this file be used by packaging scripts to set correct permissions at install
157 # time.  Note that files which have no special permissions requirements do not appear 
158 # in this file at all, due to limitations of Automake.
159
160 # vim:ft=automake
161
162
163
164
165 VPATH = @srcdir@
166 pkgdatadir = $(datadir)/@PACKAGE@
167 pkgincludedir = $(includedir)/@PACKAGE@
168 pkglibdir = $(libdir)/@PACKAGE@
169 pkglibexecdir = $(libexecdir)/@PACKAGE@
170 am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd
171 install_sh_DATA = $(install_sh) -c -m 644
172 install_sh_PROGRAM = $(install_sh) -c
173 install_sh_SCRIPT = $(install_sh) -c
174 INSTALL_HEADER = $(INSTALL_DATA)
175 transform = $(program_transform_name)
176 NORMAL_INSTALL = :
177 PRE_INSTALL = :
178 POST_INSTALL = :
179 NORMAL_UNINSTALL = :
180 PRE_UNINSTALL = :
181 POST_UNINSTALL = :
182 build_triplet = @build@
183 host_triplet = @host@
184 DIST_COMMON = $(noinst_HEADERS) $(srcdir)/Makefile.am \
185         $(srcdir)/Makefile.in \
186         $(top_srcdir)/config/automake/installperms.am \
187         $(top_srcdir)/config/automake/precompile.am \
188         $(top_srcdir)/config/automake/scripts.am \
189         $(top_srcdir)/config/automake/vars.am
190 @WANT_INSTALLPERMS_FALSE@am__append_1 = $(installperms_sh)
191 sbin_PROGRAMS = amadmin$(EXEEXT) amcheck$(EXEEXT) amflush$(EXEEXT) \
192         amservice$(EXEEXT)
193 amlibexec_PROGRAMS = amindexd$(EXEEXT) amlogroll$(EXEEXT) \
194         amtrmidx$(EXEEXT) amtrmlog$(EXEEXT) driver$(EXEEXT) \
195         dumper$(EXEEXT) planner$(EXEEXT) amcleanupdisk$(EXEEXT) \
196         chunker$(EXEEXT)
197 @WANT_RESTORE_TRUE@am__append_2 = \
198 @WANT_RESTORE_TRUE@         amidxtaped
199
200 @WANT_RESTORE_TRUE@am__append_3 = \
201 @WANT_RESTORE_TRUE@         amfetchdump \
202 @WANT_RESTORE_TRUE@         amrestore
203
204 EXTRA_PROGRAMS = $(am__EXEEXT_1)
205 subdir = server-src
206 ACLOCAL_M4 = $(top_srcdir)/aclocal.m4
207 am__aclocal_m4_deps =  \
208         $(top_srcdir)/config/macro-archive/ac_define_dir.m4 \
209         $(top_srcdir)/config/macro-archive/ac_perl_module_version.m4 \
210         $(top_srcdir)/config/macro-archive/ac_prog_perl_version.m4 \
211         $(top_srcdir)/config/macro-archive/ac_prog_swig.m4 \
212         $(top_srcdir)/config/macro-archive/ax_compare_version.m4 \
213         $(top_srcdir)/config/macro-archive/docbook-dtd.m4 \
214         $(top_srcdir)/config/macro-archive/docbook-xslt-min.m4 \
215         $(top_srcdir)/config/macro-archive/docbook-xslt.m4 \
216         $(top_srcdir)/config/macro-archive/xsltproc.m4 \
217         $(top_srcdir)/config/amanda/amplot.m4 \
218         $(top_srcdir)/config/amanda/bsd-security.m4 \
219         $(top_srcdir)/config/amanda/bsdtcp-security.m4 \
220         $(top_srcdir)/config/amanda/bsdudp-security.m4 \
221         $(top_srcdir)/config/amanda/changer.m4 \
222         $(top_srcdir)/config/amanda/components.m4 \
223         $(top_srcdir)/config/amanda/compress.m4 \
224         $(top_srcdir)/config/amanda/config.m4 \
225         $(top_srcdir)/config/amanda/debugging.m4 \
226         $(top_srcdir)/config/amanda/defaults.m4 \
227         $(top_srcdir)/config/amanda/devprefix.m4 \
228         $(top_srcdir)/config/amanda/dirs.m4 \
229         $(top_srcdir)/config/amanda/documentation.m4 \
230         $(top_srcdir)/config/amanda/dumpers.m4 \
231         $(top_srcdir)/config/amanda/dvdrw-device.m4 \
232         $(top_srcdir)/config/amanda/flags.m4 \
233         $(top_srcdir)/config/amanda/flock.m4 \
234         $(top_srcdir)/config/amanda/funcs.m4 \
235         $(top_srcdir)/config/amanda/getfsent.m4 \
236         $(top_srcdir)/config/amanda/i18n.m4 \
237         $(top_srcdir)/config/amanda/ipv6.m4 \
238         $(top_srcdir)/config/amanda/krb5-security.m4 \
239         $(top_srcdir)/config/amanda/lfs.m4 \
240         $(top_srcdir)/config/amanda/libs.m4 \
241         $(top_srcdir)/config/amanda/ndmp-device.m4 \
242         $(top_srcdir)/config/amanda/net.m4 \
243         $(top_srcdir)/config/amanda/progs.m4 \
244         $(top_srcdir)/config/amanda/ps.m4 \
245         $(top_srcdir)/config/amanda/readdir.m4 \
246         $(top_srcdir)/config/amanda/readline.m4 \
247         $(top_srcdir)/config/amanda/rsh-security.m4 \
248         $(top_srcdir)/config/amanda/s3-device.m4 \
249         $(top_srcdir)/config/amanda/shmem.m4 \
250         $(top_srcdir)/config/amanda/socklen_t_equiv.m4 \
251         $(top_srcdir)/config/amanda/ssh-security.m4 \
252         $(top_srcdir)/config/amanda/summary.m4 \
253         $(top_srcdir)/config/amanda/swig.m4 \
254         $(top_srcdir)/config/amanda/syshacks.m4 \
255         $(top_srcdir)/config/amanda/tape.m4 \
256         $(top_srcdir)/config/amanda/types.m4 \
257         $(top_srcdir)/config/amanda/userid.m4 \
258         $(top_srcdir)/config/amanda/version.m4 \
259         $(top_srcdir)/config/gnulib/00gnulib.m4 \
260         $(top_srcdir)/config/gnulib/alloca.m4 \
261         $(top_srcdir)/config/gnulib/arpa_inet_h.m4 \
262         $(top_srcdir)/config/gnulib/base64.m4 \
263         $(top_srcdir)/config/gnulib/btowc.m4 \
264         $(top_srcdir)/config/gnulib/errno_h.m4 \
265         $(top_srcdir)/config/gnulib/extensions.m4 \
266         $(top_srcdir)/config/gnulib/float_h.m4 \
267         $(top_srcdir)/config/gnulib/fseeko.m4 \
268         $(top_srcdir)/config/gnulib/fsusage.m4 \
269         $(top_srcdir)/config/gnulib/ftello.m4 \
270         $(top_srcdir)/config/gnulib/ftruncate.m4 \
271         $(top_srcdir)/config/gnulib/getaddrinfo.m4 \
272         $(top_srcdir)/config/gnulib/getopt.m4 \
273         $(top_srcdir)/config/gnulib/gettimeofday.m4 \
274         $(top_srcdir)/config/gnulib/gnulib-common.m4 \
275         $(top_srcdir)/config/gnulib/gnulib-comp.m4 \
276         $(top_srcdir)/config/gnulib/hostent.m4 \
277         $(top_srcdir)/config/gnulib/include_next.m4 \
278         $(top_srcdir)/config/gnulib/inet_ntop.m4 \
279         $(top_srcdir)/config/gnulib/intmax_t.m4 \
280         $(top_srcdir)/config/gnulib/localcharset.m4 \
281         $(top_srcdir)/config/gnulib/locale-fr.m4 \
282         $(top_srcdir)/config/gnulib/locale-ja.m4 \
283         $(top_srcdir)/config/gnulib/locale-zh.m4 \
284         $(top_srcdir)/config/gnulib/lock.m4 \
285         $(top_srcdir)/config/gnulib/longlong.m4 \
286         $(top_srcdir)/config/gnulib/lseek.m4 \
287         $(top_srcdir)/config/gnulib/lstat.m4 \
288         $(top_srcdir)/config/gnulib/malloc.m4 \
289         $(top_srcdir)/config/gnulib/mbrtowc.m4 \
290         $(top_srcdir)/config/gnulib/mbsinit.m4 \
291         $(top_srcdir)/config/gnulib/mbstate_t.m4 \
292         $(top_srcdir)/config/gnulib/mkdtemp.m4 \
293         $(top_srcdir)/config/gnulib/multiarch.m4 \
294         $(top_srcdir)/config/gnulib/netdb_h.m4 \
295         $(top_srcdir)/config/gnulib/netinet_in_h.m4 \
296         $(top_srcdir)/config/gnulib/onceonly.m4 \
297         $(top_srcdir)/config/gnulib/physmem.m4 \
298         $(top_srcdir)/config/gnulib/printf.m4 \
299         $(top_srcdir)/config/gnulib/regex.m4 \
300         $(top_srcdir)/config/gnulib/safe-read.m4 \
301         $(top_srcdir)/config/gnulib/safe-write.m4 \
302         $(top_srcdir)/config/gnulib/servent.m4 \
303         $(top_srcdir)/config/gnulib/snprintf.m4 \
304         $(top_srcdir)/config/gnulib/socklen.m4 \
305         $(top_srcdir)/config/gnulib/sockpfaf.m4 \
306         $(top_srcdir)/config/gnulib/ssize_t.m4 \
307         $(top_srcdir)/config/gnulib/stdbool.m4 \
308         $(top_srcdir)/config/gnulib/stdint.m4 \
309         $(top_srcdir)/config/gnulib/stdio_h.m4 \
310         $(top_srcdir)/config/gnulib/stdlib_h.m4 \
311         $(top_srcdir)/config/gnulib/sys_socket_h.m4 \
312         $(top_srcdir)/config/gnulib/sys_stat_h.m4 \
313         $(top_srcdir)/config/gnulib/sys_time_h.m4 \
314         $(top_srcdir)/config/gnulib/tempname.m4 \
315         $(top_srcdir)/config/gnulib/threadlib.m4 \
316         $(top_srcdir)/config/gnulib/unistd_h.m4 \
317         $(top_srcdir)/config/gnulib/vasnprintf.m4 \
318         $(top_srcdir)/config/gnulib/visibility.m4 \
319         $(top_srcdir)/config/gnulib/wchar.m4 \
320         $(top_srcdir)/config/gnulib/wcrtomb.m4 \
321         $(top_srcdir)/config/gnulib/wctype.m4 \
322         $(top_srcdir)/config/gnulib/write.m4 \
323         $(top_srcdir)/config/gettext-macros/codeset.m4 \
324         $(top_srcdir)/config/gettext-macros/gettext.m4 \
325         $(top_srcdir)/config/gettext-macros/glibc21.m4 \
326         $(top_srcdir)/config/gettext-macros/iconv.m4 \
327         $(top_srcdir)/config/gettext-macros/inttypes_h.m4 \
328         $(top_srcdir)/config/gettext-macros/lib-ld.m4 \
329         $(top_srcdir)/config/gettext-macros/lib-link.m4 \
330         $(top_srcdir)/config/gettext-macros/lib-prefix.m4 \
331         $(top_srcdir)/config/gettext-macros/nls.m4 \
332         $(top_srcdir)/config/gettext-macros/po.m4 \
333         $(top_srcdir)/config/gettext-macros/progtest.m4 \
334         $(top_srcdir)/config/gettext-macros/size_max.m4 \
335         $(top_srcdir)/config/gettext-macros/stdint_h.m4 \
336         $(top_srcdir)/config/gettext-macros/wchar_t.m4 \
337         $(top_srcdir)/config/gettext-macros/wint_t.m4 \
338         $(top_srcdir)/config/gettext-macros/xsize.m4 \
339         $(top_srcdir)/config/libtool.m4 \
340         $(top_srcdir)/config/ltoptions.m4 \
341         $(top_srcdir)/config/ltsugar.m4 \
342         $(top_srcdir)/config/ltversion.m4 \
343         $(top_srcdir)/config/lt~obsolete.m4 $(top_srcdir)/configure.in
344 am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \
345         $(ACLOCAL_M4)
346 mkinstalldirs = $(SHELL) $(top_srcdir)/config/mkinstalldirs
347 CONFIG_HEADER = $(top_builddir)/config/config.h
348 CONFIG_CLEAN_FILES =
349 CONFIG_CLEAN_VPATH_FILES =
350 am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`;
351 am__vpath_adj = case $$p in \
352     $(srcdir)/*) f=`echo "$$p" | sed "s|^$$srcdirstrip/||"`;; \
353     *) f=$$p;; \
354   esac;
355 am__strip_dir = f=`echo $$p | sed -e 's|^.*/||'`;
356 am__install_max = 40
357 am__nobase_strip_setup = \
358   srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*|]/\\\\&/g'`
359 am__nobase_strip = \
360   for p in $$list; do echo "$$p"; done | sed -e "s|$$srcdirstrip/||"
361 am__nobase_list = $(am__nobase_strip_setup); \
362   for p in $$list; do echo "$$p $$p"; done | \
363   sed "s| $$srcdirstrip/| |;"' / .*\//!s/ .*/ ./; s,\( .*\)/[^/]*$$,\1,' | \
364   $(AWK) 'BEGIN { files["."] = "" } { files[$$2] = files[$$2] " " $$1; \
365     if (++n[$$2] == $(am__install_max)) \
366       { print $$2, files[$$2]; n[$$2] = 0; files[$$2] = "" } } \
367     END { for (dir in files) print dir, files[dir] }'
368 am__base_list = \
369   sed '$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;s/\n/ /g' | \
370   sed '$$!N;$$!N;$$!N;$$!N;s/\n/ /g'
371 am__installdirs = "$(DESTDIR)$(amlibdir)" "$(DESTDIR)$(amlibexecdir)" \
372         "$(DESTDIR)$(sbindir)" "$(DESTDIR)$(amlibexecdir)" \
373         "$(DESTDIR)$(sbindir)"
374 LTLIBRARIES = $(amlib_LTLIBRARIES)
375 libamserver_la_DEPENDENCIES = ../device-src/libamdevice.la \
376         ../common-src/libamanda.la
377 am_libamserver_la_OBJECTS = amindex.lo diskfile.lo driverio.lo \
378         cmdline.lo holding.lo infofile.lo logfile.lo tapefile.lo \
379         find.lo server_util.lo xfer-source-holding.lo
380 libamserver_la_OBJECTS = $(am_libamserver_la_OBJECTS)
381 libamserver_la_LINK = $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) \
382         $(LIBTOOLFLAGS) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \
383         $(libamserver_la_LDFLAGS) $(LDFLAGS) -o $@
384 am__EXEEXT_1 = diskfile$(EXEEXT) infofile$(EXEEXT)
385 PROGRAMS = $(amlibexec_PROGRAMS) $(sbin_PROGRAMS)
386 amadmin_SOURCES = amadmin.c
387 amadmin_OBJECTS = amadmin.$(OBJEXT)
388 amadmin_LDADD = $(LDADD)
389 am__DEPENDENCIES_1 =
390 amadmin_DEPENDENCIES = ../common-src/libamanda.la libamserver.la \
391         ../device-src/libamdevice.la ../common-src/libamanda.la \
392         $(am__DEPENDENCIES_1)
393 amcheck_SOURCES = amcheck.c
394 amcheck_OBJECTS = amcheck.$(OBJEXT)
395 amcheck_LDADD = $(LDADD)
396 amcheck_DEPENDENCIES = ../common-src/libamanda.la libamserver.la \
397         ../device-src/libamdevice.la ../common-src/libamanda.la \
398         $(am__DEPENDENCIES_1)
399 amcleanupdisk_SOURCES = amcleanupdisk.c
400 amcleanupdisk_OBJECTS = amcleanupdisk.$(OBJEXT)
401 amcleanupdisk_LDADD = $(LDADD)
402 amcleanupdisk_DEPENDENCIES = ../common-src/libamanda.la libamserver.la \
403         ../device-src/libamdevice.la ../common-src/libamanda.la \
404         $(am__DEPENDENCIES_1)
405 amflush_SOURCES = amflush.c
406 amflush_OBJECTS = amflush.$(OBJEXT)
407 amflush_LDADD = $(LDADD)
408 amflush_DEPENDENCIES = ../common-src/libamanda.la libamserver.la \
409         ../device-src/libamdevice.la ../common-src/libamanda.la \
410         $(am__DEPENDENCIES_1)
411 am__objects_1 = amindexd.$(OBJEXT) disk_history.$(OBJEXT) \
412         list_dir.$(OBJEXT)
413 am_amindexd_OBJECTS = $(am__objects_1)
414 amindexd_OBJECTS = $(am_amindexd_OBJECTS)
415 am__DEPENDENCIES_2 = ../common-src/libamanda.la libamserver.la \
416         ../device-src/libamdevice.la ../common-src/libamanda.la \
417         $(am__DEPENDENCIES_1)
418 amindexd_DEPENDENCIES = $(am__DEPENDENCIES_2) \
419         ../amandad-src/libamandad.la
420 amlogroll_SOURCES = amlogroll.c
421 amlogroll_OBJECTS = amlogroll.$(OBJEXT)
422 amlogroll_LDADD = $(LDADD)
423 amlogroll_DEPENDENCIES = ../common-src/libamanda.la libamserver.la \
424         ../device-src/libamdevice.la ../common-src/libamanda.la \
425         $(am__DEPENDENCIES_1)
426 amservice_SOURCES = amservice.c
427 amservice_OBJECTS = amservice.$(OBJEXT)
428 amservice_LDADD = $(LDADD)
429 amservice_DEPENDENCIES = ../common-src/libamanda.la libamserver.la \
430         ../device-src/libamdevice.la ../common-src/libamanda.la \
431         $(am__DEPENDENCIES_1)
432 amtrmidx_SOURCES = amtrmidx.c
433 amtrmidx_OBJECTS = amtrmidx.$(OBJEXT)
434 amtrmidx_LDADD = $(LDADD)
435 amtrmidx_DEPENDENCIES = ../common-src/libamanda.la libamserver.la \
436         ../device-src/libamdevice.la ../common-src/libamanda.la \
437         $(am__DEPENDENCIES_1)
438 amtrmlog_SOURCES = amtrmlog.c
439 amtrmlog_OBJECTS = amtrmlog.$(OBJEXT)
440 amtrmlog_LDADD = $(LDADD)
441 amtrmlog_DEPENDENCIES = ../common-src/libamanda.la libamserver.la \
442         ../device-src/libamdevice.la ../common-src/libamanda.la \
443         $(am__DEPENDENCIES_1)
444 chunker_SOURCES = chunker.c
445 chunker_OBJECTS = chunker.$(OBJEXT)
446 chunker_LDADD = $(LDADD)
447 chunker_DEPENDENCIES = ../common-src/libamanda.la libamserver.la \
448         ../device-src/libamdevice.la ../common-src/libamanda.la \
449         $(am__DEPENDENCIES_1)
450 am_diskfile_OBJECTS = diskfile.test.$(OBJEXT)
451 diskfile_OBJECTS = $(am_diskfile_OBJECTS)
452 diskfile_LDADD = $(LDADD)
453 diskfile_DEPENDENCIES = ../common-src/libamanda.la libamserver.la \
454         ../device-src/libamdevice.la ../common-src/libamanda.la \
455         $(am__DEPENDENCIES_1)
456 driver_SOURCES = driver.c
457 driver_OBJECTS = driver.$(OBJEXT)
458 driver_LDADD = $(LDADD)
459 driver_DEPENDENCIES = ../common-src/libamanda.la libamserver.la \
460         ../device-src/libamdevice.la ../common-src/libamanda.la \
461         $(am__DEPENDENCIES_1)
462 dumper_SOURCES = dumper.c
463 dumper_OBJECTS = dumper.$(OBJEXT)
464 dumper_LDADD = $(LDADD)
465 dumper_DEPENDENCIES = ../common-src/libamanda.la libamserver.la \
466         ../device-src/libamdevice.la ../common-src/libamanda.la \
467         $(am__DEPENDENCIES_1)
468 am_infofile_OBJECTS = infofile.test.$(OBJEXT)
469 infofile_OBJECTS = $(am_infofile_OBJECTS)
470 infofile_LDADD = $(LDADD)
471 infofile_DEPENDENCIES = ../common-src/libamanda.la libamserver.la \
472         ../device-src/libamdevice.la ../common-src/libamanda.la \
473         $(am__DEPENDENCIES_1)
474 planner_SOURCES = planner.c
475 planner_OBJECTS = planner.$(OBJEXT)
476 planner_LDADD = $(LDADD)
477 planner_DEPENDENCIES = ../common-src/libamanda.la libamserver.la \
478         ../device-src/libamdevice.la ../common-src/libamanda.la \
479         $(am__DEPENDENCIES_1)
480 SCRIPTS = $(amlibexec_SCRIPTS) $(sbin_SCRIPTS)
481 DEFAULT_INCLUDES = -I.@am__isrc@ -I$(top_builddir)/config
482 depcomp = $(SHELL) $(top_srcdir)/config/depcomp
483 am__depfiles_maybe = depfiles
484 am__mv = mv -f
485 COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \
486         $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS)
487 LTCOMPILE = $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) \
488         --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) \
489         $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS)
490 CCLD = $(CC)
491 LINK = $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) \
492         --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) $(AM_LDFLAGS) \
493         $(LDFLAGS) -o $@
494 SOURCES = $(libamserver_la_SOURCES) amadmin.c amcheck.c \
495         amcleanupdisk.c amflush.c $(amindexd_SOURCES) amlogroll.c \
496         amservice.c amtrmidx.c amtrmlog.c chunker.c \
497         $(diskfile_SOURCES) driver.c dumper.c $(infofile_SOURCES) \
498         planner.c
499 DIST_SOURCES = $(libamserver_la_SOURCES) amadmin.c amcheck.c \
500         amcleanupdisk.c amflush.c $(amindexd_SOURCES) amlogroll.c \
501         amservice.c amtrmidx.c amtrmlog.c chunker.c \
502         $(diskfile_SOURCES) driver.c dumper.c $(infofile_SOURCES) \
503         planner.c
504 HEADERS = $(noinst_HEADERS)
505 ETAGS = etags
506 CTAGS = ctags
507 DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST)
508 ACLOCAL = @ACLOCAL@
509 AIX_BACKUP = @AIX_BACKUP@
510 ALLOCA = @ALLOCA@
511 ALLOCA_H = @ALLOCA_H@
512 AMANDA_COMPONENTS = @AMANDA_COMPONENTS@
513 AMANDA_DBGDIR = @AMANDA_DBGDIR@
514 AMANDA_DEBUG_DAYS = @AMANDA_DEBUG_DAYS@
515 AMANDA_STATIC_LDFLAGS = @AMANDA_STATIC_LDFLAGS@
516 AMANDA_SWIG_PERL_CFLAGS = @AMANDA_SWIG_PERL_CFLAGS@
517 AMANDA_TMPDIR = @AMANDA_TMPDIR@
518 AMANDA_WARNING_CFLAGS = @AMANDA_WARNING_CFLAGS@
519 AMLINT = @AMLINT@
520 AMLINTFLAGS = @AMLINTFLAGS@
521 AMPLOT_CAT_COMPRESS = @AMPLOT_CAT_COMPRESS@
522 AMPLOT_CAT_GZIP = @AMPLOT_CAT_GZIP@
523 AMPLOT_CAT_PACK = @AMPLOT_CAT_PACK@
524 AMPLOT_COMPRESS = @AMPLOT_COMPRESS@
525 AMTAR = @AMTAR@
526 APPLE_UNIVERSAL_BUILD = @APPLE_UNIVERSAL_BUILD@
527 APPLICATION_DIR = @APPLICATION_DIR@
528 AR = @AR@
529 ARPA_INET_H = @ARPA_INET_H@
530 ASSERTIONS = @ASSERTIONS@
531 AUTOCONF = @AUTOCONF@
532 AUTOHEADER = @AUTOHEADER@
533 AUTOMAKE = @AUTOMAKE@
534 AWK = @AWK@
535 BASH = @BASH@
536 BINARY_OWNER = @BINARY_OWNER@
537 BITSIZEOF_PTRDIFF_T = @BITSIZEOF_PTRDIFF_T@
538 BITSIZEOF_SIG_ATOMIC_T = @BITSIZEOF_SIG_ATOMIC_T@
539 BITSIZEOF_SIZE_T = @BITSIZEOF_SIZE_T@
540 BITSIZEOF_WCHAR_T = @BITSIZEOF_WCHAR_T@
541 BITSIZEOF_WINT_T = @BITSIZEOF_WINT_T@
542 BSDTCP_SECURITY = @BSDTCP_SECURITY@
543 BSDUDP_SECURITY = @BSDUDP_SECURITY@
544 BSD_SECURITY = @BSD_SECURITY@
545 CAT = @CAT@
546 CC = @CC@
547 CCDEPMODE = @CCDEPMODE@
548 CFLAGS = @CFLAGS@
549 CFLAG_VISIBILITY = @CFLAG_VISIBILITY@
550 CHECK_USERID = @CHECK_USERID@
551 CHIO = @CHIO@
552 CHS = @CHS@
553 CLIENT_LOGIN = @CLIENT_LOGIN@
554 CLIENT_SCRIPTS_OPT = @CLIENT_SCRIPTS_OPT@
555 COMPRESS = @COMPRESS@
556 COMPRESS_BEST_OPT = @COMPRESS_BEST_OPT@
557 COMPRESS_FAST_OPT = @COMPRESS_FAST_OPT@
558 COMPRESS_PATH = @COMPRESS_PATH@
559 COMPRESS_SUFFIX = @COMPRESS_SUFFIX@
560 CONFIG_CLOBBER_MY_CONFIG = @CONFIG_CLOBBER_MY_CONFIG@
561 CONFIG_DIR = @CONFIG_DIR@
562 CPP = @CPP@
563 CPPFLAGS = @CPPFLAGS@
564 CURL_CONFIG = @CURL_CONFIG@
565 CYGPATH_W = @CYGPATH_W@
566 DD = @DD@
567 DEFAULT_AMANDATES_FILE = @DEFAULT_AMANDATES_FILE@
568 DEFAULT_CONFIG = @DEFAULT_CONFIG@
569 DEFAULT_MAILER = @DEFAULT_MAILER@
570 DEFAULT_SERVER = @DEFAULT_SERVER@
571 DEFAULT_TAPE_DEVICE = @DEFAULT_TAPE_DEVICE@
572 DEFAULT_TAPE_SERVER = @DEFAULT_TAPE_SERVER@
573 DEFS = @DEFS@
574 DEPDIR = @DEPDIR@
575 DOC_BUILD_DATE = @DOC_BUILD_DATE@
576 DSYMUTIL = @DSYMUTIL@
577 DUMP = @DUMP@
578 DUMPBIN = @DUMPBIN@
579 DUMP_RETURNS_1 = @DUMP_RETURNS_1@
580 ECHO_C = @ECHO_C@
581 ECHO_N = @ECHO_N@
582 ECHO_T = @ECHO_T@
583 EGREP = @EGREP@
584 EMULTIHOP_HIDDEN = @EMULTIHOP_HIDDEN@
585 EMULTIHOP_VALUE = @EMULTIHOP_VALUE@
586 ENOLINK_HIDDEN = @ENOLINK_HIDDEN@
587 ENOLINK_VALUE = @ENOLINK_VALUE@
588 EOVERFLOW_HIDDEN = @EOVERFLOW_HIDDEN@
589 EOVERFLOW_VALUE = @EOVERFLOW_VALUE@
590 ERRNO_H = @ERRNO_H@
591 EXAMPLE_TAPEDEV = @EXAMPLE_TAPEDEV@
592 EXEEXT = @EXEEXT@
593 FGREP = @FGREP@
594 FLOAT_H = @FLOAT_H@
595 GETADDRINFO_LIB = @GETADDRINFO_LIB@
596 GETCONF = @GETCONF@
597 GETOPT_H = @GETOPT_H@
598 GETTEXT = @GETTEXT@
599 GIT = @GIT@
600 GLIBC21 = @GLIBC21@
601 GLIB_CFLAGS = @GLIB_CFLAGS@
602 GLIB_GENMARSHAL = @GLIB_GENMARSHAL@
603 GLIB_LIBS = @GLIB_LIBS@
604 GLIB_MKENUMS = @GLIB_MKENUMS@
605 GMSGFMT = @GMSGFMT@
606 GMSGFMT_015 = @GMSGFMT_015@
607 GNULIB_ACCEPT = @GNULIB_ACCEPT@
608 GNULIB_ATOLL = @GNULIB_ATOLL@
609 GNULIB_BIND = @GNULIB_BIND@
610 GNULIB_BTOWC = @GNULIB_BTOWC@
611 GNULIB_CALLOC_POSIX = @GNULIB_CALLOC_POSIX@
612 GNULIB_CHOWN = @GNULIB_CHOWN@
613 GNULIB_CLOSE = @GNULIB_CLOSE@
614 GNULIB_CONNECT = @GNULIB_CONNECT@
615 GNULIB_DPRINTF = @GNULIB_DPRINTF@
616 GNULIB_DUP2 = @GNULIB_DUP2@
617 GNULIB_ENVIRON = @GNULIB_ENVIRON@
618 GNULIB_EUIDACCESS = @GNULIB_EUIDACCESS@
619 GNULIB_FCHDIR = @GNULIB_FCHDIR@
620 GNULIB_FCLOSE = @GNULIB_FCLOSE@
621 GNULIB_FFLUSH = @GNULIB_FFLUSH@
622 GNULIB_FOPEN = @GNULIB_FOPEN@
623 GNULIB_FPRINTF = @GNULIB_FPRINTF@
624 GNULIB_FPRINTF_POSIX = @GNULIB_FPRINTF_POSIX@
625 GNULIB_FPUTC = @GNULIB_FPUTC@
626 GNULIB_FPUTS = @GNULIB_FPUTS@
627 GNULIB_FREOPEN = @GNULIB_FREOPEN@
628 GNULIB_FSEEK = @GNULIB_FSEEK@
629 GNULIB_FSEEKO = @GNULIB_FSEEKO@
630 GNULIB_FSYNC = @GNULIB_FSYNC@
631 GNULIB_FTELL = @GNULIB_FTELL@
632 GNULIB_FTELLO = @GNULIB_FTELLO@
633 GNULIB_FTRUNCATE = @GNULIB_FTRUNCATE@
634 GNULIB_FWRITE = @GNULIB_FWRITE@
635 GNULIB_GETADDRINFO = @GNULIB_GETADDRINFO@
636 GNULIB_GETCWD = @GNULIB_GETCWD@
637 GNULIB_GETDELIM = @GNULIB_GETDELIM@
638 GNULIB_GETDOMAINNAME = @GNULIB_GETDOMAINNAME@
639 GNULIB_GETDTABLESIZE = @GNULIB_GETDTABLESIZE@
640 GNULIB_GETHOSTNAME = @GNULIB_GETHOSTNAME@
641 GNULIB_GETLINE = @GNULIB_GETLINE@
642 GNULIB_GETLOADAVG = @GNULIB_GETLOADAVG@
643 GNULIB_GETLOGIN_R = @GNULIB_GETLOGIN_R@
644 GNULIB_GETPAGESIZE = @GNULIB_GETPAGESIZE@
645 GNULIB_GETPEERNAME = @GNULIB_GETPEERNAME@
646 GNULIB_GETSOCKNAME = @GNULIB_GETSOCKNAME@
647 GNULIB_GETSOCKOPT = @GNULIB_GETSOCKOPT@
648 GNULIB_GETSUBOPT = @GNULIB_GETSUBOPT@
649 GNULIB_GETUSERSHELL = @GNULIB_GETUSERSHELL@
650 GNULIB_INET_NTOP = @GNULIB_INET_NTOP@
651 GNULIB_INET_PTON = @GNULIB_INET_PTON@
652 GNULIB_LCHMOD = @GNULIB_LCHMOD@
653 GNULIB_LCHOWN = @GNULIB_LCHOWN@
654 GNULIB_LINK = @GNULIB_LINK@
655 GNULIB_LISTEN = @GNULIB_LISTEN@
656 GNULIB_LSEEK = @GNULIB_LSEEK@
657 GNULIB_LSTAT = @GNULIB_LSTAT@
658 GNULIB_MALLOC_POSIX = @GNULIB_MALLOC_POSIX@
659 GNULIB_MBRLEN = @GNULIB_MBRLEN@
660 GNULIB_MBRTOWC = @GNULIB_MBRTOWC@
661 GNULIB_MBSINIT = @GNULIB_MBSINIT@
662 GNULIB_MBSNRTOWCS = @GNULIB_MBSNRTOWCS@
663 GNULIB_MBSRTOWCS = @GNULIB_MBSRTOWCS@
664 GNULIB_MKDTEMP = @GNULIB_MKDTEMP@
665 GNULIB_MKSTEMP = @GNULIB_MKSTEMP@
666 GNULIB_OBSTACK_PRINTF = @GNULIB_OBSTACK_PRINTF@
667 GNULIB_OBSTACK_PRINTF_POSIX = @GNULIB_OBSTACK_PRINTF_POSIX@
668 GNULIB_PERROR = @GNULIB_PERROR@
669 GNULIB_PRINTF = @GNULIB_PRINTF@
670 GNULIB_PRINTF_POSIX = @GNULIB_PRINTF_POSIX@
671 GNULIB_PUTC = @GNULIB_PUTC@
672 GNULIB_PUTCHAR = @GNULIB_PUTCHAR@
673 GNULIB_PUTENV = @GNULIB_PUTENV@
674 GNULIB_PUTS = @GNULIB_PUTS@
675 GNULIB_RANDOM_R = @GNULIB_RANDOM_R@
676 GNULIB_READLINK = @GNULIB_READLINK@
677 GNULIB_REALLOC_POSIX = @GNULIB_REALLOC_POSIX@
678 GNULIB_RECV = @GNULIB_RECV@
679 GNULIB_RECVFROM = @GNULIB_RECVFROM@
680 GNULIB_RPMATCH = @GNULIB_RPMATCH@
681 GNULIB_SEND = @GNULIB_SEND@
682 GNULIB_SENDTO = @GNULIB_SENDTO@
683 GNULIB_SETENV = @GNULIB_SETENV@
684 GNULIB_SETSOCKOPT = @GNULIB_SETSOCKOPT@
685 GNULIB_SHUTDOWN = @GNULIB_SHUTDOWN@
686 GNULIB_SLEEP = @GNULIB_SLEEP@
687 GNULIB_SNPRINTF = @GNULIB_SNPRINTF@
688 GNULIB_SOCKET = @GNULIB_SOCKET@
689 GNULIB_SPRINTF_POSIX = @GNULIB_SPRINTF_POSIX@
690 GNULIB_STDIO_H_SIGPIPE = @GNULIB_STDIO_H_SIGPIPE@
691 GNULIB_STRTOD = @GNULIB_STRTOD@
692 GNULIB_STRTOLL = @GNULIB_STRTOLL@
693 GNULIB_STRTOULL = @GNULIB_STRTOULL@
694 GNULIB_UNISTD_H_SIGPIPE = @GNULIB_UNISTD_H_SIGPIPE@
695 GNULIB_UNSETENV = @GNULIB_UNSETENV@
696 GNULIB_VASPRINTF = @GNULIB_VASPRINTF@
697 GNULIB_VDPRINTF = @GNULIB_VDPRINTF@
698 GNULIB_VFPRINTF = @GNULIB_VFPRINTF@
699 GNULIB_VFPRINTF_POSIX = @GNULIB_VFPRINTF_POSIX@
700 GNULIB_VPRINTF = @GNULIB_VPRINTF@
701 GNULIB_VPRINTF_POSIX = @GNULIB_VPRINTF_POSIX@
702 GNULIB_VSNPRINTF = @GNULIB_VSNPRINTF@
703 GNULIB_VSPRINTF_POSIX = @GNULIB_VSPRINTF_POSIX@
704 GNULIB_WCRTOMB = @GNULIB_WCRTOMB@
705 GNULIB_WCSNRTOMBS = @GNULIB_WCSNRTOMBS@
706 GNULIB_WCSRTOMBS = @GNULIB_WCSRTOMBS@
707 GNULIB_WCTOB = @GNULIB_WCTOB@
708 GNULIB_WCWIDTH = @GNULIB_WCWIDTH@
709 GNULIB_WRITE = @GNULIB_WRITE@
710 GNUPLOT = @GNUPLOT@
711 GNUTAR = @GNUTAR@
712 GNUTAR_LISTED_INCREMENTAL_DIR = @GNUTAR_LISTED_INCREMENTAL_DIR@
713 GOBJECT_QUERY = @GOBJECT_QUERY@
714 GREP = @GREP@
715 GZIP = @GZIP@
716 HAVE_ARPA_INET_H = @HAVE_ARPA_INET_H@
717 HAVE_ATOLL = @HAVE_ATOLL@
718 HAVE_BTOWC = @HAVE_BTOWC@
719 HAVE_CALLOC_POSIX = @HAVE_CALLOC_POSIX@
720 HAVE_DECL_ENVIRON = @HAVE_DECL_ENVIRON@
721 HAVE_DECL_FREEADDRINFO = @HAVE_DECL_FREEADDRINFO@
722 HAVE_DECL_GAI_STRERROR = @HAVE_DECL_GAI_STRERROR@
723 HAVE_DECL_GETADDRINFO = @HAVE_DECL_GETADDRINFO@
724 HAVE_DECL_GETDELIM = @HAVE_DECL_GETDELIM@
725 HAVE_DECL_GETLINE = @HAVE_DECL_GETLINE@
726 HAVE_DECL_GETLOADAVG = @HAVE_DECL_GETLOADAVG@
727 HAVE_DECL_GETLOGIN_R = @HAVE_DECL_GETLOGIN_R@
728 HAVE_DECL_GETNAMEINFO = @HAVE_DECL_GETNAMEINFO@
729 HAVE_DECL_INET_NTOP = @HAVE_DECL_INET_NTOP@
730 HAVE_DECL_INET_PTON = @HAVE_DECL_INET_PTON@
731 HAVE_DECL_OBSTACK_PRINTF = @HAVE_DECL_OBSTACK_PRINTF@
732 HAVE_DECL_SNPRINTF = @HAVE_DECL_SNPRINTF@
733 HAVE_DECL_VSNPRINTF = @HAVE_DECL_VSNPRINTF@
734 HAVE_DECL_WCTOB = @HAVE_DECL_WCTOB@
735 HAVE_DECL_WCWIDTH = @HAVE_DECL_WCWIDTH@
736 HAVE_DPRINTF = @HAVE_DPRINTF@
737 HAVE_DUP2 = @HAVE_DUP2@
738 HAVE_EUIDACCESS = @HAVE_EUIDACCESS@
739 HAVE_FSEEKO = @HAVE_FSEEKO@
740 HAVE_FSYNC = @HAVE_FSYNC@
741 HAVE_FTELLO = @HAVE_FTELLO@
742 HAVE_FTRUNCATE = @HAVE_FTRUNCATE@
743 HAVE_GETDOMAINNAME = @HAVE_GETDOMAINNAME@
744 HAVE_GETDTABLESIZE = @HAVE_GETDTABLESIZE@
745 HAVE_GETHOSTNAME = @HAVE_GETHOSTNAME@
746 HAVE_GETPAGESIZE = @HAVE_GETPAGESIZE@
747 HAVE_GETSUBOPT = @HAVE_GETSUBOPT@
748 HAVE_GETUSERSHELL = @HAVE_GETUSERSHELL@
749 HAVE_GZIP = @HAVE_GZIP@
750 HAVE_INTTYPES_H = @HAVE_INTTYPES_H@
751 HAVE_ISWCNTRL = @HAVE_ISWCNTRL@
752 HAVE_LCHMOD = @HAVE_LCHMOD@
753 HAVE_LINK = @HAVE_LINK@
754 HAVE_LONG_LONG_INT = @HAVE_LONG_LONG_INT@
755 HAVE_LSTAT = @HAVE_LSTAT@
756 HAVE_MALLOC_POSIX = @HAVE_MALLOC_POSIX@
757 HAVE_MBRLEN = @HAVE_MBRLEN@
758 HAVE_MBRTOWC = @HAVE_MBRTOWC@
759 HAVE_MBSINIT = @HAVE_MBSINIT@
760 HAVE_MBSNRTOWCS = @HAVE_MBSNRTOWCS@
761 HAVE_MBSRTOWCS = @HAVE_MBSRTOWCS@
762 HAVE_MKDTEMP = @HAVE_MKDTEMP@
763 HAVE_NETDB_H = @HAVE_NETDB_H@
764 HAVE_NETINET_IN_H = @HAVE_NETINET_IN_H@
765 HAVE_OS_H = @HAVE_OS_H@
766 HAVE_RANDOM_H = @HAVE_RANDOM_H@
767 HAVE_RANDOM_R = @HAVE_RANDOM_R@
768 HAVE_READLINK = @HAVE_READLINK@
769 HAVE_REALLOC_POSIX = @HAVE_REALLOC_POSIX@
770 HAVE_RPMATCH = @HAVE_RPMATCH@
771 HAVE_SETENV = @HAVE_SETENV@
772 HAVE_SIGNED_SIG_ATOMIC_T = @HAVE_SIGNED_SIG_ATOMIC_T@
773 HAVE_SIGNED_WCHAR_T = @HAVE_SIGNED_WCHAR_T@
774 HAVE_SIGNED_WINT_T = @HAVE_SIGNED_WINT_T@
775 HAVE_SLEEP = @HAVE_SLEEP@
776 HAVE_STDINT_H = @HAVE_STDINT_H@
777 HAVE_STRTOD = @HAVE_STRTOD@
778 HAVE_STRTOLL = @HAVE_STRTOLL@
779 HAVE_STRTOULL = @HAVE_STRTOULL@
780 HAVE_STRUCT_ADDRINFO = @HAVE_STRUCT_ADDRINFO@
781 HAVE_STRUCT_RANDOM_DATA = @HAVE_STRUCT_RANDOM_DATA@
782 HAVE_STRUCT_TIMEVAL = @HAVE_STRUCT_TIMEVAL@
783 HAVE_SYS_BITYPES_H = @HAVE_SYS_BITYPES_H@
784 HAVE_SYS_INTTYPES_H = @HAVE_SYS_INTTYPES_H@
785 HAVE_SYS_LOADAVG_H = @HAVE_SYS_LOADAVG_H@
786 HAVE_SYS_PARAM_H = @HAVE_SYS_PARAM_H@
787 HAVE_SYS_SOCKET_H = @HAVE_SYS_SOCKET_H@
788 HAVE_SYS_TIME_H = @HAVE_SYS_TIME_H@
789 HAVE_SYS_TYPES_H = @HAVE_SYS_TYPES_H@
790 HAVE_UNISTD_H = @HAVE_UNISTD_H@
791 HAVE_UNSETENV = @HAVE_UNSETENV@
792 HAVE_UNSIGNED_LONG_LONG_INT = @HAVE_UNSIGNED_LONG_LONG_INT@
793 HAVE_VASPRINTF = @HAVE_VASPRINTF@
794 HAVE_VDPRINTF = @HAVE_VDPRINTF@
795 HAVE_VISIBILITY = @HAVE_VISIBILITY@
796 HAVE_WCHAR_H = @HAVE_WCHAR_H@
797 HAVE_WCRTOMB = @HAVE_WCRTOMB@
798 HAVE_WCSNRTOMBS = @HAVE_WCSNRTOMBS@
799 HAVE_WCSRTOMBS = @HAVE_WCSRTOMBS@
800 HAVE_WCTYPE_H = @HAVE_WCTYPE_H@
801 HAVE_WINSOCK2_H = @HAVE_WINSOCK2_H@
802 HAVE_WINT_T = @HAVE_WINT_T@
803 HAVE_WS2TCPIP_H = @HAVE_WS2TCPIP_H@
804 HAVE__BOOL = @HAVE__BOOL@
805 HOSTENT_LIB = @HOSTENT_LIB@
806 INCLUDE_NEXT = @INCLUDE_NEXT@
807 INCLUDE_NEXT_AS_FIRST_DIRECTIVE = @INCLUDE_NEXT_AS_FIRST_DIRECTIVE@
808 INSTALL = @INSTALL@
809 INSTALL_DATA = @INSTALL_DATA@
810 INSTALL_PROGRAM = @INSTALL_PROGRAM@
811 INSTALL_SCRIPT = @INSTALL_SCRIPT@
812 INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@
813 INTLLIBS = @INTLLIBS@
814 INTL_MACOSX_LIBS = @INTL_MACOSX_LIBS@
815 KRB5_SECURITY = @KRB5_SECURITY@
816 LD = @LD@
817 LDFLAGS = @LDFLAGS@
818 LEX = @LEX@
819 LEXLIB = @LEXLIB@
820 LEX_OUTPUT_ROOT = @LEX_OUTPUT_ROOT@
821 LIBCURL = @LIBCURL@
822 LIBCURL_CPPFLAGS = @LIBCURL_CPPFLAGS@
823 LIBICONV = @LIBICONV@
824 LIBINTL = @LIBINTL@
825 LIBMULTITHREAD = @LIBMULTITHREAD@
826 LIBOBJS = @LIBOBJS@
827 LIBPTH = @LIBPTH@
828 LIBS = @LIBS@
829 LIBTHREAD = @LIBTHREAD@
830 LIBTOOL = @LIBTOOL@
831 LIBTOOL_DEPS = @LIBTOOL_DEPS@
832 LIPO = @LIPO@
833 LN_S = @LN_S@
834 LOCALCHARSET_TESTS_ENVIRONMENT = @LOCALCHARSET_TESTS_ENVIRONMENT@
835 LOCALE_FR = @LOCALE_FR@
836 LOCALE_FR_UTF8 = @LOCALE_FR_UTF8@
837 LOCALE_JA = @LOCALE_JA@
838 LOCALE_ZH_CN = @LOCALE_ZH_CN@
839 LOCKING = @LOCKING@
840 LOW_TCPPORTRANGE = @LOW_TCPPORTRANGE@
841 LPR = @LPR@
842 LPRFLAG = @LPRFLAG@
843 LTALLOCA = @LTALLOCA@
844 LTLIBICONV = @LTLIBICONV@
845 LTLIBINTL = @LTLIBINTL@
846 LTLIBMULTITHREAD = @LTLIBMULTITHREAD@
847 LTLIBOBJS = @LTLIBOBJS@
848 LTLIBPTH = @LTLIBPTH@
849 LTLIBTHREAD = @LTLIBTHREAD@
850 MAILER = @MAILER@
851 MAKEINFO = @MAKEINFO@
852 MCUTIL = @MCUTIL@
853 MKDIR_P = @MKDIR_P@
854 MSGFMT = @MSGFMT@
855 MSGFMT_015 = @MSGFMT_015@
856 MSGMERGE = @MSGMERGE@
857 MT = @MT@
858 MTX = @MTX@
859 MT_FILE_FLAG = @MT_FILE_FLAG@
860 NETDB_H = @NETDB_H@
861 NETINET_IN_H = @NETINET_IN_H@
862 NEXT_ARPA_INET_H = @NEXT_ARPA_INET_H@
863 NEXT_ERRNO_H = @NEXT_ERRNO_H@
864 NEXT_FLOAT_H = @NEXT_FLOAT_H@
865 NEXT_NETDB_H = @NEXT_NETDB_H@
866 NEXT_NETINET_IN_H = @NEXT_NETINET_IN_H@
867 NEXT_STDINT_H = @NEXT_STDINT_H@
868 NEXT_STDIO_H = @NEXT_STDIO_H@
869 NEXT_STDLIB_H = @NEXT_STDLIB_H@
870 NEXT_SYS_SOCKET_H = @NEXT_SYS_SOCKET_H@
871 NEXT_SYS_STAT_H = @NEXT_SYS_STAT_H@
872 NEXT_SYS_TIME_H = @NEXT_SYS_TIME_H@
873 NEXT_UNISTD_H = @NEXT_UNISTD_H@
874 NEXT_WCHAR_H = @NEXT_WCHAR_H@
875 NEXT_WCTYPE_H = @NEXT_WCTYPE_H@
876 NM = @NM@
877 NMEDIT = @NMEDIT@
878 OBJEXT = @OBJEXT@
879 OTOOL = @OTOOL@
880 OTOOL64 = @OTOOL64@
881 PACKAGE = @PACKAGE@
882 PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@
883 PACKAGE_NAME = @PACKAGE_NAME@
884 PACKAGE_STRING = @PACKAGE_STRING@
885 PACKAGE_TARNAME = @PACKAGE_TARNAME@
886 PACKAGE_VERSION = @PACKAGE_VERSION@
887 PATH_SEPARATOR = @PATH_SEPARATOR@
888 PCAT = @PCAT@
889 PERL = @PERL@
890 PERLEXTLIBS = @PERLEXTLIBS@
891 PERL_INC = @PERL_INC@
892 PKG_CONFIG = @PKG_CONFIG@
893 POSUB = @POSUB@
894 PRAGMA_SYSTEM_HEADER = @PRAGMA_SYSTEM_HEADER@
895 PS = @PS@
896 PS_ARGUMENT = @PS_ARGUMENT@
897 PS_ARGUMENT_ARGS = @PS_ARGUMENT_ARGS@
898 PTRDIFF_T_SUFFIX = @PTRDIFF_T_SUFFIX@
899 RANLIB = @RANLIB@
900 READLINE_LIBS = @READLINE_LIBS@
901 REPLACE_BTOWC = @REPLACE_BTOWC@
902 REPLACE_CHOWN = @REPLACE_CHOWN@
903 REPLACE_CLOSE = @REPLACE_CLOSE@
904 REPLACE_DPRINTF = @REPLACE_DPRINTF@
905 REPLACE_FCHDIR = @REPLACE_FCHDIR@
906 REPLACE_FCLOSE = @REPLACE_FCLOSE@
907 REPLACE_FFLUSH = @REPLACE_FFLUSH@
908 REPLACE_FOPEN = @REPLACE_FOPEN@
909 REPLACE_FPRINTF = @REPLACE_FPRINTF@
910 REPLACE_FREOPEN = @REPLACE_FREOPEN@
911 REPLACE_FSEEK = @REPLACE_FSEEK@
912 REPLACE_FSEEKO = @REPLACE_FSEEKO@
913 REPLACE_FTELL = @REPLACE_FTELL@
914 REPLACE_FTELLO = @REPLACE_FTELLO@
915 REPLACE_GETCWD = @REPLACE_GETCWD@
916 REPLACE_GETLINE = @REPLACE_GETLINE@
917 REPLACE_GETPAGESIZE = @REPLACE_GETPAGESIZE@
918 REPLACE_GETTIMEOFDAY = @REPLACE_GETTIMEOFDAY@
919 REPLACE_ISWCNTRL = @REPLACE_ISWCNTRL@
920 REPLACE_LCHOWN = @REPLACE_LCHOWN@
921 REPLACE_LSEEK = @REPLACE_LSEEK@
922 REPLACE_LSTAT = @REPLACE_LSTAT@
923 REPLACE_MBRLEN = @REPLACE_MBRLEN@
924 REPLACE_MBRTOWC = @REPLACE_MBRTOWC@
925 REPLACE_MBSINIT = @REPLACE_MBSINIT@
926 REPLACE_MBSNRTOWCS = @REPLACE_MBSNRTOWCS@
927 REPLACE_MBSRTOWCS = @REPLACE_MBSRTOWCS@
928 REPLACE_MBSTATE_T = @REPLACE_MBSTATE_T@
929 REPLACE_MKDIR = @REPLACE_MKDIR@
930 REPLACE_MKSTEMP = @REPLACE_MKSTEMP@
931 REPLACE_OBSTACK_PRINTF = @REPLACE_OBSTACK_PRINTF@
932 REPLACE_PERROR = @REPLACE_PERROR@
933 REPLACE_PRINTF = @REPLACE_PRINTF@
934 REPLACE_PUTENV = @REPLACE_PUTENV@
935 REPLACE_SNPRINTF = @REPLACE_SNPRINTF@
936 REPLACE_SPRINTF = @REPLACE_SPRINTF@
937 REPLACE_STDIO_WRITE_FUNCS = @REPLACE_STDIO_WRITE_FUNCS@
938 REPLACE_STRTOD = @REPLACE_STRTOD@
939 REPLACE_VASPRINTF = @REPLACE_VASPRINTF@
940 REPLACE_VDPRINTF = @REPLACE_VDPRINTF@
941 REPLACE_VFPRINTF = @REPLACE_VFPRINTF@
942 REPLACE_VPRINTF = @REPLACE_VPRINTF@
943 REPLACE_VSNPRINTF = @REPLACE_VSNPRINTF@
944 REPLACE_VSPRINTF = @REPLACE_VSPRINTF@
945 REPLACE_WCRTOMB = @REPLACE_WCRTOMB@
946 REPLACE_WCSRTOMBS = @REPLACE_WCSRTOMBS@
947 REPLACE_WCTOB = @REPLACE_WCTOB@
948 REPLACE_WCWIDTH = @REPLACE_WCWIDTH@
949 REPLACE_WRITE = @REPLACE_WRITE@
950 RESTORE = @RESTORE@
951 RPCGEN = @RPCGEN@
952 RSH_SECURITY = @RSH_SECURITY@
953 SAMBA_CLIENT = @SAMBA_CLIENT@
954 SED = @SED@
955 SERVENT_LIB = @SERVENT_LIB@
956 SERVICE_SUFFIX = @SERVICE_SUFFIX@
957 SETUID_GROUP = @SETUID_GROUP@
958 SET_MAKE = @SET_MAKE@
959 SHELL = @SHELL@
960 SIG_ATOMIC_T_SUFFIX = @SIG_ATOMIC_T_SUFFIX@
961 SIZE_T_SUFFIX = @SIZE_T_SUFFIX@
962 SNAPSHOT_STAMP = @SNAPSHOT_STAMP@
963 SORT = @SORT@
964 SSH = @SSH@
965 SSH_SECURITY = @SSH_SECURITY@
966 STAR = @STAR@
967 STDBOOL_H = @STDBOOL_H@
968 STDINT_H = @STDINT_H@
969 STRIP = @STRIP@
970 SVN = @SVN@
971 SWIG = @SWIG@
972 SWIG_LIB = @SWIG_LIB@
973 SYS_SOCKET_H = @SYS_SOCKET_H@
974 SYS_STAT_H = @SYS_STAT_H@
975 SYS_TIME_H = @SYS_TIME_H@
976 TCPPORTRANGE = @TCPPORTRANGE@
977 UDPPORTRANGE = @UDPPORTRANGE@
978 UNCOMPRESS_OPT = @UNCOMPRESS_OPT@
979 UNCOMPRESS_PATH = @UNCOMPRESS_PATH@
980 UNISTD_H_HAVE_WINSOCK2_H = @UNISTD_H_HAVE_WINSOCK2_H@
981 USE_AMANDAHOSTS = @USE_AMANDAHOSTS@
982 USE_NLS = @USE_NLS@
983 USE_RUNDUMP = @USE_RUNDUMP@
984 VDUMP = @VDUMP@
985 VERSION = @VERSION@
986 VERSION_COMMENT = @VERSION_COMMENT@
987 VERSION_MAJOR = @VERSION_MAJOR@
988 VERSION_MINOR = @VERSION_MINOR@
989 VERSION_PATCH = @VERSION_PATCH@
990 VOID_UNSETENV = @VOID_UNSETENV@
991 VRESTORE = @VRESTORE@
992 VXDUMP = @VXDUMP@
993 VXRESTORE = @VXRESTORE@
994 WCHAR_H = @WCHAR_H@
995 WCHAR_T_SUFFIX = @WCHAR_T_SUFFIX@
996 WCTYPE_H = @WCTYPE_H@
997 WINT_T_SUFFIX = @WINT_T_SUFFIX@
998 XFSDUMP = @XFSDUMP@
999 XFSRESTORE = @XFSRESTORE@
1000 XGETTEXT = @XGETTEXT@
1001 XGETTEXT_015 = @XGETTEXT_015@
1002 XSLREL = @XSLREL@
1003 XSLTPROC = @XSLTPROC@
1004 XSLTPROC_FLAGS = @XSLTPROC_FLAGS@
1005 YACC = @YACC@
1006 YFLAGS = @YFLAGS@
1007 _libcurl_config = @_libcurl_config@
1008 abs_builddir = @abs_builddir@
1009 abs_srcdir = @abs_srcdir@
1010 abs_top_builddir = @abs_top_builddir@
1011 abs_top_srcdir = @abs_top_srcdir@
1012 ac_ct_CC = @ac_ct_CC@
1013 ac_ct_DUMPBIN = @ac_ct_DUMPBIN@
1014 am__include = @am__include@
1015 am__leading_dot = @am__leading_dot@
1016 am__quote = @am__quote@
1017 am__tar = @am__tar@
1018 am__untar = @am__untar@
1019 amdatadir = @amdatadir@
1020 amincludedir = @amincludedir@
1021 amlibdir = @amlibdir@
1022 amlibexecdir = @amlibexecdir@
1023 amperldir = @amperldir@
1024 bindir = @bindir@
1025 build = @build@
1026 build_alias = @build_alias@
1027 build_cpu = @build_cpu@
1028 build_os = @build_os@
1029 build_vendor = @build_vendor@
1030 builddir = @builddir@
1031 datadir = @datadir@
1032 datarootdir = @datarootdir@
1033 docdir = @docdir@
1034 dvidir = @dvidir@
1035 exec_prefix = @exec_prefix@
1036 gl_LIBOBJS = @gl_LIBOBJS@
1037 gl_LTLIBOBJS = @gl_LTLIBOBJS@
1038 gltests_LIBOBJS = @gltests_LIBOBJS@
1039 gltests_LTLIBOBJS = @gltests_LTLIBOBJS@
1040 host = @host@
1041 host_alias = @host_alias@
1042 host_cpu = @host_cpu@
1043 host_os = @host_os@
1044 host_vendor = @host_vendor@
1045 htmldir = @htmldir@
1046 includedir = @includedir@
1047 infodir = @infodir@
1048 install_sh = @install_sh@
1049 libdir = @libdir@
1050 libexecdir = @libexecdir@
1051 localedir = @localedir@
1052 localstatedir = @localstatedir@
1053 lt_ECHO = @lt_ECHO@
1054 mandir = @mandir@
1055 mkdir_p = @mkdir_p@
1056 oldincludedir = @oldincludedir@
1057 pdfdir = @pdfdir@
1058 prefix = @prefix@
1059 program_transform_name = @program_transform_name@
1060 psdir = @psdir@
1061 sbindir = @sbindir@
1062 sharedstatedir = @sharedstatedir@
1063 srcdir = @srcdir@
1064 sysconfdir = @sysconfdir@
1065 target_alias = @target_alias@
1066 top_build_prefix = @top_build_prefix@
1067 top_builddir = @top_builddir@
1068 top_srcdir = @top_srcdir@
1069 SUFFIXES = 
1070 EXTRA_DIST = 
1071 BUILT_SOURCES = 
1072 MOSTLYCLEANFILES = 
1073
1074 # config.status leaves config.log files around
1075 CLEANFILES = config.log *.test.c
1076
1077 # and we'll need to clean up our generated files for distclean
1078 DISTCLEANFILES = $(SCRIPTS_SHELL) $(SCRIPTS_PERL) $(SCRIPTS_AWK) \
1079         $(SCRIPTS_INCLUDE) $(am__append_1)
1080 MAINTAINERCLEANFILES = 
1081
1082 # sed expression to strip leading directories from a filename; this converts e.g.,
1083 # src/foo/bar.so to bar.so.
1084 strip_leading_dirs = s|^.*/||
1085 @WANT_INSTALLPERMS_FALSE@do_file = pa="$$dest"/`echo "$$cmd"|sed '$(strip_leading_dirs)'|sed '$(transform)'`; \
1086 @WANT_INSTALLPERMS_FALSE@    echo "installperm \"$$chown\" \"$$chmod\" \"$$pa\"" >> "$(installperms_sh)"
1087
1088
1089 # define a snippet of the scripts below to either perform a chown/chmod operation,
1090 # or record that operation in the logfile.  On entry to the snippet, $$dest is the
1091 # destination directory, $$cmd is the srcdir-relative pathname of the target file,
1092 # $$chown is the ownership, and $$chmod is the permission pattern.
1093 @WANT_INSTALLPERMS_TRUE@do_file = pa="$(DESTDIR)$$dest"/`echo "$$cmd"|sed '$(strip_leading_dirs)'|sed '$(transform)'`; \
1094 @WANT_INSTALLPERMS_TRUE@    if test -n "$$chown"; then \
1095 @WANT_INSTALLPERMS_TRUE@        echo chown "$$chown" "$$pa"; \
1096 @WANT_INSTALLPERMS_TRUE@        chown "$$chown" "$$pa" || exit 1; \
1097 @WANT_INSTALLPERMS_TRUE@    fi; \
1098 @WANT_INSTALLPERMS_TRUE@    if test -n "$$chmod"; then \
1099 @WANT_INSTALLPERMS_TRUE@        echo chmod "$$chmod" "$$pa"; \
1100 @WANT_INSTALLPERMS_TRUE@        chmod "$$chmod" "$$pa" || exit 1; \
1101 @WANT_INSTALLPERMS_TRUE@    fi 
1102
1103 @WANT_INSTALLPERMS_FALSE@installperms_sh = "$(top_builddir)/installperms.sh"
1104 INCLUDES = -I$(top_builddir)/common-src \
1105                 -I$(top_srcdir)/common-src   \
1106                 -I$(top_srcdir)/amandad-src  \
1107                 -I$(top_srcdir)/device-src   \
1108                 -I$(top_srcdir)/xfer-src   \
1109                 -I$(top_srcdir)/gnulib
1110
1111 AM_CFLAGS = $(AMANDA_WARNING_CFLAGS)
1112 AM_LDFLAGS = $(AMANDA_STATIC_LDFLAGS)
1113 LINT = $(AMLINT)
1114 LINTFLAGS = $(AMLINTFLAGS)
1115 amlib_LTLIBRARIES = libamserver.la
1116 amlibexec_SCRIPTS_PERL = taper amcheck-device $(am__append_2)
1117 sbin_SCRIPTS_PERL = amaddclient amoverview amserverconfig amtoc \
1118         amcheckdump amcleanup amrmtape amlabel amreport amtape amvault \
1119         amstatus $(am__append_3)
1120 sbin_SCRIPTS_SHELL = \
1121             amcheckdb \
1122             amdump
1123
1124 SCRIPTS_PERL = $(sbin_SCRIPTS_PERL) $(amlibexec_SCRIPTS_PERL)
1125 SCRIPTS_SHELL = $(sbin_SCRIPTS_SHELL) $(amlibexec_SCRIPTS_SHELL)
1126 sbin_SCRIPTS = $(sbin_SCRIPTS_PERL) $(sbin_SCRIPTS_SHELL)
1127 amlibexec_SCRIPTS = $(amlibexec_SCRIPTS_PERL) $(amlibexec_SCRIPTS_SHELL)
1128 INSTALLPERMS_exec = \
1129         dest=$(sbindir) chown=amanda chmod= \
1130                 $(sbin_PROGRAMS) \
1131         chown=root chmod=04750 \
1132                 amcheck amservice \
1133         dest=$(amlibexecdir) chown=amanda chmod= \
1134                 $(amlibexec_PROGRAMS) \
1135                 $(amlibexec_SCRIPTS) \
1136         chown=root chmod=04750 \
1137                 dumper planner
1138
1139 INSTALLPERMS_data = \
1140         dest=$(sbindir) chown=amanda chmod= \
1141                 $(sbin_SCRIPTS) \
1142         dest=$(amlibexecdir) chown=amanda chmod= \
1143                 $(amlibexec_SCRIPTS)
1144
1145
1146 ###
1147 # Because libamanda includes routines (e.g. regex) provided by some system
1148 # libraries, and because of the way libtool sets up the command line, we
1149 # need to list libamanda twice here, first to override the system library
1150 # routines, and second to pick up any references in the other libraries.
1151 ###
1152 LDADD = ../common-src/libamanda.la   \
1153         libamserver.la               \
1154         ../device-src/libamdevice.la     \
1155         ../common-src/libamanda.la   \
1156         $(READLINE_LIBS)
1157
1158 libamserver_la_SOURCES = amindex.c      \
1159                         diskfile.c      driverio.c      cmdline.c  \
1160                         holding.c       infofile.c      logfile.c       \
1161                         tapefile.c      find.c          server_util.c   \
1162                         xfer-source-holding.c
1163
1164 libamserver_la_LDFLAGS = -release $(VERSION)
1165 libamserver_la_LIBADD = ../device-src/libamdevice.la \
1166                        ../common-src/libamanda.la
1167
1168 amindexd_LDADD = $(LDADD) \
1169         ../amandad-src/libamandad.la
1170
1171
1172 # there are used for testing only:
1173 TEST_PROGS = diskfile infofile
1174 amindexd_CSRC = amindexd.c      disk_history.c  list_dir.c
1175 amindexd_SOURCES = disk_history.h       list_dir.h      $(amindexd_CSRC)
1176 noinst_HEADERS = amindex.h      cmdline.h       \
1177                         diskfile.h      driverio.h      \
1178                         holding.h       infofile.h      logfile.h       \
1179                         tapefile.h      find.h          server_util.h   \
1180                         xfer-server.h
1181
1182 diskfile_SOURCES = diskfile.test.c
1183 infofile_SOURCES = infofile.test.c
1184 all: $(BUILT_SOURCES)
1185         $(MAKE) $(AM_MAKEFLAGS) all-am
1186
1187 .SUFFIXES:
1188 .SUFFIXES: .c .lo .o .obj
1189 $(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)
1190         @for dep in $?; do \
1191           case '$(am__configure_deps)' in \
1192             *$$dep*) \
1193               ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \
1194                 && { if test -f $@; then exit 0; else break; fi; }; \
1195               exit 1;; \
1196           esac; \
1197         done; \
1198         echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu server-src/Makefile'; \
1199         $(am__cd) $(top_srcdir) && \
1200           $(AUTOMAKE) --gnu server-src/Makefile
1201 .PRECIOUS: Makefile
1202 Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
1203         @case '$?' in \
1204           *config.status*) \
1205             cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \
1206           *) \
1207             echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \
1208             cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \
1209         esac;
1210
1211 $(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES)
1212         cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
1213
1214 $(top_srcdir)/configure:  $(am__configure_deps)
1215         cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
1216 $(ACLOCAL_M4):  $(am__aclocal_m4_deps)
1217         cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
1218 $(am__aclocal_m4_deps):
1219 install-amlibLTLIBRARIES: $(amlib_LTLIBRARIES)
1220         @$(NORMAL_INSTALL)
1221         test -z "$(amlibdir)" || $(MKDIR_P) "$(DESTDIR)$(amlibdir)"
1222         @list='$(amlib_LTLIBRARIES)'; test -n "$(amlibdir)" || list=; \
1223         list2=; for p in $$list; do \
1224           if test -f $$p; then \
1225             list2="$$list2 $$p"; \
1226           else :; fi; \
1227         done; \
1228         test -z "$$list2" || { \
1229           echo " $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=install $(INSTALL) $(INSTALL_STRIP_FLAG) $$list2 '$(DESTDIR)$(amlibdir)'"; \
1230           $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=install $(INSTALL) $(INSTALL_STRIP_FLAG) $$list2 "$(DESTDIR)$(amlibdir)"; \
1231         }
1232
1233 uninstall-amlibLTLIBRARIES:
1234         @$(NORMAL_UNINSTALL)
1235         @list='$(amlib_LTLIBRARIES)'; test -n "$(amlibdir)" || list=; \
1236         for p in $$list; do \
1237           $(am__strip_dir) \
1238           echo " $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=uninstall rm -f '$(DESTDIR)$(amlibdir)/$$f'"; \
1239           $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=uninstall rm -f "$(DESTDIR)$(amlibdir)/$$f"; \
1240         done
1241
1242 clean-amlibLTLIBRARIES:
1243         -test -z "$(amlib_LTLIBRARIES)" || rm -f $(amlib_LTLIBRARIES)
1244         @list='$(amlib_LTLIBRARIES)'; for p in $$list; do \
1245           dir="`echo $$p | sed -e 's|/[^/]*$$||'`"; \
1246           test "$$dir" != "$$p" || dir=.; \
1247           echo "rm -f \"$${dir}/so_locations\""; \
1248           rm -f "$${dir}/so_locations"; \
1249         done
1250 libamserver.la: $(libamserver_la_OBJECTS) $(libamserver_la_DEPENDENCIES) 
1251         $(libamserver_la_LINK) -rpath $(amlibdir) $(libamserver_la_OBJECTS) $(libamserver_la_LIBADD) $(LIBS)
1252 install-amlibexecPROGRAMS: $(amlibexec_PROGRAMS)
1253         @$(NORMAL_INSTALL)
1254         test -z "$(amlibexecdir)" || $(MKDIR_P) "$(DESTDIR)$(amlibexecdir)"
1255         @list='$(amlibexec_PROGRAMS)'; test -n "$(amlibexecdir)" || list=; \
1256         for p in $$list; do echo "$$p $$p"; done | \
1257         sed 's/$(EXEEXT)$$//' | \
1258         while read p p1; do if test -f $$p || test -f $$p1; \
1259           then echo "$$p"; echo "$$p"; else :; fi; \
1260         done | \
1261         sed -e 'p;s,.*/,,;n;h' -e 's|.*|.|' \
1262             -e 'p;x;s,.*/,,;s/$(EXEEXT)$$//;$(transform);s/$$/$(EXEEXT)/' | \
1263         sed 'N;N;N;s,\n, ,g' | \
1264         $(AWK) 'BEGIN { files["."] = ""; dirs["."] = 1 } \
1265           { d=$$3; if (dirs[d] != 1) { print "d", d; dirs[d] = 1 } \
1266             if ($$2 == $$4) files[d] = files[d] " " $$1; \
1267             else { print "f", $$3 "/" $$4, $$1; } } \
1268           END { for (d in files) print "f", d, files[d] }' | \
1269         while read type dir files; do \
1270             if test "$$dir" = .; then dir=; else dir=/$$dir; fi; \
1271             test -z "$$files" || { \
1272             echo " $(INSTALL_PROGRAM_ENV) $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=install $(INSTALL_PROGRAM) $$files '$(DESTDIR)$(amlibexecdir)$$dir'"; \
1273             $(INSTALL_PROGRAM_ENV) $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=install $(INSTALL_PROGRAM) $$files "$(DESTDIR)$(amlibexecdir)$$dir" || exit $$?; \
1274             } \
1275         ; done
1276
1277 uninstall-amlibexecPROGRAMS:
1278         @$(NORMAL_UNINSTALL)
1279         @list='$(amlibexec_PROGRAMS)'; test -n "$(amlibexecdir)" || list=; \
1280         files=`for p in $$list; do echo "$$p"; done | \
1281           sed -e 'h;s,^.*/,,;s/$(EXEEXT)$$//;$(transform)' \
1282               -e 's/$$/$(EXEEXT)/' `; \
1283         test -n "$$list" || exit 0; \
1284         echo " ( cd '$(DESTDIR)$(amlibexecdir)' && rm -f" $$files ")"; \
1285         cd "$(DESTDIR)$(amlibexecdir)" && rm -f $$files
1286
1287 clean-amlibexecPROGRAMS:
1288         @list='$(amlibexec_PROGRAMS)'; test -n "$$list" || exit 0; \
1289         echo " rm -f" $$list; \
1290         rm -f $$list || exit $$?; \
1291         test -n "$(EXEEXT)" || exit 0; \
1292         list=`for p in $$list; do echo "$$p"; done | sed 's/$(EXEEXT)$$//'`; \
1293         echo " rm -f" $$list; \
1294         rm -f $$list
1295 install-sbinPROGRAMS: $(sbin_PROGRAMS)
1296         @$(NORMAL_INSTALL)
1297         test -z "$(sbindir)" || $(MKDIR_P) "$(DESTDIR)$(sbindir)"
1298         @list='$(sbin_PROGRAMS)'; test -n "$(sbindir)" || list=; \
1299         for p in $$list; do echo "$$p $$p"; done | \
1300         sed 's/$(EXEEXT)$$//' | \
1301         while read p p1; do if test -f $$p || test -f $$p1; \
1302           then echo "$$p"; echo "$$p"; else :; fi; \
1303         done | \
1304         sed -e 'p;s,.*/,,;n;h' -e 's|.*|.|' \
1305             -e 'p;x;s,.*/,,;s/$(EXEEXT)$$//;$(transform);s/$$/$(EXEEXT)/' | \
1306         sed 'N;N;N;s,\n, ,g' | \
1307         $(AWK) 'BEGIN { files["."] = ""; dirs["."] = 1 } \
1308           { d=$$3; if (dirs[d] != 1) { print "d", d; dirs[d] = 1 } \
1309             if ($$2 == $$4) files[d] = files[d] " " $$1; \
1310             else { print "f", $$3 "/" $$4, $$1; } } \
1311           END { for (d in files) print "f", d, files[d] }' | \
1312         while read type dir files; do \
1313             if test "$$dir" = .; then dir=; else dir=/$$dir; fi; \
1314             test -z "$$files" || { \
1315             echo " $(INSTALL_PROGRAM_ENV) $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=install $(INSTALL_PROGRAM) $$files '$(DESTDIR)$(sbindir)$$dir'"; \
1316             $(INSTALL_PROGRAM_ENV) $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=install $(INSTALL_PROGRAM) $$files "$(DESTDIR)$(sbindir)$$dir" || exit $$?; \
1317             } \
1318         ; done
1319
1320 uninstall-sbinPROGRAMS:
1321         @$(NORMAL_UNINSTALL)
1322         @list='$(sbin_PROGRAMS)'; test -n "$(sbindir)" || list=; \
1323         files=`for p in $$list; do echo "$$p"; done | \
1324           sed -e 'h;s,^.*/,,;s/$(EXEEXT)$$//;$(transform)' \
1325               -e 's/$$/$(EXEEXT)/' `; \
1326         test -n "$$list" || exit 0; \
1327         echo " ( cd '$(DESTDIR)$(sbindir)' && rm -f" $$files ")"; \
1328         cd "$(DESTDIR)$(sbindir)" && rm -f $$files
1329
1330 clean-sbinPROGRAMS:
1331         @list='$(sbin_PROGRAMS)'; test -n "$$list" || exit 0; \
1332         echo " rm -f" $$list; \
1333         rm -f $$list || exit $$?; \
1334         test -n "$(EXEEXT)" || exit 0; \
1335         list=`for p in $$list; do echo "$$p"; done | sed 's/$(EXEEXT)$$//'`; \
1336         echo " rm -f" $$list; \
1337         rm -f $$list
1338 amadmin$(EXEEXT): $(amadmin_OBJECTS) $(amadmin_DEPENDENCIES) 
1339         @rm -f amadmin$(EXEEXT)
1340         $(LINK) $(amadmin_OBJECTS) $(amadmin_LDADD) $(LIBS)
1341 amcheck$(EXEEXT): $(amcheck_OBJECTS) $(amcheck_DEPENDENCIES) 
1342         @rm -f amcheck$(EXEEXT)
1343         $(LINK) $(amcheck_OBJECTS) $(amcheck_LDADD) $(LIBS)
1344 amcleanupdisk$(EXEEXT): $(amcleanupdisk_OBJECTS) $(amcleanupdisk_DEPENDENCIES) 
1345         @rm -f amcleanupdisk$(EXEEXT)
1346         $(LINK) $(amcleanupdisk_OBJECTS) $(amcleanupdisk_LDADD) $(LIBS)
1347 amflush$(EXEEXT): $(amflush_OBJECTS) $(amflush_DEPENDENCIES) 
1348         @rm -f amflush$(EXEEXT)
1349         $(LINK) $(amflush_OBJECTS) $(amflush_LDADD) $(LIBS)
1350 amindexd$(EXEEXT): $(amindexd_OBJECTS) $(amindexd_DEPENDENCIES) 
1351         @rm -f amindexd$(EXEEXT)
1352         $(LINK) $(amindexd_OBJECTS) $(amindexd_LDADD) $(LIBS)
1353 amlogroll$(EXEEXT): $(amlogroll_OBJECTS) $(amlogroll_DEPENDENCIES) 
1354         @rm -f amlogroll$(EXEEXT)
1355         $(LINK) $(amlogroll_OBJECTS) $(amlogroll_LDADD) $(LIBS)
1356 amservice$(EXEEXT): $(amservice_OBJECTS) $(amservice_DEPENDENCIES) 
1357         @rm -f amservice$(EXEEXT)
1358         $(LINK) $(amservice_OBJECTS) $(amservice_LDADD) $(LIBS)
1359 amtrmidx$(EXEEXT): $(amtrmidx_OBJECTS) $(amtrmidx_DEPENDENCIES) 
1360         @rm -f amtrmidx$(EXEEXT)
1361         $(LINK) $(amtrmidx_OBJECTS) $(amtrmidx_LDADD) $(LIBS)
1362 amtrmlog$(EXEEXT): $(amtrmlog_OBJECTS) $(amtrmlog_DEPENDENCIES) 
1363         @rm -f amtrmlog$(EXEEXT)
1364         $(LINK) $(amtrmlog_OBJECTS) $(amtrmlog_LDADD) $(LIBS)
1365 chunker$(EXEEXT): $(chunker_OBJECTS) $(chunker_DEPENDENCIES) 
1366         @rm -f chunker$(EXEEXT)
1367         $(LINK) $(chunker_OBJECTS) $(chunker_LDADD) $(LIBS)
1368 diskfile$(EXEEXT): $(diskfile_OBJECTS) $(diskfile_DEPENDENCIES) 
1369         @rm -f diskfile$(EXEEXT)
1370         $(LINK) $(diskfile_OBJECTS) $(diskfile_LDADD) $(LIBS)
1371 driver$(EXEEXT): $(driver_OBJECTS) $(driver_DEPENDENCIES) 
1372         @rm -f driver$(EXEEXT)
1373         $(LINK) $(driver_OBJECTS) $(driver_LDADD) $(LIBS)
1374 dumper$(EXEEXT): $(dumper_OBJECTS) $(dumper_DEPENDENCIES) 
1375         @rm -f dumper$(EXEEXT)
1376         $(LINK) $(dumper_OBJECTS) $(dumper_LDADD) $(LIBS)
1377 infofile$(EXEEXT): $(infofile_OBJECTS) $(infofile_DEPENDENCIES) 
1378         @rm -f infofile$(EXEEXT)
1379         $(LINK) $(infofile_OBJECTS) $(infofile_LDADD) $(LIBS)
1380 planner$(EXEEXT): $(planner_OBJECTS) $(planner_DEPENDENCIES) 
1381         @rm -f planner$(EXEEXT)
1382         $(LINK) $(planner_OBJECTS) $(planner_LDADD) $(LIBS)
1383 install-amlibexecSCRIPTS: $(amlibexec_SCRIPTS)
1384         @$(NORMAL_INSTALL)
1385         test -z "$(amlibexecdir)" || $(MKDIR_P) "$(DESTDIR)$(amlibexecdir)"
1386         @list='$(amlibexec_SCRIPTS)'; test -n "$(amlibexecdir)" || list=; \
1387         for p in $$list; do \
1388           if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \
1389           if test -f "$$d$$p"; then echo "$$d$$p"; echo "$$p"; else :; fi; \
1390         done | \
1391         sed -e 'p;s,.*/,,;n' \
1392             -e 'h;s|.*|.|' \
1393             -e 'p;x;s,.*/,,;$(transform)' | sed 'N;N;N;s,\n, ,g' | \
1394         $(AWK) 'BEGIN { files["."] = ""; dirs["."] = 1; } \
1395           { d=$$3; if (dirs[d] != 1) { print "d", d; dirs[d] = 1 } \
1396             if ($$2 == $$4) { files[d] = files[d] " " $$1; \
1397               if (++n[d] == $(am__install_max)) { \
1398                 print "f", d, files[d]; n[d] = 0; files[d] = "" } } \
1399             else { print "f", d "/" $$4, $$1 } } \
1400           END { for (d in files) print "f", d, files[d] }' | \
1401         while read type dir files; do \
1402              if test "$$dir" = .; then dir=; else dir=/$$dir; fi; \
1403              test -z "$$files" || { \
1404                echo " $(INSTALL_SCRIPT) $$files '$(DESTDIR)$(amlibexecdir)$$dir'"; \
1405                $(INSTALL_SCRIPT) $$files "$(DESTDIR)$(amlibexecdir)$$dir" || exit $$?; \
1406              } \
1407         ; done
1408
1409 uninstall-amlibexecSCRIPTS:
1410         @$(NORMAL_UNINSTALL)
1411         @list='$(amlibexec_SCRIPTS)'; test -n "$(amlibexecdir)" || exit 0; \
1412         files=`for p in $$list; do echo "$$p"; done | \
1413                sed -e 's,.*/,,;$(transform)'`; \
1414         test -n "$$list" || exit 0; \
1415         echo " ( cd '$(DESTDIR)$(amlibexecdir)' && rm -f" $$files ")"; \
1416         cd "$(DESTDIR)$(amlibexecdir)" && rm -f $$files
1417 install-sbinSCRIPTS: $(sbin_SCRIPTS)
1418         @$(NORMAL_INSTALL)
1419         test -z "$(sbindir)" || $(MKDIR_P) "$(DESTDIR)$(sbindir)"
1420         @list='$(sbin_SCRIPTS)'; test -n "$(sbindir)" || list=; \
1421         for p in $$list; do \
1422           if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \
1423           if test -f "$$d$$p"; then echo "$$d$$p"; echo "$$p"; else :; fi; \
1424         done | \
1425         sed -e 'p;s,.*/,,;n' \
1426             -e 'h;s|.*|.|' \
1427             -e 'p;x;s,.*/,,;$(transform)' | sed 'N;N;N;s,\n, ,g' | \
1428         $(AWK) 'BEGIN { files["."] = ""; dirs["."] = 1; } \
1429           { d=$$3; if (dirs[d] != 1) { print "d", d; dirs[d] = 1 } \
1430             if ($$2 == $$4) { files[d] = files[d] " " $$1; \
1431               if (++n[d] == $(am__install_max)) { \
1432                 print "f", d, files[d]; n[d] = 0; files[d] = "" } } \
1433             else { print "f", d "/" $$4, $$1 } } \
1434           END { for (d in files) print "f", d, files[d] }' | \
1435         while read type dir files; do \
1436              if test "$$dir" = .; then dir=; else dir=/$$dir; fi; \
1437              test -z "$$files" || { \
1438                echo " $(INSTALL_SCRIPT) $$files '$(DESTDIR)$(sbindir)$$dir'"; \
1439                $(INSTALL_SCRIPT) $$files "$(DESTDIR)$(sbindir)$$dir" || exit $$?; \
1440              } \
1441         ; done
1442
1443 uninstall-sbinSCRIPTS:
1444         @$(NORMAL_UNINSTALL)
1445         @list='$(sbin_SCRIPTS)'; test -n "$(sbindir)" || exit 0; \
1446         files=`for p in $$list; do echo "$$p"; done | \
1447                sed -e 's,.*/,,;$(transform)'`; \
1448         test -n "$$list" || exit 0; \
1449         echo " ( cd '$(DESTDIR)$(sbindir)' && rm -f" $$files ")"; \
1450         cd "$(DESTDIR)$(sbindir)" && rm -f $$files
1451
1452 mostlyclean-compile:
1453         -rm -f *.$(OBJEXT)
1454
1455 distclean-compile:
1456         -rm -f *.tab.c
1457
1458 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/amadmin.Po@am__quote@
1459 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/amcheck.Po@am__quote@
1460 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/amcleanupdisk.Po@am__quote@
1461 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/amflush.Po@am__quote@
1462 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/amindex.Plo@am__quote@
1463 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/amindexd.Po@am__quote@
1464 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/amlogroll.Po@am__quote@
1465 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/amservice.Po@am__quote@
1466 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/amtrmidx.Po@am__quote@
1467 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/amtrmlog.Po@am__quote@
1468 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/chunker.Po@am__quote@
1469 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/cmdline.Plo@am__quote@
1470 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/disk_history.Po@am__quote@
1471 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/diskfile.Plo@am__quote@
1472 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/diskfile.test.Po@am__quote@
1473 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/driver.Po@am__quote@
1474 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/driverio.Plo@am__quote@
1475 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/dumper.Po@am__quote@
1476 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/find.Plo@am__quote@
1477 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/holding.Plo@am__quote@
1478 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/infofile.Plo@am__quote@
1479 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/infofile.test.Po@am__quote@
1480 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/list_dir.Po@am__quote@
1481 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/logfile.Plo@am__quote@
1482 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/planner.Po@am__quote@
1483 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/server_util.Plo@am__quote@
1484 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/tapefile.Plo@am__quote@
1485 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/xfer-source-holding.Plo@am__quote@
1486
1487 .c.o:
1488 @am__fastdepCC_TRUE@    $(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $<
1489 @am__fastdepCC_TRUE@    $(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po
1490 @AMDEP_TRUE@@am__fastdepCC_FALSE@       source='$<' object='$@' libtool=no @AMDEPBACKSLASH@
1491 @AMDEP_TRUE@@am__fastdepCC_FALSE@       DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
1492 @am__fastdepCC_FALSE@   $(COMPILE) -c $<
1493
1494 .c.obj:
1495 @am__fastdepCC_TRUE@    $(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ `$(CYGPATH_W) '$<'`
1496 @am__fastdepCC_TRUE@    $(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po
1497 @AMDEP_TRUE@@am__fastdepCC_FALSE@       source='$<' object='$@' libtool=no @AMDEPBACKSLASH@
1498 @AMDEP_TRUE@@am__fastdepCC_FALSE@       DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
1499 @am__fastdepCC_FALSE@   $(COMPILE) -c `$(CYGPATH_W) '$<'`
1500
1501 .c.lo:
1502 @am__fastdepCC_TRUE@    $(LTCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $<
1503 @am__fastdepCC_TRUE@    $(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Plo
1504 @AMDEP_TRUE@@am__fastdepCC_FALSE@       source='$<' object='$@' libtool=yes @AMDEPBACKSLASH@
1505 @AMDEP_TRUE@@am__fastdepCC_FALSE@       DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
1506 @am__fastdepCC_FALSE@   $(LTCOMPILE) -c -o $@ $<
1507
1508 mostlyclean-libtool:
1509         -rm -f *.lo
1510
1511 clean-libtool:
1512         -rm -rf .libs _libs
1513
1514 ID: $(HEADERS) $(SOURCES) $(LISP) $(TAGS_FILES)
1515         list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \
1516         unique=`for i in $$list; do \
1517             if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
1518           done | \
1519           $(AWK) '{ files[$$0] = 1; nonempty = 1; } \
1520               END { if (nonempty) { for (i in files) print i; }; }'`; \
1521         mkid -fID $$unique
1522 tags: TAGS
1523
1524 TAGS:  $(HEADERS) $(SOURCES)  $(TAGS_DEPENDENCIES) \
1525                 $(TAGS_FILES) $(LISP)
1526         set x; \
1527         here=`pwd`; \
1528         list='$(SOURCES) $(HEADERS)  $(LISP) $(TAGS_FILES)'; \
1529         unique=`for i in $$list; do \
1530             if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
1531           done | \
1532           $(AWK) '{ files[$$0] = 1; nonempty = 1; } \
1533               END { if (nonempty) { for (i in files) print i; }; }'`; \
1534         shift; \
1535         if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \
1536           test -n "$$unique" || unique=$$empty_fix; \
1537           if test $$# -gt 0; then \
1538             $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \
1539               "$$@" $$unique; \
1540           else \
1541             $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \
1542               $$unique; \
1543           fi; \
1544         fi
1545 ctags: CTAGS
1546 CTAGS:  $(HEADERS) $(SOURCES)  $(TAGS_DEPENDENCIES) \
1547                 $(TAGS_FILES) $(LISP)
1548         list='$(SOURCES) $(HEADERS)  $(LISP) $(TAGS_FILES)'; \
1549         unique=`for i in $$list; do \
1550             if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
1551           done | \
1552           $(AWK) '{ files[$$0] = 1; nonempty = 1; } \
1553               END { if (nonempty) { for (i in files) print i; }; }'`; \
1554         test -z "$(CTAGS_ARGS)$$unique" \
1555           || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \
1556              $$unique
1557
1558 GTAGS:
1559         here=`$(am__cd) $(top_builddir) && pwd` \
1560           && $(am__cd) $(top_srcdir) \
1561           && gtags -i $(GTAGS_ARGS) "$$here"
1562
1563 distclean-tags:
1564         -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags
1565
1566 distdir: $(DISTFILES)
1567         @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
1568         topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
1569         list='$(DISTFILES)'; \
1570           dist_files=`for file in $$list; do echo $$file; done | \
1571           sed -e "s|^$$srcdirstrip/||;t" \
1572               -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \
1573         case $$dist_files in \
1574           */*) $(MKDIR_P) `echo "$$dist_files" | \
1575                            sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \
1576                            sort -u` ;; \
1577         esac; \
1578         for file in $$dist_files; do \
1579           if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \
1580           if test -d $$d/$$file; then \
1581             dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \
1582             if test -d "$(distdir)/$$file"; then \
1583               find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \
1584             fi; \
1585             if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \
1586               cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \
1587               find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \
1588             fi; \
1589             cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \
1590           else \
1591             test -f "$(distdir)/$$file" \
1592             || cp -p $$d/$$file "$(distdir)/$$file" \
1593             || exit 1; \
1594           fi; \
1595         done
1596         $(MAKE) $(AM_MAKEFLAGS) \
1597           top_distdir="$(top_distdir)" distdir="$(distdir)" \
1598           dist-hook
1599 check-am: all-am
1600         $(MAKE) $(AM_MAKEFLAGS) check-local
1601 check: $(BUILT_SOURCES)
1602         $(MAKE) $(AM_MAKEFLAGS) check-am
1603 all-am: Makefile $(LTLIBRARIES) $(PROGRAMS) $(SCRIPTS) $(HEADERS)
1604 installdirs:
1605         for dir in "$(DESTDIR)$(amlibdir)" "$(DESTDIR)$(amlibexecdir)" "$(DESTDIR)$(sbindir)" "$(DESTDIR)$(amlibexecdir)" "$(DESTDIR)$(sbindir)"; do \
1606           test -z "$$dir" || $(MKDIR_P) "$$dir"; \
1607         done
1608 install: $(BUILT_SOURCES)
1609         $(MAKE) $(AM_MAKEFLAGS) install-am
1610 install-exec: install-exec-am
1611 install-data: install-data-am
1612 uninstall: uninstall-am
1613
1614 install-am: all-am
1615         @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am
1616
1617 installcheck: installcheck-am
1618 install-strip:
1619         $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \
1620           install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \
1621           `test -z '$(STRIP)' || \
1622             echo "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'"` install
1623 mostlyclean-generic:
1624         -test -z "$(MOSTLYCLEANFILES)" || rm -f $(MOSTLYCLEANFILES)
1625
1626 clean-generic:
1627         -test -z "$(CLEANFILES)" || rm -f $(CLEANFILES)
1628
1629 distclean-generic:
1630         -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES)
1631         -test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES)
1632         -test -z "$(DISTCLEANFILES)" || rm -f $(DISTCLEANFILES)
1633
1634 maintainer-clean-generic:
1635         @echo "This command is intended for maintainers to use"
1636         @echo "it deletes files that may require special tools to rebuild."
1637         -test -z "$(BUILT_SOURCES)" || rm -f $(BUILT_SOURCES)
1638         -test -z "$(MAINTAINERCLEANFILES)" || rm -f $(MAINTAINERCLEANFILES)
1639 clean: clean-am
1640
1641 clean-am: clean-amlibLTLIBRARIES clean-amlibexecPROGRAMS clean-generic \
1642         clean-libtool clean-sbinPROGRAMS mostlyclean-am
1643
1644 distclean: distclean-am
1645         -rm -rf ./$(DEPDIR)
1646         -rm -f Makefile
1647 distclean-am: clean-am distclean-compile distclean-generic \
1648         distclean-tags
1649
1650 dvi: dvi-am
1651
1652 dvi-am:
1653
1654 html: html-am
1655
1656 html-am:
1657
1658 info: info-am
1659
1660 info-am:
1661
1662 install-data-am: install-amlibLTLIBRARIES
1663         @$(NORMAL_INSTALL)
1664         $(MAKE) $(AM_MAKEFLAGS) install-data-hook
1665 install-dvi: install-dvi-am
1666
1667 install-dvi-am:
1668
1669 install-exec-am: install-amlibexecPROGRAMS install-amlibexecSCRIPTS \
1670         install-sbinPROGRAMS install-sbinSCRIPTS
1671         @$(NORMAL_INSTALL)
1672         $(MAKE) $(AM_MAKEFLAGS) install-exec-hook
1673 install-html: install-html-am
1674
1675 install-html-am:
1676
1677 install-info: install-info-am
1678
1679 install-info-am:
1680
1681 install-man:
1682
1683 install-pdf: install-pdf-am
1684
1685 install-pdf-am:
1686
1687 install-ps: install-ps-am
1688
1689 install-ps-am:
1690
1691 installcheck-am: installcheck-local
1692
1693 maintainer-clean: maintainer-clean-am
1694         -rm -rf ./$(DEPDIR)
1695         -rm -f Makefile
1696 maintainer-clean-am: distclean-am maintainer-clean-generic
1697
1698 mostlyclean: mostlyclean-am
1699
1700 mostlyclean-am: mostlyclean-compile mostlyclean-generic \
1701         mostlyclean-libtool
1702
1703 pdf: pdf-am
1704
1705 pdf-am:
1706
1707 ps: ps-am
1708
1709 ps-am:
1710
1711 uninstall-am: uninstall-amlibLTLIBRARIES uninstall-amlibexecPROGRAMS \
1712         uninstall-amlibexecSCRIPTS uninstall-sbinPROGRAMS \
1713         uninstall-sbinSCRIPTS
1714
1715 .MAKE: all check check-am install install-am install-data-am \
1716         install-exec-am install-strip
1717
1718 .PHONY: CTAGS GTAGS all all-am check check-am check-local clean \
1719         clean-amlibLTLIBRARIES clean-amlibexecPROGRAMS clean-generic \
1720         clean-libtool clean-sbinPROGRAMS ctags dist-hook distclean \
1721         distclean-compile distclean-generic distclean-libtool \
1722         distclean-tags distdir dvi dvi-am html html-am info info-am \
1723         install install-am install-amlibLTLIBRARIES \
1724         install-amlibexecPROGRAMS install-amlibexecSCRIPTS \
1725         install-data install-data-am install-data-hook install-dvi \
1726         install-dvi-am install-exec install-exec-am install-exec-hook \
1727         install-html install-html-am install-info install-info-am \
1728         install-man install-pdf install-pdf-am install-ps \
1729         install-ps-am install-sbinPROGRAMS install-sbinSCRIPTS \
1730         install-strip installcheck installcheck-am installcheck-local \
1731         installdirs maintainer-clean maintainer-clean-generic \
1732         mostlyclean mostlyclean-compile mostlyclean-generic \
1733         mostlyclean-libtool pdf pdf-am ps ps-am tags uninstall \
1734         uninstall-am uninstall-amlibLTLIBRARIES \
1735         uninstall-amlibexecPROGRAMS uninstall-amlibexecSCRIPTS \
1736         uninstall-sbinPROGRAMS uninstall-sbinSCRIPTS
1737
1738
1739 # Perl
1740 %: %.pl $(top_builddir)/config.status
1741         $(top_builddir)/config.status --file=$@:$<
1742         chmod a+x $@
1743 @CHECK_SCRIPTS_AT_BUILD_TRUE@   @if test -f $(top_builddir)/perl/.libs/libCmdline.so -o -f $(top_builddir)/perl/libCmdline.so; then \
1744 @CHECK_SCRIPTS_AT_BUILD_TRUE@           sed "s,^use lib ['\"]$(amperldir)['\"],# use lib '$(amperldir)' # nouselib," < $@ > $@.nouselib; \
1745 @CHECK_SCRIPTS_AT_BUILD_TRUE@           $(PERL) $(CHECK_PERL_FLAGS) -I$(top_builddir)/perl -I$(top_builddir)/perl/.libs -I$(top_srcdir)/perl -c -w $@.nouselib || exit 1; \
1746 @CHECK_SCRIPTS_AT_BUILD_TRUE@           rm $@.nouselib; \
1747 @CHECK_SCRIPTS_AT_BUILD_TRUE@   fi
1748
1749 %.pl: %.pl.in $(top_builddir)/config.status
1750         $(top_builddir)/config.status --file=$@:$<
1751
1752 %.pm: %.pm.in $(top_builddir)/config.status
1753         $(top_builddir)/config.status --file=$@:$<
1754
1755 # Shell
1756 %: %.sh $(top_builddir)/config.status
1757         $(top_builddir)/config.status --file=$@:$<
1758         chmod a+x $@
1759
1760 %.sh: %.sh.in $(top_builddir)/config.status
1761         $(top_builddir)/config.status --file=$@:$<
1762
1763 # Awk
1764 %: %.awk $(top_builddir)/config.status
1765         $(top_builddir)/config.status --file=$@:$<
1766         chmod a+x $@
1767
1768 %.awk: %.awk.in $(top_builddir)/config.status
1769         $(top_builddir)/config.status --file=$@:$<
1770
1771 # syntax-check perl scripts on 'make check'
1772 check-perl: $(SCRIPTS_PERL)
1773         @SCRIPTS_PERL="$(SCRIPTS_PERL)"; \
1774         if test x"$(SKIP_CHECKS)" = x"" && \
1775             test -f $(top_builddir)/perl/.libs/libCmdline.so -o -f $(top_builddir)/perl/libCmdline.so; then \
1776             if test -n "$(PERL)"; then \
1777                     for perlobj in $$SCRIPTS_PERL; do \
1778                             sed "s,^use lib ['\"]$(amperldir)['\"],# use lib '$(amperldir)' # nouselib," < $$perlobj > $$perlobj.nouselib; \
1779                             $(PERL) $(CHECK_PERL_FLAGS) -I$(top_builddir)/perl -I$(top_builddir)/perl/.libs -I$(top_srcdir)/perl -c -w $$perlobj.nouselib || exit 1; \
1780                             rm $$perlobj.nouselib; \
1781                     done; \
1782             fi \
1783         fi
1784 check-local: check-perl
1785
1786 # syntax-check perl scripts on 'make installcheck'
1787 installcheck-perl: $(SCRIPTS_PERL)
1788         @SCRIPTS_PERL="$(SCRIPTS_PERL)"; \
1789         if test x"$(SKIP_CHECKS)" = x"" && \
1790             test -n "$(PERL)"; then \
1791                 for perlobj in $$SCRIPTS_PERL; do \
1792                         $(PERL) $(CHECK_PERL_FLAGS) -c -w $$perlobj || exit 1; \
1793                 done; \
1794         fi
1795 installcheck-local: installcheck-perl
1796
1797 # syntax-check shell scripts on 'make check'
1798 check-shell: $(SCRIPTS_SHELL)
1799         @SCRIPTS_SHELL="$(SCRIPTS_SHELL)"; \
1800         if test x"$(SKIP_CHECKS)" = x"" && \
1801             test -n "$$SCRIPTS_SHELL"; then \
1802                 if test -n "$(BASH)"; then \
1803                         for shobj in $$SCRIPTS_SHELL; do \
1804                                 if $(BASH) -n $$shobj; then \
1805                                         echo "$$shobj syntax OK"; \
1806                                 else \
1807                                         echo "$$shobj syntax error"; \
1808                                         exit 1; \
1809                                 fi; \
1810                         done; \
1811                 else \
1812                         echo "No 'bash' available -- cannot syntax-check shell scripts"; \
1813                 fi; \
1814         fi
1815 check-local: check-shell
1816
1817 # make sure that the sources for all shell and perl scripts get included
1818 # in the distribution
1819 dist-scripts:
1820         @SCRIPTS_PERL="$(SCRIPTS_PERL) $(SCRIPTS_EXTRA_DIST)"; \
1821         SCRIPTS_SHELL="$(SCRIPTS_SHELL) $(SCRIPTS_EXTRA_DIST)"; \
1822         SCRIPTS_AWK="$(SCRIPTS_AWK) $(SCRIPTS_EXTRA_DIST)"; \
1823         SCRIPTS_DIST=; \
1824         for script in $$SCRIPTS_PERL; do \
1825                 test -f $(srcdir)/$${script}.pl && \
1826                         SCRIPTS_DIST="$$SCRIPTS_DIST $${script}.pl"; \
1827         done; \
1828         for script in $$SCRIPTS_SHELL; do \
1829                 test -f $(srcdir)/$${script}.sh && \
1830                         SCRIPTS_DIST="$$SCRIPTS_DIST $${script}.sh"; \
1831         done; \
1832         for script in $$SCRIPTS_AWK; do \
1833                 test -f $(srcdir)/$${script}.awk && \
1834                         SCRIPTS_DIST="$$SCRIPTS_DIST $${script}.awk"; \
1835         done; \
1836         for script in $$SCRIPTS_SHELL $$SCRIPTS_PERL $$SCRIPTS_AWK; do \
1837                 test -f $(srcdir)/$${script}.in && \
1838                         SCRIPTS_DIST="$$SCRIPTS_DIST $${script}.in"; \
1839         done; \
1840         for script in $$SCRIPTS_DIST; do \
1841                 dir=`dirname $${script}`; \
1842                 if test -n "$$dir" && test ! -d "$(distdir)/$$dir"; then \
1843                         mkdir -p "$(distdir)/$$dir" || exit 1; \
1844                 fi; \
1845                 test -f "$(distdir)/$${script}" && continue; \
1846                 echo "distributing $${script}"; \
1847                 cp -p "$(srcdir)/$${script}" "$(distdir)/$${script}" || exit 1; \
1848         done; \
1849         true
1850 dist-hook: dist-scripts
1851
1852 installperms-exec:
1853         @installperms="$(INSTALLPERMS_exec)"; \
1854         test -n "$$installperms" && echo "Setting installation permissions on executables"; \
1855         dest=; chown=; chmod=; \
1856         for cmd in $$installperms; do \
1857             case "$$cmd" in \
1858                 chown=amanda) \
1859                         echo "  ($$cmd)"; chown="$(BINARY_OWNER):$(SETUID_GROUP)";; \
1860                 dest=*|chown=*|chmod=*) \
1861                         echo "  ($$cmd)"; eval $$cmd;; \
1862                 *) $(do_file) ;; \
1863             esac; \
1864         done
1865
1866 installperms-data:
1867         @installperms="$(INSTALLPERMS_data)"; \
1868         dest=; chown=; chmod=; \
1869         for cmd in $$installperms; do \
1870             case "$$cmd" in \
1871                 chown=amanda) \
1872                         echo "  ($$cmd)"; chown="$(BINARY_OWNER):$(SETUID_GROUP)";; \
1873                 dest=*|chown=*|chmod=*) \
1874                         echo "  ($$cmd)"; eval $$cmd;; \
1875                 *)  $(do_file) ;; \
1876             esac; \
1877         done
1878
1879 install-exec-hook: installperms-exec
1880 install-data-hook: installperms-data
1881
1882 # define a rule to initialize the installperms manifest file
1883 @WANT_INSTALLPERMS_TRUE@installperms-init:
1884 @WANT_INSTALLPERMS_FALSE@installperms-init:
1885 @WANT_INSTALLPERMS_FALSE@       rm -f "$(installperms_sh)"
1886
1887 # A rule to make precompiler output from C files.  This is not used during
1888 # ordinary builds, but but can very useful in debugging problems on strange
1889 # architectures.  With this rule, we can ask users to 'make foo.i' and send
1890 # the result to us.
1891 #
1892 # It touches some automake internals ($COMPILE), but since it's not
1893 # build-critical, that's OK.
1894 %.i : %.c
1895         $(COMPILE) -E -o $@ $<
1896
1897 lint:
1898         @ for p in $(amlibexec_PROGRAMS) $(sbin_PROGRAMS); do                   \
1899                 p=`basename $$p $(EXEEXT)`;                                     \
1900                 if [ $$p = "amindexd" ]; then                                   \
1901                         s="$(amindexd_CSRC)";                                   \
1902                 else                                                            \
1903                         s=$$p.c;                                                \
1904                 fi;                                                             \
1905                 f="$$s $(libamserver_la_SOURCES)";                              \
1906                 (cd ../common-src; make listlibsrc);                            \
1907                 f="$$f "`cat ../common-src/listlibsrc.output`;                  \
1908                 echo $(LINT) $$f;                                               \
1909                 $(LINT) $(LINTFLAGS) $(CPPFLAGS) $(DEFS) -I. -I$(top_builddir)/config   \
1910                     $(INCLUDES) $$f;                                            \
1911                 if [ $$? -ne 0 ]; then                                          \
1912                     exit 1;                                                     \
1913                 fi;                                                             \
1914         done;                                                                   \
1915         exit 0
1916
1917 listlibsrc:
1918         @ for p in $(libamserver_la_SOURCES); do                \
1919                 listlibsrcs="$$listlibsrcs `pwd`/$$p";          \
1920         done;                                                   \
1921         echo $$listlibsrcs >listlibsrc.output
1922
1923 %.test.c: $(srcdir)/%.c
1924         echo '#define TEST' >$@
1925         echo '#include "$<"' >>$@
1926
1927 # Tell versions [3.59,3.63) of GNU make to not export all variables.
1928 # Otherwise a system limit (for SysV at least) may be exceeded.
1929 .NOEXPORT: