Imported Upstream version 2.6.0p2
[debian/amanda] / common-src / Makefile.in
1 # Makefile.in generated by automake 1.10 from Makefile.am.
2 # @configure_input@
3
4 # Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002,
5 # 2003, 2004, 2005, 2006  Free Software Foundation, Inc.
6 # This Makefile.in is free software; the Free Software Foundation
7 # gives unlimited permission to copy and/or distribute it,
8 # with or without modifications, as long as this notice is preserved.
9
10 # This program is distributed in the hope that it will be useful,
11 # but WITHOUT ANY WARRANTY, to the extent permitted by law; without
12 # even the implied warranty of MERCHANTABILITY or FITNESS FOR A
13 # PARTICULAR PURPOSE.
14
15 @SET_MAKE@
16
17 # Makefile for Amanda library.
18
19 # vim:ft=automake
20 # Copyright (c) 2005 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., 505 N Mathlida Ave, Suite 120
36 # Sunnyvale, CA 94085, 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 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., 505 N Mathlida Ave, Suite 120
58 # Sunnyvale, CA 94085, 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'.
70 #
71 # USAGE:
72 #
73 #   include $(top_srcdir)/config/automake/vars.am
74 #   include $(top_srcdir)/config/automake/scripts.am
75 #   ...
76 #   SCRIPTS_PERL = fooscript barscript perl-lib.pl perlmod.pm
77 #   SCRIPTS_SHELL = shell1 shell2 sh-lib.sh
78 #   SCRIPTS_AWK = talk balk chalk awk-lib.awk
79 #
80 # with the corresponding files in the repository:
81 #
82 #   fooscript.pl barscript.pl perl-lib.pl.in perlmod.pm.in
83 #   shell1.sh shell2.sh sh-lib.sh.in
84 #   talk.awk balk.awk chalk.awk awk-lib.awk.in
85 #
86 # by default, all shell and perl scripts are syntax checked.  If this is
87 # a problem (for example, perl scripts depending on Amanda extension 
88 # modules), then assign to CHECK_{PERL,SHELL} the list of files you wish
89 # to be checked (which can be empty).
90 #
91 # To add extra flags to the perl checks (e.g., to add new -I flags), set
92 # CHECK_PERL_FLAGS.
93
94 # Implementation note:
95 #
96 # This file uses config.status to substitute @foo@ in those scripts while
97 # converting them. It also adds the executable bits (a+x) to extensionless
98 # files.  The substitution works even though the files are not listed in 
99 # configure.in
100
101 # vim:ft=automake
102 #
103 # Adjust post-install permissions settings.  This rule works off two
104 # specially-formatted variables, INSTALLPERMS_exec and INSTALLPERMS_data. 
105 # Each is a whitespace-separated list of commands, all of which are either
106 # a variable assignment or a filename.  Three variables are available:
107 #
108 #  - dest= sets the destination directory to e.g., $(sbindir)
109 #  - chown= controls changes in ownership; value is first argument to chown
110 #  - chmod= controls changes in permissions; value is first argument to chmod
111 #
112 # As a special case, chown=amanda is taken as equivalent to 
113 # chown=$(BINARY_OWNER):$(SETUID_GROUP), which may otherwise have problems with
114 # whitespace in the user/group names.
115
116 # when a filename is seen, the currently active variables are applied.
117 #
118 # Note that scripts are data, not executables!
119 #
120 # EXAMPLE
121 #
122 # sbin_PROGRAMS = foo bar bing
123 # libexec_PROGRAMS = pro gram
124 # sbin_SCRIPTS = sk ript
125 # INSTALLPERMS_exec = \
126 #       dest=$(sbindir) chown=amanda chmod= \
127 #               foo bar \
128 #       chmod=u+s,o-rwx \
129 #               bing
130 #       dest=$(libexecdir) chmod= \
131 #               $(libexec_PROGRAMS)
132 # INSTALLPERMS_data = \
133 #       dest=$(sbindir) chown=amanda chmod= \
134 #               $(sbin_SCRIPTS)
135 #
136 # This whole operation is not required when making builds for packaging,
137 # and can be disabled with --disable-installperms, via the WANT_INSTALLPERMS
138 # AM_CONDITIONAL.
139
140 # vim:ft=automake
141
142
143
144
145
146 VPATH = @srcdir@
147 pkgdatadir = $(datadir)/@PACKAGE@
148 pkglibdir = $(libdir)/@PACKAGE@
149 pkgincludedir = $(includedir)/@PACKAGE@
150 am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd
151 install_sh_DATA = $(install_sh) -c -m 644
152 install_sh_PROGRAM = $(install_sh) -c
153 install_sh_SCRIPT = $(install_sh) -c
154 INSTALL_HEADER = $(INSTALL_DATA)
155 transform = $(program_transform_name)
156 NORMAL_INSTALL = :
157 PRE_INSTALL = :
158 POST_INSTALL = :
159 NORMAL_UNINSTALL = :
160 PRE_UNINSTALL = :
161 POST_UNINSTALL = :
162 build_triplet = @build@
163 host_triplet = @host@
164 target_triplet = @target@
165 DIST_COMMON = $(noinst_HEADERS) $(srcdir)/Makefile.am \
166         $(srcdir)/Makefile.in $(srcdir)/versuff.c.in \
167         $(top_srcdir)/config/automake/installperms.am \
168         $(top_srcdir)/config/automake/precompile.am \
169         $(top_srcdir)/config/automake/scripts.am \
170         $(top_srcdir)/config/automake/vars.am
171 @WANT_AMFLOCK_POSIX_TRUE@am__append_1 = amflock-posix.c
172 @WANT_AMFLOCK_FLOCK_TRUE@am__append_2 = amflock-flock.c
173 @WANT_AMFLOCK_LOCKF_TRUE@am__append_3 = amflock-lockf.c
174 @WANT_AMFLOCK_LNLOCK_TRUE@am__append_4 = amflock-lnlock.c
175 @WANT_RSH_SECURITY_TRUE@am__append_5 = rsh-security.c
176 @WANT_SSH_SECURITY_TRUE@am__append_6 = ssh-security.c
177 @WANT_BSD_SECURITY_TRUE@am__append_7 = bsd-security.c
178 @WANT_BSDTCP_SECURITY_TRUE@am__append_8 = bsdtcp-security.c
179 @WANT_BSDUDP_SECURITY_TRUE@am__append_9 = bsdudp-security.c
180 @WANT_KRB4_SECURITY_TRUE@am__append_10 = krb4-security.c        
181 @WANT_KRB5_SECURITY_TRUE@am__append_11 = krb5-security.c
182 EXTRA_PROGRAMS = genversion$(EXEEXT) $(am__EXEEXT_1)
183 TESTS = amflock-test$(EXEEXT)
184 noinst_PROGRAMS = $(am__EXEEXT_2)
185 subdir = common-src
186 ACLOCAL_M4 = $(top_srcdir)/aclocal.m4
187 am__aclocal_m4_deps =  \
188         $(top_srcdir)/config/macro-archive/ac_define_dir.m4 \
189         $(top_srcdir)/config/macro-archive/ac_prog_perl_version.m4 \
190         $(top_srcdir)/config/macro-archive/ac_prog_swig.m4 \
191         $(top_srcdir)/config/macro-archive/ax_compare_version.m4 \
192         $(top_srcdir)/config/macro-archive/docbook-dtd.m4 \
193         $(top_srcdir)/config/macro-archive/docbook-xslt-min.m4 \
194         $(top_srcdir)/config/macro-archive/docbook-xslt.m4 \
195         $(top_srcdir)/config/macro-archive/xsltproc.m4 \
196         $(top_srcdir)/config/amanda/amplot.m4 \
197         $(top_srcdir)/config/amanda/bsd-security.m4 \
198         $(top_srcdir)/config/amanda/bsdtcp-security.m4 \
199         $(top_srcdir)/config/amanda/bsdudp-security.m4 \
200         $(top_srcdir)/config/amanda/changer.m4 \
201         $(top_srcdir)/config/amanda/components.m4 \
202         $(top_srcdir)/config/amanda/compress.m4 \
203         $(top_srcdir)/config/amanda/config.m4 \
204         $(top_srcdir)/config/amanda/debugging.m4 \
205         $(top_srcdir)/config/amanda/defaults.m4 \
206         $(top_srcdir)/config/amanda/devprefix.m4 \
207         $(top_srcdir)/config/amanda/dirs.m4 \
208         $(top_srcdir)/config/amanda/documentation.m4 \
209         $(top_srcdir)/config/amanda/dumpers.m4 \
210         $(top_srcdir)/config/amanda/flags.m4 \
211         $(top_srcdir)/config/amanda/flock.m4 \
212         $(top_srcdir)/config/amanda/funcs.m4 \
213         $(top_srcdir)/config/amanda/getfsent.m4 \
214         $(top_srcdir)/config/amanda/i18n.m4 \
215         $(top_srcdir)/config/amanda/ipv6.m4 \
216         $(top_srcdir)/config/amanda/krb4-security.m4 \
217         $(top_srcdir)/config/amanda/krb5-security.m4 \
218         $(top_srcdir)/config/amanda/lfs.m4 \
219         $(top_srcdir)/config/amanda/libs.m4 \
220         $(top_srcdir)/config/amanda/net.m4 \
221         $(top_srcdir)/config/amanda/progs.m4 \
222         $(top_srcdir)/config/amanda/readdir.m4 \
223         $(top_srcdir)/config/amanda/readline.m4 \
224         $(top_srcdir)/config/amanda/rsh-security.m4 \
225         $(top_srcdir)/config/amanda/s3-device.m4 \
226         $(top_srcdir)/config/amanda/shmem.m4 \
227         $(top_srcdir)/config/amanda/socklen_t_equiv.m4 \
228         $(top_srcdir)/config/amanda/ssh-security.m4 \
229         $(top_srcdir)/config/amanda/summary.m4 \
230         $(top_srcdir)/config/amanda/swig.m4 \
231         $(top_srcdir)/config/amanda/syshacks.m4 \
232         $(top_srcdir)/config/amanda/tape.m4 \
233         $(top_srcdir)/config/amanda/types.m4 \
234         $(top_srcdir)/config/amanda/userid.m4 \
235         $(top_srcdir)/config/amanda/version.m4 \
236         $(top_srcdir)/config/gnulib/alloca.m4 \
237         $(top_srcdir)/config/gnulib/arpa_inet_h.m4 \
238         $(top_srcdir)/config/gnulib/base64.m4 \
239         $(top_srcdir)/config/gnulib/eoverflow.m4 \
240         $(top_srcdir)/config/gnulib/extensions.m4 \
241         $(top_srcdir)/config/gnulib/float_h.m4 \
242         $(top_srcdir)/config/gnulib/fsusage.m4 \
243         $(top_srcdir)/config/gnulib/getaddrinfo.m4 \
244         $(top_srcdir)/config/gnulib/gettimeofday.m4 \
245         $(top_srcdir)/config/gnulib/gnulib-comp.m4 \
246         $(top_srcdir)/config/gnulib/include_next.m4 \
247         $(top_srcdir)/config/gnulib/inet_ntop.m4 \
248         $(top_srcdir)/config/gnulib/intmax_t.m4 \
249         $(top_srcdir)/config/gnulib/lock.m4 \
250         $(top_srcdir)/config/gnulib/longlong.m4 \
251         $(top_srcdir)/config/gnulib/malloc.m4 \
252         $(top_srcdir)/config/gnulib/mkdtemp.m4 \
253         $(top_srcdir)/config/gnulib/netinet_in_h.m4 \
254         $(top_srcdir)/config/gnulib/onceonly_2_57.m4 \
255         $(top_srcdir)/config/gnulib/physmem.m4 \
256         $(top_srcdir)/config/gnulib/safe-read.m4 \
257         $(top_srcdir)/config/gnulib/safe-write.m4 \
258         $(top_srcdir)/config/gnulib/snprintf.m4 \
259         $(top_srcdir)/config/gnulib/socklen.m4 \
260         $(top_srcdir)/config/gnulib/sockpfaf.m4 \
261         $(top_srcdir)/config/gnulib/ssize_t.m4 \
262         $(top_srcdir)/config/gnulib/stdbool.m4 \
263         $(top_srcdir)/config/gnulib/stdint.m4 \
264         $(top_srcdir)/config/gnulib/stdio_h.m4 \
265         $(top_srcdir)/config/gnulib/stdlib_h.m4 \
266         $(top_srcdir)/config/gnulib/strdup.m4 \
267         $(top_srcdir)/config/gnulib/string_h.m4 \
268         $(top_srcdir)/config/gnulib/sys_socket_h.m4 \
269         $(top_srcdir)/config/gnulib/sys_stat_h.m4 \
270         $(top_srcdir)/config/gnulib/sys_time_h.m4 \
271         $(top_srcdir)/config/gnulib/tempname.m4 \
272         $(top_srcdir)/config/gnulib/ulonglong.m4 \
273         $(top_srcdir)/config/gnulib/unistd_h.m4 \
274         $(top_srcdir)/config/gnulib/vasnprintf.m4 \
275         $(top_srcdir)/config/gnulib/visibility.m4 \
276         $(top_srcdir)/config/gnulib/wchar.m4 \
277         $(top_srcdir)/config/gettext-macros/gettext.m4 \
278         $(top_srcdir)/config/gettext-macros/iconv.m4 \
279         $(top_srcdir)/config/gettext-macros/inttypes_h.m4 \
280         $(top_srcdir)/config/gettext-macros/lib-ld.m4 \
281         $(top_srcdir)/config/gettext-macros/lib-link.m4 \
282         $(top_srcdir)/config/gettext-macros/lib-prefix.m4 \
283         $(top_srcdir)/config/gettext-macros/longlong.m4 \
284         $(top_srcdir)/config/gettext-macros/nls.m4 \
285         $(top_srcdir)/config/gettext-macros/po.m4 \
286         $(top_srcdir)/config/gettext-macros/progtest.m4 \
287         $(top_srcdir)/config/gettext-macros/size_max.m4 \
288         $(top_srcdir)/config/gettext-macros/stdint_h.m4 \
289         $(top_srcdir)/config/gettext-macros/wchar_t.m4 \
290         $(top_srcdir)/config/gettext-macros/wint_t.m4 \
291         $(top_srcdir)/config/gettext-macros/xsize.m4 \
292         $(top_srcdir)/config/libtool.m4 $(top_srcdir)/configure.in
293 am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \
294         $(ACLOCAL_M4)
295 mkinstalldirs = $(SHELL) $(top_srcdir)/config/mkinstalldirs
296 CONFIG_HEADER = $(top_builddir)/config/config.h
297 CONFIG_CLEAN_FILES = versuff.c
298 am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`;
299 am__vpath_adj = case $$p in \
300     $(srcdir)/*) f=`echo "$$p" | sed "s|^$$srcdirstrip/||"`;; \
301     *) f=$$p;; \
302   esac;
303 am__strip_dir = `echo $$p | sed -e 's|^.*/||'`;
304 am__installdirs = "$(DESTDIR)$(amlibdir)" "$(DESTDIR)$(amlibexecdir)" \
305         "$(DESTDIR)$(sbindir)" "$(DESTDIR)$(amlibexecdir)"
306 amlibLTLIBRARIES_INSTALL = $(INSTALL)
307 LTLIBRARIES = $(amlib_LTLIBRARIES)
308 libamanda_la_DEPENDENCIES = ../gnulib/libgnu.la
309 am__libamanda_la_SOURCES_DIST = alloc.c amfeatures.c amflock.c clock.c \
310         columnar.c conffile.c debug.c dgram.c event.c file.c \
311         fileheader.c glib-util.c match.c packet.c pipespawn.c \
312         protocol.c security.c security-util.c sl.c sockaddr-util.c \
313         stream.c tapelist.c timestamp.c token.c util.c versuff.c \
314         amflock-posix.c amflock-flock.c amflock-lockf.c \
315         amflock-lnlock.c rsh-security.c ssh-security.c bsd-security.c \
316         bsdtcp-security.c bsdudp-security.c krb4-security.c \
317         krb5-security.c local-security.c
318 @WANT_AMFLOCK_POSIX_TRUE@am__objects_1 = amflock-posix.lo
319 @WANT_AMFLOCK_FLOCK_TRUE@am__objects_2 = amflock-flock.lo
320 @WANT_AMFLOCK_LOCKF_TRUE@am__objects_3 = amflock-lockf.lo
321 @WANT_AMFLOCK_LNLOCK_TRUE@am__objects_4 = amflock-lnlock.lo
322 @WANT_RSH_SECURITY_TRUE@am__objects_5 = rsh-security.lo
323 @WANT_SSH_SECURITY_TRUE@am__objects_6 = ssh-security.lo
324 @WANT_BSD_SECURITY_TRUE@am__objects_7 = bsd-security.lo
325 @WANT_BSDTCP_SECURITY_TRUE@am__objects_8 = bsdtcp-security.lo
326 @WANT_BSDUDP_SECURITY_TRUE@am__objects_9 = bsdudp-security.lo
327 @WANT_KRB4_SECURITY_TRUE@am__objects_10 = krb4-security.lo
328 @WANT_KRB5_SECURITY_TRUE@am__objects_11 = krb5-security.lo
329 am_libamanda_la_OBJECTS = alloc.lo amfeatures.lo amflock.lo clock.lo \
330         columnar.lo conffile.lo debug.lo dgram.lo event.lo file.lo \
331         fileheader.lo glib-util.lo match.lo packet.lo pipespawn.lo \
332         protocol.lo security.lo security-util.lo sl.lo \
333         sockaddr-util.lo stream.lo tapelist.lo timestamp.lo token.lo \
334         util.lo versuff.lo $(am__objects_1) $(am__objects_2) \
335         $(am__objects_3) $(am__objects_4) $(am__objects_5) \
336         $(am__objects_6) $(am__objects_7) $(am__objects_8) \
337         $(am__objects_9) $(am__objects_10) $(am__objects_11) \
338         local-security.lo
339 nodist_libamanda_la_OBJECTS = version.lo
340 libamanda_la_OBJECTS = $(am_libamanda_la_OBJECTS) \
341         $(nodist_libamanda_la_OBJECTS)
342 libamanda_la_LINK = $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) \
343         $(LIBTOOLFLAGS) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \
344         $(libamanda_la_LDFLAGS) $(LDFLAGS) -o $@
345 am__EXEEXT_1 = token$(EXEEXT) file$(EXEEXT) bsdsecurity$(EXEEXT) \
346         amfeatures$(EXEEXT)
347 am__EXEEXT_2 = amflock-test$(EXEEXT)
348 PROGRAMS = $(noinst_PROGRAMS)
349 am_amfeatures_OBJECTS = amfeatures.test.$(OBJEXT)
350 amfeatures_OBJECTS = $(am_amfeatures_OBJECTS)
351 amfeatures_DEPENDENCIES = $(libamanda_la_LIBADD) \
352         $(STANDARD_COMMON_STUFF)
353 am_amflock_test_OBJECTS = amflock-test.$(OBJEXT)
354 amflock_test_OBJECTS = $(am_amflock_test_OBJECTS)
355 amflock_test_DEPENDENCIES = libamanda.la
356 am_bsdsecurity_OBJECTS = bsd-security.test.$(OBJEXT)
357 bsdsecurity_OBJECTS = $(am_bsdsecurity_OBJECTS)
358 bsdsecurity_DEPENDENCIES = alloc.lo clock.lo debug.lo dgram.lo \
359         event.lo file.lo packet.lo security.lo ssh-security.lo \
360         versuff.lo
361 am_file_OBJECTS = file.test.$(OBJEXT)
362 file_OBJECTS = $(am_file_OBJECTS)
363 file_DEPENDENCIES = $(libamanda_la_LIBADD) \
364         $(STANDARD_COMMON_STUFF_NOT_FILE)
365 am_genversion_OBJECTS = genversion.$(OBJEXT)
366 genversion_OBJECTS = $(am_genversion_OBJECTS)
367 genversion_DEPENDENCIES = $(libamanda_la_LIBADD) versuff.lo \
368         ../gnulib/libgnu.la
369 am_token_OBJECTS = token.test.$(OBJEXT)
370 token_OBJECTS = $(am_token_OBJECTS)
371 token_DEPENDENCIES = $(libamanda_la_LIBADD) $(STANDARD_COMMON_STUFF)
372 amlibexecSCRIPT_INSTALL = $(INSTALL_SCRIPT)
373 sbinSCRIPT_INSTALL = $(INSTALL_SCRIPT)
374 SCRIPTS = $(amlibexec_SCRIPTS) $(sbin_SCRIPTS)
375 DEFAULT_INCLUDES = -I. -I$(top_builddir)/config@am__isrc@
376 depcomp = $(SHELL) $(top_srcdir)/config/depcomp
377 am__depfiles_maybe = depfiles
378 COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \
379         $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS)
380 LTCOMPILE = $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) \
381         --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) \
382         $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS)
383 CCLD = $(CC)
384 LINK = $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) \
385         --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) $(AM_LDFLAGS) \
386         $(LDFLAGS) -o $@
387 SOURCES = $(libamanda_la_SOURCES) $(nodist_libamanda_la_SOURCES) \
388         $(amfeatures_SOURCES) $(amflock_test_SOURCES) \
389         $(bsdsecurity_SOURCES) $(file_SOURCES) $(genversion_SOURCES) \
390         $(token_SOURCES)
391 DIST_SOURCES = $(am__libamanda_la_SOURCES_DIST) $(amfeatures_SOURCES) \
392         $(amflock_test_SOURCES) $(bsdsecurity_SOURCES) $(file_SOURCES) \
393         $(genversion_SOURCES) $(token_SOURCES)
394 amlibexecDATA_INSTALL = $(INSTALL_DATA)
395 DATA = $(amlibexec_DATA)
396 HEADERS = $(noinst_HEADERS)
397 ETAGS = etags
398 CTAGS = ctags
399 DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST)
400 ACLOCAL = @ACLOCAL@
401 ALLOCA = @ALLOCA@
402 ALLOCA_H = @ALLOCA_H@
403 AMANDA_DBGDIR = @AMANDA_DBGDIR@
404 AMANDA_DEBUG_DAYS = @AMANDA_DEBUG_DAYS@
405 AMANDA_STATIC_LDFLAGS = @AMANDA_STATIC_LDFLAGS@
406 AMANDA_TMPDIR = @AMANDA_TMPDIR@
407 AMANDA_WARNING_CFLAGS = @AMANDA_WARNING_CFLAGS@
408 AMLINT = @AMLINT@
409 AMLINTFLAGS = @AMLINTFLAGS@
410 AMPLOT_CAT_COMPRESS = @AMPLOT_CAT_COMPRESS@
411 AMPLOT_CAT_GZIP = @AMPLOT_CAT_GZIP@
412 AMPLOT_CAT_PACK = @AMPLOT_CAT_PACK@
413 AMPLOT_COMPRESS = @AMPLOT_COMPRESS@
414 AMTAR = @AMTAR@
415 AR = @AR@
416 ARPA_INET_H = @ARPA_INET_H@
417 AUTOCONF = @AUTOCONF@
418 AUTOHEADER = @AUTOHEADER@
419 AUTOMAKE = @AUTOMAKE@
420 AWK = @AWK@
421 BASH = @BASH@
422 BINARY_OWNER = @BINARY_OWNER@
423 BITSIZEOF_PTRDIFF_T = @BITSIZEOF_PTRDIFF_T@
424 BITSIZEOF_SIG_ATOMIC_T = @BITSIZEOF_SIG_ATOMIC_T@
425 BITSIZEOF_SIZE_T = @BITSIZEOF_SIZE_T@
426 BITSIZEOF_WCHAR_T = @BITSIZEOF_WCHAR_T@
427 BITSIZEOF_WINT_T = @BITSIZEOF_WINT_T@
428 CAT = @CAT@
429 CC = @CC@
430 CCDEPMODE = @CCDEPMODE@
431 CFLAGS = @CFLAGS@
432 CFLAG_VISIBILITY = @CFLAG_VISIBILITY@
433 CHIO = @CHIO@
434 CHS = @CHS@
435 CLIENT_LOGIN = @CLIENT_LOGIN@
436 CLIENT_SCRIPTS_OPT = @CLIENT_SCRIPTS_OPT@
437 COMPRESS = @COMPRESS@
438 CONFIG_DIR = @CONFIG_DIR@
439 CPP = @CPP@
440 CPPFLAGS = @CPPFLAGS@
441 CURL_CONFIG = @CURL_CONFIG@
442 CXX = @CXX@
443 CXXCPP = @CXXCPP@
444 CXXDEPMODE = @CXXDEPMODE@
445 CXXFLAGS = @CXXFLAGS@
446 CYGPATH_W = @CYGPATH_W@
447 DD = @DD@
448 DEFAULT_AMANDATES_FILE = @DEFAULT_AMANDATES_FILE@
449 DEFAULT_CHANGER_DEVICE = @DEFAULT_CHANGER_DEVICE@
450 DEFAULT_CONFIG = @DEFAULT_CONFIG@
451 DEFAULT_SERVER = @DEFAULT_SERVER@
452 DEFAULT_TAPE_DEVICE = @DEFAULT_TAPE_DEVICE@
453 DEFAULT_TAPE_SERVER = @DEFAULT_TAPE_SERVER@
454 DEFS = @DEFS@
455 DEPDIR = @DEPDIR@
456 DOC_BUILD_DATE = @DOC_BUILD_DATE@
457 DUMP = @DUMP@
458 DUMPER_DIR = @DUMPER_DIR@
459 ECHO = @ECHO@
460 ECHO_C = @ECHO_C@
461 ECHO_N = @ECHO_N@
462 ECHO_T = @ECHO_T@
463 EGREP = @EGREP@
464 EOVERFLOW = @EOVERFLOW@
465 EXAMPLE_TAPEDEV = @EXAMPLE_TAPEDEV@
466 EXEEXT = @EXEEXT@
467 F77 = @F77@
468 FFLAGS = @FFLAGS@
469 FLOAT_H = @FLOAT_H@
470 GETCONF = @GETCONF@
471 GETTEXT = @GETTEXT@
472 GLIB_CFLAGS = @GLIB_CFLAGS@
473 GLIB_GENMARSHAL = @GLIB_GENMARSHAL@
474 GLIB_LIBS = @GLIB_LIBS@
475 GLIB_MKENUMS = @GLIB_MKENUMS@
476 GMSGFMT = @GMSGFMT@
477 GMSGFMT_015 = @GMSGFMT_015@
478 GNULIB_CALLOC_POSIX = @GNULIB_CALLOC_POSIX@
479 GNULIB_CHOWN = @GNULIB_CHOWN@
480 GNULIB_DUP2 = @GNULIB_DUP2@
481 GNULIB_FCHDIR = @GNULIB_FCHDIR@
482 GNULIB_FFLUSH = @GNULIB_FFLUSH@
483 GNULIB_FPRINTF_POSIX = @GNULIB_FPRINTF_POSIX@
484 GNULIB_FSEEK = @GNULIB_FSEEK@
485 GNULIB_FSEEKO = @GNULIB_FSEEKO@
486 GNULIB_FTELL = @GNULIB_FTELL@
487 GNULIB_FTELLO = @GNULIB_FTELLO@
488 GNULIB_FTRUNCATE = @GNULIB_FTRUNCATE@
489 GNULIB_GETCWD = @GNULIB_GETCWD@
490 GNULIB_GETDELIM = @GNULIB_GETDELIM@
491 GNULIB_GETLINE = @GNULIB_GETLINE@
492 GNULIB_GETLOGIN_R = @GNULIB_GETLOGIN_R@
493 GNULIB_GETSUBOPT = @GNULIB_GETSUBOPT@
494 GNULIB_LCHOWN = @GNULIB_LCHOWN@
495 GNULIB_LSEEK = @GNULIB_LSEEK@
496 GNULIB_MALLOC_POSIX = @GNULIB_MALLOC_POSIX@
497 GNULIB_MBSCASECMP = @GNULIB_MBSCASECMP@
498 GNULIB_MBSCASESTR = @GNULIB_MBSCASESTR@
499 GNULIB_MBSCHR = @GNULIB_MBSCHR@
500 GNULIB_MBSCSPN = @GNULIB_MBSCSPN@
501 GNULIB_MBSLEN = @GNULIB_MBSLEN@
502 GNULIB_MBSNCASECMP = @GNULIB_MBSNCASECMP@
503 GNULIB_MBSNLEN = @GNULIB_MBSNLEN@
504 GNULIB_MBSPBRK = @GNULIB_MBSPBRK@
505 GNULIB_MBSPCASECMP = @GNULIB_MBSPCASECMP@
506 GNULIB_MBSRCHR = @GNULIB_MBSRCHR@
507 GNULIB_MBSSEP = @GNULIB_MBSSEP@
508 GNULIB_MBSSPN = @GNULIB_MBSSPN@
509 GNULIB_MBSSTR = @GNULIB_MBSSTR@
510 GNULIB_MBSTOK_R = @GNULIB_MBSTOK_R@
511 GNULIB_MEMMEM = @GNULIB_MEMMEM@
512 GNULIB_MEMPCPY = @GNULIB_MEMPCPY@
513 GNULIB_MEMRCHR = @GNULIB_MEMRCHR@
514 GNULIB_MKDTEMP = @GNULIB_MKDTEMP@
515 GNULIB_MKSTEMP = @GNULIB_MKSTEMP@
516 GNULIB_PRINTF_POSIX = @GNULIB_PRINTF_POSIX@
517 GNULIB_READLINK = @GNULIB_READLINK@
518 GNULIB_REALLOC_POSIX = @GNULIB_REALLOC_POSIX@
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_STRNDUP = @GNULIB_STRNDUP@
528 GNULIB_STRNLEN = @GNULIB_STRNLEN@
529 GNULIB_STRPBRK = @GNULIB_STRPBRK@
530 GNULIB_STRSEP = @GNULIB_STRSEP@
531 GNULIB_STRTOK_R = @GNULIB_STRTOK_R@
532 GNULIB_VASPRINTF = @GNULIB_VASPRINTF@
533 GNULIB_VFPRINTF_POSIX = @GNULIB_VFPRINTF_POSIX@
534 GNULIB_VPRINTF_POSIX = @GNULIB_VPRINTF_POSIX@
535 GNULIB_VSNPRINTF = @GNULIB_VSNPRINTF@
536 GNULIB_VSPRINTF_POSIX = @GNULIB_VSPRINTF_POSIX@
537 GNULIB_WCWIDTH = @GNULIB_WCWIDTH@
538 GNUPLOT = @GNUPLOT@
539 GNUTAR = @GNUTAR@
540 GNUTAR_LISTED_INCREMENTAL_DIR = @GNUTAR_LISTED_INCREMENTAL_DIR@
541 GOBJECT_QUERY = @GOBJECT_QUERY@
542 GREP = @GREP@
543 GZIP = @GZIP@
544 HAVE_CALLOC_POSIX = @HAVE_CALLOC_POSIX@
545 HAVE_DECL_GETDELIM = @HAVE_DECL_GETDELIM@
546 HAVE_DECL_GETLINE = @HAVE_DECL_GETLINE@
547 HAVE_DECL_GETLOGIN_R = @HAVE_DECL_GETLOGIN_R@
548 HAVE_DECL_MEMMEM = @HAVE_DECL_MEMMEM@
549 HAVE_DECL_MEMRCHR = @HAVE_DECL_MEMRCHR@
550 HAVE_DECL_MKDIR = @HAVE_DECL_MKDIR@
551 HAVE_DECL_SNPRINTF = @HAVE_DECL_SNPRINTF@
552 HAVE_DECL_STRDUP = @HAVE_DECL_STRDUP@
553 HAVE_DECL_STRNCASECMP = @HAVE_DECL_STRNCASECMP@
554 HAVE_DECL_STRNDUP = @HAVE_DECL_STRNDUP@
555 HAVE_DECL_STRNLEN = @HAVE_DECL_STRNLEN@
556 HAVE_DECL_STRTOK_R = @HAVE_DECL_STRTOK_R@
557 HAVE_DECL_VSNPRINTF = @HAVE_DECL_VSNPRINTF@
558 HAVE_DECL_WCWIDTH = @HAVE_DECL_WCWIDTH@
559 HAVE_DUP2 = @HAVE_DUP2@
560 HAVE_FSEEKO = @HAVE_FSEEKO@
561 HAVE_FTELLO = @HAVE_FTELLO@
562 HAVE_FTRUNCATE = @HAVE_FTRUNCATE@
563 HAVE_GETSUBOPT = @HAVE_GETSUBOPT@
564 HAVE_INTTYPES_H = @HAVE_INTTYPES_H@
565 HAVE_IO_H = @HAVE_IO_H@
566 HAVE_LONG_LONG_INT = @HAVE_LONG_LONG_INT@
567 HAVE_LSTAT = @HAVE_LSTAT@
568 HAVE_MALLOC_POSIX = @HAVE_MALLOC_POSIX@
569 HAVE_MEMPCPY = @HAVE_MEMPCPY@
570 HAVE_MKDTEMP = @HAVE_MKDTEMP@
571 HAVE_NETINET_IN_H = @HAVE_NETINET_IN_H@
572 HAVE_READLINK = @HAVE_READLINK@
573 HAVE_REALLOC_POSIX = @HAVE_REALLOC_POSIX@
574 HAVE_SIGNED_SIG_ATOMIC_T = @HAVE_SIGNED_SIG_ATOMIC_T@
575 HAVE_SIGNED_WCHAR_T = @HAVE_SIGNED_WCHAR_T@
576 HAVE_SIGNED_WINT_T = @HAVE_SIGNED_WINT_T@
577 HAVE_SLEEP = @HAVE_SLEEP@
578 HAVE_STDINT_H = @HAVE_STDINT_H@
579 HAVE_STPCPY = @HAVE_STPCPY@
580 HAVE_STPNCPY = @HAVE_STPNCPY@
581 HAVE_STRCASECMP = @HAVE_STRCASECMP@
582 HAVE_STRCASESTR = @HAVE_STRCASESTR@
583 HAVE_STRCHRNUL = @HAVE_STRCHRNUL@
584 HAVE_STRNDUP = @HAVE_STRNDUP@
585 HAVE_STRPBRK = @HAVE_STRPBRK@
586 HAVE_STRSEP = @HAVE_STRSEP@
587 HAVE_STRUCT_TIMEVAL = @HAVE_STRUCT_TIMEVAL@
588 HAVE_SYS_BITYPES_H = @HAVE_SYS_BITYPES_H@
589 HAVE_SYS_INTTYPES_H = @HAVE_SYS_INTTYPES_H@
590 HAVE_SYS_SOCKET_H = @HAVE_SYS_SOCKET_H@
591 HAVE_SYS_TIME_H = @HAVE_SYS_TIME_H@
592 HAVE_SYS_TYPES_H = @HAVE_SYS_TYPES_H@
593 HAVE_UNISTD_H = @HAVE_UNISTD_H@
594 HAVE_UNSIGNED_LONG_LONG_INT = @HAVE_UNSIGNED_LONG_LONG_INT@
595 HAVE_VASPRINTF = @HAVE_VASPRINTF@
596 HAVE_VISIBILITY = @HAVE_VISIBILITY@
597 HAVE_WCHAR_H = @HAVE_WCHAR_H@
598 HAVE_WINSOCK2_H = @HAVE_WINSOCK2_H@
599 HAVE_WS2TCPIP_H = @HAVE_WS2TCPIP_H@
600 HAVE__BOOL = @HAVE__BOOL@
601 INCLUDE_NEXT = @INCLUDE_NEXT@
602 INSTALL = @INSTALL@
603 INSTALL_DATA = @INSTALL_DATA@
604 INSTALL_PROGRAM = @INSTALL_PROGRAM@
605 INSTALL_SCRIPT = @INSTALL_SCRIPT@
606 INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@
607 INTLLIBS = @INTLLIBS@
608 INTL_MACOSX_LIBS = @INTL_MACOSX_LIBS@
609 LDFLAGS = @LDFLAGS@
610 LEX = @LEX@
611 LEXLIB = @LEXLIB@
612 LEX_OUTPUT_ROOT = @LEX_OUTPUT_ROOT@
613 LIBCURL = @LIBCURL@
614 LIBCURL_CPPFLAGS = @LIBCURL_CPPFLAGS@
615 LIBICONV = @LIBICONV@
616 LIBINTL = @LIBINTL@
617 LIBMULTITHREAD = @LIBMULTITHREAD@
618 LIBOBJS = @LIBOBJS@
619 LIBPTH = @LIBPTH@
620 LIBS = @LIBS@
621 LIBTHREAD = @LIBTHREAD@
622 LIBTOOL = @LIBTOOL@
623 LIBTOOL_DEPS = @LIBTOOL_DEPS@
624 LN_S = @LN_S@
625 LTLIBICONV = @LTLIBICONV@
626 LTLIBINTL = @LTLIBINTL@
627 LTLIBMULTITHREAD = @LTLIBMULTITHREAD@
628 LTLIBOBJS = @LTLIBOBJS@
629 LTLIBPTH = @LTLIBPTH@
630 LTLIBTHREAD = @LTLIBTHREAD@
631 MAILER = @MAILER@
632 MAKEINFO = @MAKEINFO@
633 MAXTAPEBLOCKSIZE = @MAXTAPEBLOCKSIZE@
634 MCUTIL = @MCUTIL@
635 MKDIR_P = @MKDIR_P@
636 MSGFMT = @MSGFMT@
637 MSGFMT_015 = @MSGFMT_015@
638 MSGMERGE = @MSGMERGE@
639 MT = @MT@
640 MTX = @MTX@
641 MT_FILE_FLAG = @MT_FILE_FLAG@
642 NETINET_IN_H = @NETINET_IN_H@
643 NEXT_FLOAT_H = @NEXT_FLOAT_H@
644 NEXT_NETINET_IN_H = @NEXT_NETINET_IN_H@
645 NEXT_STDINT_H = @NEXT_STDINT_H@
646 NEXT_STDIO_H = @NEXT_STDIO_H@
647 NEXT_STDLIB_H = @NEXT_STDLIB_H@
648 NEXT_STRING_H = @NEXT_STRING_H@
649 NEXT_SYS_SOCKET_H = @NEXT_SYS_SOCKET_H@
650 NEXT_SYS_STAT_H = @NEXT_SYS_STAT_H@
651 NEXT_SYS_TIME_H = @NEXT_SYS_TIME_H@
652 NEXT_UNISTD_H = @NEXT_UNISTD_H@
653 NEXT_WCHAR_H = @NEXT_WCHAR_H@
654 OBJEXT = @OBJEXT@
655 PACKAGE = @PACKAGE@
656 PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@
657 PACKAGE_NAME = @PACKAGE_NAME@
658 PACKAGE_STRING = @PACKAGE_STRING@
659 PACKAGE_TARNAME = @PACKAGE_TARNAME@
660 PACKAGE_VERSION = @PACKAGE_VERSION@
661 PATH_SEPARATOR = @PATH_SEPARATOR@
662 PCAT = @PCAT@
663 PERL = @PERL@
664 PERLEXTLIBS = @PERLEXTLIBS@
665 PERL_INC = @PERL_INC@
666 PKG_CONFIG = @PKG_CONFIG@
667 POSUB = @POSUB@
668 PRINT = @PRINT@
669 PTRDIFF_T_SUFFIX = @PTRDIFF_T_SUFFIX@
670 RANLIB = @RANLIB@
671 READLINE_LIBS = @READLINE_LIBS@
672 REPLACE_CHOWN = @REPLACE_CHOWN@
673 REPLACE_FCHDIR = @REPLACE_FCHDIR@
674 REPLACE_FFLUSH = @REPLACE_FFLUSH@
675 REPLACE_FPRINTF = @REPLACE_FPRINTF@
676 REPLACE_FSEEK = @REPLACE_FSEEK@
677 REPLACE_FSEEKO = @REPLACE_FSEEKO@
678 REPLACE_FTELL = @REPLACE_FTELL@
679 REPLACE_FTELLO = @REPLACE_FTELLO@
680 REPLACE_GETCWD = @REPLACE_GETCWD@
681 REPLACE_GETLINE = @REPLACE_GETLINE@
682 REPLACE_GETTIMEOFDAY = @REPLACE_GETTIMEOFDAY@
683 REPLACE_LCHOWN = @REPLACE_LCHOWN@
684 REPLACE_LSEEK = @REPLACE_LSEEK@
685 REPLACE_MKSTEMP = @REPLACE_MKSTEMP@
686 REPLACE_PRINTF = @REPLACE_PRINTF@
687 REPLACE_SNPRINTF = @REPLACE_SNPRINTF@
688 REPLACE_SPRINTF = @REPLACE_SPRINTF@
689 REPLACE_VASPRINTF = @REPLACE_VASPRINTF@
690 REPLACE_VFPRINTF = @REPLACE_VFPRINTF@
691 REPLACE_VPRINTF = @REPLACE_VPRINTF@
692 REPLACE_VSNPRINTF = @REPLACE_VSNPRINTF@
693 REPLACE_VSPRINTF = @REPLACE_VSPRINTF@
694 REPLACE_WCWIDTH = @REPLACE_WCWIDTH@
695 RESTORE = @RESTORE@
696 SAMBA_CLIENT = @SAMBA_CLIENT@
697 SERVICE_SUFFIX = @SERVICE_SUFFIX@
698 SETUID_GROUP = @SETUID_GROUP@
699 SET_MAKE = @SET_MAKE@
700 SHELL = @SHELL@
701 SIG_ATOMIC_T_SUFFIX = @SIG_ATOMIC_T_SUFFIX@
702 SIZE_T_SUFFIX = @SIZE_T_SUFFIX@
703 SNAPSHOT_STAMP = @SNAPSHOT_STAMP@
704 SORT = @SORT@
705 SSH = @SSH@
706 STDBOOL_H = @STDBOOL_H@
707 STDINT_H = @STDINT_H@
708 STRIP = @STRIP@
709 SVN = @SVN@
710 SWIG = @SWIG@
711 SWIG_LIB = @SWIG_LIB@
712 SYS_SOCKET_H = @SYS_SOCKET_H@
713 SYS_STAT_H = @SYS_STAT_H@
714 SYS_TIME_H = @SYS_TIME_H@
715 USE_NLS = @USE_NLS@
716 USE_VERSION_SUFFIXES = @USE_VERSION_SUFFIXES@
717 VDUMP = @VDUMP@
718 VERSION = @VERSION@
719 VERSION_COMMENT = @VERSION_COMMENT@
720 VERSION_MAJOR = @VERSION_MAJOR@
721 VERSION_MINOR = @VERSION_MINOR@
722 VERSION_PATCH = @VERSION_PATCH@
723 VERSION_SUFFIX = @VERSION_SUFFIX@
724 VRESTORE = @VRESTORE@
725 VXDUMP = @VXDUMP@
726 VXRESTORE = @VXRESTORE@
727 WCHAR_H = @WCHAR_H@
728 WCHAR_T_SUFFIX = @WCHAR_T_SUFFIX@
729 WINT_T_SUFFIX = @WINT_T_SUFFIX@
730 XFSDUMP = @XFSDUMP@
731 XFSRESTORE = @XFSRESTORE@
732 XGETTEXT = @XGETTEXT@
733 XGETTEXT_015 = @XGETTEXT_015@
734 XSLREL = @XSLREL@
735 XSLTPROC = @XSLTPROC@
736 XSLTPROC_FLAGS = @XSLTPROC_FLAGS@
737 YACC = @YACC@
738 YFLAGS = @YFLAGS@
739 _libcurl_config = @_libcurl_config@
740 abs_builddir = @abs_builddir@
741 abs_srcdir = @abs_srcdir@
742 abs_top_builddir = @abs_top_builddir@
743 abs_top_srcdir = @abs_top_srcdir@
744 ac_ct_CC = @ac_ct_CC@
745 ac_ct_CXX = @ac_ct_CXX@
746 ac_ct_F77 = @ac_ct_F77@
747 am__include = @am__include@
748 am__leading_dot = @am__leading_dot@
749 am__quote = @am__quote@
750 am__tar = @am__tar@
751 am__untar = @am__untar@
752 amincludedir = @amincludedir@
753 amlibdir = @amlibdir@
754 amlibexecdir = @amlibexecdir@
755 amperldir = @amperldir@
756 bindir = @bindir@
757 build = @build@
758 build_alias = @build_alias@
759 build_cpu = @build_cpu@
760 build_os = @build_os@
761 build_vendor = @build_vendor@
762 builddir = @builddir@
763 datadir = @datadir@
764 datarootdir = @datarootdir@
765 docdir = @docdir@
766 dvidir = @dvidir@
767 exec_prefix = @exec_prefix@
768 gl_LIBOBJS = @gl_LIBOBJS@
769 gl_LTLIBOBJS = @gl_LTLIBOBJS@
770 host = @host@
771 host_alias = @host_alias@
772 host_cpu = @host_cpu@
773 host_os = @host_os@
774 host_vendor = @host_vendor@
775 htmldir = @htmldir@
776 includedir = @includedir@
777 infodir = @infodir@
778 install_sh = @install_sh@
779 libdir = @libdir@
780 libexecdir = @libexecdir@
781 localedir = @localedir@
782 localstatedir = @localstatedir@
783 mandir = @mandir@
784 mkdir_p = @mkdir_p@
785 oldincludedir = @oldincludedir@
786 pdfdir = @pdfdir@
787 prefix = @prefix@
788 program_transform_name = @program_transform_name@
789 psdir = @psdir@
790 sbindir = @sbindir@
791 sharedstatedir = @sharedstatedir@
792 srcdir = @srcdir@
793 sysconfdir = @sysconfdir@
794 target = @target@
795 target_alias = @target_alias@
796 target_cpu = @target_cpu@
797 target_os = @target_os@
798 target_vendor = @target_vendor@
799 top_builddir = @top_builddir@
800 top_srcdir = @top_srcdir@
801 SUFFIXES = 
802 EXTRA_DIST = amanda-sh-lib.sh.in
803 BUILT_SOURCES = genversion.h version.c
804 MOSTLYCLEANFILES = 
805
806 # config.status leaves config.log files around
807 CLEANFILES = config.log *.test.c
808
809 # and we'll need to clean up our generated files for distclean
810 DISTCLEANFILES = $(SCRIPTS_SHELL) $(SCRIPTS_PERL) $(SCRIPTS_AWK) \
811         version.c genversion genversion.h
812 MAINTAINERCLEANFILES = 
813
814 # syntax-check shell scripts on 'make check'
815 CHECK_SHELL = $(SCRIPTS_SHELL)
816
817 # sed expression to strip leading directories from a filename; this converts e.g.,
818 # src/foo/bar.so to bar.so.
819 strip_leading_dirs = s|^.*/||
820 INCLUDES = -I$(top_srcdir)/gnulib   
821 AM_CFLAGS = $(AMANDA_WARNING_CFLAGS)
822 AM_LDFLAGS = $(AMANDA_STATIC_LDFLAGS)
823 amlib_LTLIBRARIES = libamanda.la
824 LINT = $(AMLINT)
825 LINTFLAGS = $(AMLINTFLAGS)
826 libamanda_la_SOURCES = alloc.c amfeatures.c amflock.c clock.c \
827         columnar.c conffile.c debug.c dgram.c event.c file.c \
828         fileheader.c glib-util.c match.c packet.c pipespawn.c \
829         protocol.c security.c security-util.c sl.c sockaddr-util.c \
830         stream.c tapelist.c timestamp.c token.c util.c versuff.c \
831         $(am__append_1) $(am__append_2) $(am__append_3) \
832         $(am__append_4) $(am__append_5) $(am__append_6) \
833         $(am__append_7) $(am__append_8) $(am__append_9) \
834         $(am__append_10) $(am__append_11) local-security.c
835 # version.c is generated; see below
836 nodist_libamanda_la_SOURCES = version.c
837 libamanda_la_LIBADD = \
838         ../gnulib/libgnu.la
839
840 libamanda_la_LDFLAGS = -release $(VERSION)
841 noinst_HEADERS = \
842         amanda.h                \
843         amfeatures.h            \
844         arglist.h               \
845         clock.h                 \
846         columnar.h              \
847         amflock.h               \
848         conffile.h              \
849         debug.h                 \
850         dgram.h                 \
851         event.h                 \
852         file.h                  \
853         fileheader.h            \
854         glib-util.h             \
855         packet.h                \
856         pipespawn.h             \
857         protocol.h              \
858         queue.h                 \
859         security.h              \
860         security-util.h         \
861         sl.h                    \
862         sockaddr-util.h         \
863         stream.h                \
864         tapelist.h              \
865         timestamp.h             \
866         token.h                 \
867         util.h                  \
868         version.h
869
870
871 # Version-building steps:
872 #
873 # 1. configure builds svn-info.h, if svn info is available; this
874 #    file is included in distribution tarballs
875 # 2. Makefile creates genversion.h with build-time information
876 # 3. Makefile builds genversion
877 # 4. Makefile runs genversion to create version.c
878 # 5. version.c is compiled into libamanda normally
879 genversion_SOURCES = genversion.c genversion.h svn-info.h
880 genversion_LDADD = $(libamanda_la_LIBADD)       \
881         versuff.lo                              \
882         ../gnulib/libgnu.la
883
884
885 # these are used for testing only:
886 TEST_PROGS = token file bsdsecurity amfeatures
887
888 # used for testing only
889 STANDARD_COMMON_STUFF_NOT_FILE = \
890         alloc.lo \
891         clock.lo \
892         debug.lo \
893         util.lo \
894         match.lo \
895         sl.lo
896
897 STANDARD_COMMON_STUFF = \
898         $(STANDARD_COMMON_STUFF_NOT_FILE) \
899         file.lo
900
901 token_SOURCES = token.test.c
902 token_LDADD = $(libamanda_la_LIBADD) $(STANDARD_COMMON_STUFF)
903 file_SOURCES = file.test.c
904 file_LDADD = $(libamanda_la_LIBADD) $(STANDARD_COMMON_STUFF_NOT_FILE)
905 bsdsecurity_SOURCES = bsd-security.test.c
906 bsdsecurity_LDADD = $(libamanda_a_LIBADD) \
907                     alloc.lo \
908                     clock.lo \
909                     debug.lo \
910                     dgram.lo \
911                     event.lo \
912                     file.lo \
913                     packet.lo \
914                     security.lo \
915                     ssh-security.lo \
916                     versuff.lo
917
918 amfeatures_SOURCES = amfeatures.test.c
919 amfeatures_LDADD = $(libamanda_la_LIBADD) $(STANDARD_COMMON_STUFF)
920 amflock_test_SOURCES = amflock-test.c
921 amflock_test_LDADD = libamanda.la
922
923 # scripts
924
925 # divide scripts up both by language and by destination directory.
926 sbin_SCRIPTS_PERL = \
927             amgpgcrypt \
928             amcryptsimple
929
930 sbin_SCRIPTS_SHELL = \
931             amcrypt \
932             amaespipe \
933             amcrypt-ossl \
934             amcrypt-ossl-asym
935
936 amlibexec_SCRIPTS_PERL = 
937 SCRIPTS_INCLUDE = \
938             amanda-sh-lib.sh
939
940 CHECK_PERL = $(sbin_SCRIPTS_PERL) $(amlibexec_SCRIPTS_PERL)
941 SCRIPTS_PERL = $(CHECK_PERL)
942 SCRIPTS_SHELL = $(sbin_SCRIPTS_SHELL) $(amlibexec_SCRIPTS_SHELL)
943 amlibexec_DATA = $(SCRIPTS_INCLUDE)
944 amlibexec_SCRIPTS = $(amlibexec_SCRIPTS_PERL) $(amlibexec_SCRIPTS_SHELL)
945 sbin_SCRIPTS = $(sbin_SCRIPTS_PERL) $(sbin_SCRIPTS_SHELL)
946
947 # installation
948 INSTALLPERMS_data = dest=$(sbindir) chown=amanda $(sbin_SCRIPTS) \
949                     dest=$(amlibexecdir) chown=amanda $(amlibexec_SCRIPTS) $(amlibexec_DATA)
950
951 all: $(BUILT_SOURCES)
952         $(MAKE) $(AM_MAKEFLAGS) all-am
953
954 .SUFFIXES:
955 .SUFFIXES: .c .lo .o .obj
956 $(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)
957         @for dep in $?; do \
958           case '$(am__configure_deps)' in \
959             *$$dep*) \
960               cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh \
961                 && exit 0; \
962               exit 1;; \
963           esac; \
964         done; \
965         echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu  common-src/Makefile'; \
966         cd $(top_srcdir) && \
967           $(AUTOMAKE) --gnu  common-src/Makefile
968 .PRECIOUS: Makefile
969 Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
970         @case '$?' in \
971           *config.status*) \
972             cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \
973           *) \
974             echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \
975             cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \
976         esac;
977
978 $(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES)
979         cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
980
981 $(top_srcdir)/configure:  $(am__configure_deps)
982         cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
983 $(ACLOCAL_M4):  $(am__aclocal_m4_deps)
984         cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
985 versuff.c: $(top_builddir)/config.status $(srcdir)/versuff.c.in
986         cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@
987 install-amlibLTLIBRARIES: $(amlib_LTLIBRARIES)
988         @$(NORMAL_INSTALL)
989         test -z "$(amlibdir)" || $(MKDIR_P) "$(DESTDIR)$(amlibdir)"
990         @list='$(amlib_LTLIBRARIES)'; for p in $$list; do \
991           if test -f $$p; then \
992             f=$(am__strip_dir) \
993             echo " $(LIBTOOL) --mode=install $(amlibLTLIBRARIES_INSTALL) $(INSTALL_STRIP_FLAG) '$$p' '$(DESTDIR)$(amlibdir)/$$f'"; \
994             $(LIBTOOL) --mode=install $(amlibLTLIBRARIES_INSTALL) $(INSTALL_STRIP_FLAG) "$$p" "$(DESTDIR)$(amlibdir)/$$f"; \
995           else :; fi; \
996         done
997
998 uninstall-amlibLTLIBRARIES:
999         @$(NORMAL_UNINSTALL)
1000         @list='$(amlib_LTLIBRARIES)'; for p in $$list; do \
1001           p=$(am__strip_dir) \
1002           echo " $(LIBTOOL) --mode=uninstall rm -f '$(DESTDIR)$(amlibdir)/$$p'"; \
1003           $(LIBTOOL) --mode=uninstall rm -f "$(DESTDIR)$(amlibdir)/$$p"; \
1004         done
1005
1006 clean-amlibLTLIBRARIES:
1007         -test -z "$(amlib_LTLIBRARIES)" || rm -f $(amlib_LTLIBRARIES)
1008         @list='$(amlib_LTLIBRARIES)'; for p in $$list; do \
1009           dir="`echo $$p | sed -e 's|/[^/]*$$||'`"; \
1010           test "$$dir" != "$$p" || dir=.; \
1011           echo "rm -f \"$${dir}/so_locations\""; \
1012           rm -f "$${dir}/so_locations"; \
1013         done
1014 libamanda.la: $(libamanda_la_OBJECTS) $(libamanda_la_DEPENDENCIES) 
1015         $(libamanda_la_LINK) -rpath $(amlibdir) $(libamanda_la_OBJECTS) $(libamanda_la_LIBADD) $(LIBS)
1016
1017 clean-noinstPROGRAMS:
1018         @list='$(noinst_PROGRAMS)'; for p in $$list; do \
1019           f=`echo $$p|sed 's/$(EXEEXT)$$//'`; \
1020           echo " rm -f $$p $$f"; \
1021           rm -f $$p $$f ; \
1022         done
1023 amfeatures$(EXEEXT): $(amfeatures_OBJECTS) $(amfeatures_DEPENDENCIES) 
1024         @rm -f amfeatures$(EXEEXT)
1025         $(LINK) $(amfeatures_OBJECTS) $(amfeatures_LDADD) $(LIBS)
1026 amflock-test$(EXEEXT): $(amflock_test_OBJECTS) $(amflock_test_DEPENDENCIES) 
1027         @rm -f amflock-test$(EXEEXT)
1028         $(LINK) $(amflock_test_OBJECTS) $(amflock_test_LDADD) $(LIBS)
1029 bsdsecurity$(EXEEXT): $(bsdsecurity_OBJECTS) $(bsdsecurity_DEPENDENCIES) 
1030         @rm -f bsdsecurity$(EXEEXT)
1031         $(LINK) $(bsdsecurity_OBJECTS) $(bsdsecurity_LDADD) $(LIBS)
1032 file$(EXEEXT): $(file_OBJECTS) $(file_DEPENDENCIES) 
1033         @rm -f file$(EXEEXT)
1034         $(LINK) $(file_OBJECTS) $(file_LDADD) $(LIBS)
1035 genversion$(EXEEXT): $(genversion_OBJECTS) $(genversion_DEPENDENCIES) 
1036         @rm -f genversion$(EXEEXT)
1037         $(LINK) $(genversion_OBJECTS) $(genversion_LDADD) $(LIBS)
1038 token$(EXEEXT): $(token_OBJECTS) $(token_DEPENDENCIES) 
1039         @rm -f token$(EXEEXT)
1040         $(LINK) $(token_OBJECTS) $(token_LDADD) $(LIBS)
1041 install-amlibexecSCRIPTS: $(amlibexec_SCRIPTS)
1042         @$(NORMAL_INSTALL)
1043         test -z "$(amlibexecdir)" || $(MKDIR_P) "$(DESTDIR)$(amlibexecdir)"
1044         @list='$(amlibexec_SCRIPTS)'; for p in $$list; do \
1045           if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \
1046           if test -f $$d$$p; then \
1047             f=`echo "$$p" | sed 's|^.*/||;$(transform)'`; \
1048             echo " $(amlibexecSCRIPT_INSTALL) '$$d$$p' '$(DESTDIR)$(amlibexecdir)/$$f'"; \
1049             $(amlibexecSCRIPT_INSTALL) "$$d$$p" "$(DESTDIR)$(amlibexecdir)/$$f"; \
1050           else :; fi; \
1051         done
1052
1053 uninstall-amlibexecSCRIPTS:
1054         @$(NORMAL_UNINSTALL)
1055         @list='$(amlibexec_SCRIPTS)'; for p in $$list; do \
1056           f=`echo "$$p" | sed 's|^.*/||;$(transform)'`; \
1057           echo " rm -f '$(DESTDIR)$(amlibexecdir)/$$f'"; \
1058           rm -f "$(DESTDIR)$(amlibexecdir)/$$f"; \
1059         done
1060 install-sbinSCRIPTS: $(sbin_SCRIPTS)
1061         @$(NORMAL_INSTALL)
1062         test -z "$(sbindir)" || $(MKDIR_P) "$(DESTDIR)$(sbindir)"
1063         @list='$(sbin_SCRIPTS)'; for p in $$list; do \
1064           if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \
1065           if test -f $$d$$p; then \
1066             f=`echo "$$p" | sed 's|^.*/||;$(transform)'`; \
1067             echo " $(sbinSCRIPT_INSTALL) '$$d$$p' '$(DESTDIR)$(sbindir)/$$f'"; \
1068             $(sbinSCRIPT_INSTALL) "$$d$$p" "$(DESTDIR)$(sbindir)/$$f"; \
1069           else :; fi; \
1070         done
1071
1072 uninstall-sbinSCRIPTS:
1073         @$(NORMAL_UNINSTALL)
1074         @list='$(sbin_SCRIPTS)'; for p in $$list; do \
1075           f=`echo "$$p" | sed 's|^.*/||;$(transform)'`; \
1076           echo " rm -f '$(DESTDIR)$(sbindir)/$$f'"; \
1077           rm -f "$(DESTDIR)$(sbindir)/$$f"; \
1078         done
1079
1080 mostlyclean-compile:
1081         -rm -f *.$(OBJEXT)
1082
1083 distclean-compile:
1084         -rm -f *.tab.c
1085
1086 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/alloc.Plo@am__quote@
1087 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/amfeatures.Plo@am__quote@
1088 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/amfeatures.test.Po@am__quote@
1089 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/amflock-flock.Plo@am__quote@
1090 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/amflock-lnlock.Plo@am__quote@
1091 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/amflock-lockf.Plo@am__quote@
1092 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/amflock-posix.Plo@am__quote@
1093 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/amflock-test.Po@am__quote@
1094 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/amflock.Plo@am__quote@
1095 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/bsd-security.Plo@am__quote@
1096 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/bsd-security.test.Po@am__quote@
1097 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/bsdtcp-security.Plo@am__quote@
1098 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/bsdudp-security.Plo@am__quote@
1099 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/clock.Plo@am__quote@
1100 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/columnar.Plo@am__quote@
1101 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/conffile.Plo@am__quote@
1102 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/debug.Plo@am__quote@
1103 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/dgram.Plo@am__quote@
1104 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/event.Plo@am__quote@
1105 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/file.Plo@am__quote@
1106 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/file.test.Po@am__quote@
1107 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/fileheader.Plo@am__quote@
1108 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/genversion.Po@am__quote@
1109 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/glib-util.Plo@am__quote@
1110 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/krb4-security.Plo@am__quote@
1111 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/krb5-security.Plo@am__quote@
1112 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/local-security.Plo@am__quote@
1113 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/match.Plo@am__quote@
1114 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/packet.Plo@am__quote@
1115 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/pipespawn.Plo@am__quote@
1116 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/protocol.Plo@am__quote@
1117 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/rsh-security.Plo@am__quote@
1118 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/security-util.Plo@am__quote@
1119 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/security.Plo@am__quote@
1120 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/sl.Plo@am__quote@
1121 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/sockaddr-util.Plo@am__quote@
1122 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/ssh-security.Plo@am__quote@
1123 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/stream.Plo@am__quote@
1124 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/tapelist.Plo@am__quote@
1125 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/timestamp.Plo@am__quote@
1126 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/token.Plo@am__quote@
1127 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/token.test.Po@am__quote@
1128 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/util.Plo@am__quote@
1129 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/version.Plo@am__quote@
1130 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/versuff.Plo@am__quote@
1131
1132 .c.o:
1133 @am__fastdepCC_TRUE@    $(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $<
1134 @am__fastdepCC_TRUE@    mv -f $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po
1135 @AMDEP_TRUE@@am__fastdepCC_FALSE@       source='$<' object='$@' libtool=no @AMDEPBACKSLASH@
1136 @AMDEP_TRUE@@am__fastdepCC_FALSE@       DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
1137 @am__fastdepCC_FALSE@   $(COMPILE) -c $<
1138
1139 .c.obj:
1140 @am__fastdepCC_TRUE@    $(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ `$(CYGPATH_W) '$<'`
1141 @am__fastdepCC_TRUE@    mv -f $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po
1142 @AMDEP_TRUE@@am__fastdepCC_FALSE@       source='$<' object='$@' libtool=no @AMDEPBACKSLASH@
1143 @AMDEP_TRUE@@am__fastdepCC_FALSE@       DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
1144 @am__fastdepCC_FALSE@   $(COMPILE) -c `$(CYGPATH_W) '$<'`
1145
1146 .c.lo:
1147 @am__fastdepCC_TRUE@    $(LTCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $<
1148 @am__fastdepCC_TRUE@    mv -f $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Plo
1149 @AMDEP_TRUE@@am__fastdepCC_FALSE@       source='$<' object='$@' libtool=yes @AMDEPBACKSLASH@
1150 @AMDEP_TRUE@@am__fastdepCC_FALSE@       DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
1151 @am__fastdepCC_FALSE@   $(LTCOMPILE) -c -o $@ $<
1152
1153 mostlyclean-libtool:
1154         -rm -f *.lo
1155
1156 clean-libtool:
1157         -rm -rf .libs _libs
1158 install-amlibexecDATA: $(amlibexec_DATA)
1159         @$(NORMAL_INSTALL)
1160         test -z "$(amlibexecdir)" || $(MKDIR_P) "$(DESTDIR)$(amlibexecdir)"
1161         @list='$(amlibexec_DATA)'; for p in $$list; do \
1162           if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \
1163           f=$(am__strip_dir) \
1164           echo " $(amlibexecDATA_INSTALL) '$$d$$p' '$(DESTDIR)$(amlibexecdir)/$$f'"; \
1165           $(amlibexecDATA_INSTALL) "$$d$$p" "$(DESTDIR)$(amlibexecdir)/$$f"; \
1166         done
1167
1168 uninstall-amlibexecDATA:
1169         @$(NORMAL_UNINSTALL)
1170         @list='$(amlibexec_DATA)'; for p in $$list; do \
1171           f=$(am__strip_dir) \
1172           echo " rm -f '$(DESTDIR)$(amlibexecdir)/$$f'"; \
1173           rm -f "$(DESTDIR)$(amlibexecdir)/$$f"; \
1174         done
1175
1176 ID: $(HEADERS) $(SOURCES) $(LISP) $(TAGS_FILES)
1177         list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \
1178         unique=`for i in $$list; do \
1179             if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
1180           done | \
1181           $(AWK) '    { files[$$0] = 1; } \
1182                END { for (i in files) print i; }'`; \
1183         mkid -fID $$unique
1184 tags: TAGS
1185
1186 TAGS:  $(HEADERS) $(SOURCES)  $(TAGS_DEPENDENCIES) \
1187                 $(TAGS_FILES) $(LISP)
1188         tags=; \
1189         here=`pwd`; \
1190         list='$(SOURCES) $(HEADERS)  $(LISP) $(TAGS_FILES)'; \
1191         unique=`for i in $$list; do \
1192             if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
1193           done | \
1194           $(AWK) '    { files[$$0] = 1; } \
1195                END { for (i in files) print i; }'`; \
1196         if test -z "$(ETAGS_ARGS)$$tags$$unique"; then :; else \
1197           test -n "$$unique" || unique=$$empty_fix; \
1198           $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \
1199             $$tags $$unique; \
1200         fi
1201 ctags: CTAGS
1202 CTAGS:  $(HEADERS) $(SOURCES)  $(TAGS_DEPENDENCIES) \
1203                 $(TAGS_FILES) $(LISP)
1204         tags=; \
1205         here=`pwd`; \
1206         list='$(SOURCES) $(HEADERS)  $(LISP) $(TAGS_FILES)'; \
1207         unique=`for i in $$list; do \
1208             if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
1209           done | \
1210           $(AWK) '    { files[$$0] = 1; } \
1211                END { for (i in files) print i; }'`; \
1212         test -z "$(CTAGS_ARGS)$$tags$$unique" \
1213           || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \
1214              $$tags $$unique
1215
1216 GTAGS:
1217         here=`$(am__cd) $(top_builddir) && pwd` \
1218           && cd $(top_srcdir) \
1219           && gtags -i $(GTAGS_ARGS) $$here
1220
1221 distclean-tags:
1222         -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags
1223
1224 check-TESTS: $(TESTS)
1225         @failed=0; all=0; xfail=0; xpass=0; skip=0; ws='[        ]'; \
1226         srcdir=$(srcdir); export srcdir; \
1227         list=' $(TESTS) '; \
1228         if test -n "$$list"; then \
1229           for tst in $$list; do \
1230             if test -f ./$$tst; then dir=./; \
1231             elif test -f $$tst; then dir=; \
1232             else dir="$(srcdir)/"; fi; \
1233             if $(TESTS_ENVIRONMENT) $${dir}$$tst; then \
1234               all=`expr $$all + 1`; \
1235               case " $(XFAIL_TESTS) " in \
1236               *$$ws$$tst$$ws*) \
1237                 xpass=`expr $$xpass + 1`; \
1238                 failed=`expr $$failed + 1`; \
1239                 echo "XPASS: $$tst"; \
1240               ;; \
1241               *) \
1242                 echo "PASS: $$tst"; \
1243               ;; \
1244               esac; \
1245             elif test $$? -ne 77; then \
1246               all=`expr $$all + 1`; \
1247               case " $(XFAIL_TESTS) " in \
1248               *$$ws$$tst$$ws*) \
1249                 xfail=`expr $$xfail + 1`; \
1250                 echo "XFAIL: $$tst"; \
1251               ;; \
1252               *) \
1253                 failed=`expr $$failed + 1`; \
1254                 echo "FAIL: $$tst"; \
1255               ;; \
1256               esac; \
1257             else \
1258               skip=`expr $$skip + 1`; \
1259               echo "SKIP: $$tst"; \
1260             fi; \
1261           done; \
1262           if test "$$failed" -eq 0; then \
1263             if test "$$xfail" -eq 0; then \
1264               banner="All $$all tests passed"; \
1265             else \
1266               banner="All $$all tests behaved as expected ($$xfail expected failures)"; \
1267             fi; \
1268           else \
1269             if test "$$xpass" -eq 0; then \
1270               banner="$$failed of $$all tests failed"; \
1271             else \
1272               banner="$$failed of $$all tests did not behave as expected ($$xpass unexpected passes)"; \
1273             fi; \
1274           fi; \
1275           dashes="$$banner"; \
1276           skipped=""; \
1277           if test "$$skip" -ne 0; then \
1278             skipped="($$skip tests were not run)"; \
1279             test `echo "$$skipped" | wc -c` -le `echo "$$banner" | wc -c` || \
1280               dashes="$$skipped"; \
1281           fi; \
1282           report=""; \
1283           if test "$$failed" -ne 0 && test -n "$(PACKAGE_BUGREPORT)"; then \
1284             report="Please report to $(PACKAGE_BUGREPORT)"; \
1285             test `echo "$$report" | wc -c` -le `echo "$$banner" | wc -c` || \
1286               dashes="$$report"; \
1287           fi; \
1288           dashes=`echo "$$dashes" | sed s/./=/g`; \
1289           echo "$$dashes"; \
1290           echo "$$banner"; \
1291           test -z "$$skipped" || echo "$$skipped"; \
1292           test -z "$$report" || echo "$$report"; \
1293           echo "$$dashes"; \
1294           test "$$failed" -eq 0; \
1295         else :; fi
1296
1297 distdir: $(DISTFILES)
1298         @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
1299         topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
1300         list='$(DISTFILES)'; \
1301           dist_files=`for file in $$list; do echo $$file; done | \
1302           sed -e "s|^$$srcdirstrip/||;t" \
1303               -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \
1304         case $$dist_files in \
1305           */*) $(MKDIR_P) `echo "$$dist_files" | \
1306                            sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \
1307                            sort -u` ;; \
1308         esac; \
1309         for file in $$dist_files; do \
1310           if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \
1311           if test -d $$d/$$file; then \
1312             dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \
1313             if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \
1314               cp -pR $(srcdir)/$$file $(distdir)$$dir || exit 1; \
1315             fi; \
1316             cp -pR $$d/$$file $(distdir)$$dir || exit 1; \
1317           else \
1318             test -f $(distdir)/$$file \
1319             || cp -p $$d/$$file $(distdir)/$$file \
1320             || exit 1; \
1321           fi; \
1322         done
1323         $(MAKE) $(AM_MAKEFLAGS) \
1324           top_distdir="$(top_distdir)" distdir="$(distdir)" \
1325           dist-hook
1326 check-am: all-am
1327         $(MAKE) $(AM_MAKEFLAGS) check-TESTS check-local
1328 check: $(BUILT_SOURCES)
1329         $(MAKE) $(AM_MAKEFLAGS) check-am
1330 all-am: Makefile $(LTLIBRARIES) $(PROGRAMS) $(SCRIPTS) $(DATA) \
1331                 $(HEADERS)
1332 installdirs:
1333         for dir in "$(DESTDIR)$(amlibdir)" "$(DESTDIR)$(amlibexecdir)" "$(DESTDIR)$(sbindir)" "$(DESTDIR)$(amlibexecdir)"; do \
1334           test -z "$$dir" || $(MKDIR_P) "$$dir"; \
1335         done
1336 install: $(BUILT_SOURCES)
1337         $(MAKE) $(AM_MAKEFLAGS) install-am
1338 install-exec: install-exec-am
1339 install-data: install-data-am
1340 uninstall: uninstall-am
1341
1342 install-am: all-am
1343         @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am
1344
1345 installcheck: installcheck-am
1346 install-strip:
1347         $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \
1348           install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \
1349           `test -z '$(STRIP)' || \
1350             echo "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'"` install
1351 mostlyclean-generic:
1352         -test -z "$(MOSTLYCLEANFILES)" || rm -f $(MOSTLYCLEANFILES)
1353
1354 clean-generic:
1355         -test -z "$(CLEANFILES)" || rm -f $(CLEANFILES)
1356
1357 distclean-generic:
1358         -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES)
1359         -test -z "$(DISTCLEANFILES)" || rm -f $(DISTCLEANFILES)
1360
1361 maintainer-clean-generic:
1362         @echo "This command is intended for maintainers to use"
1363         @echo "it deletes files that may require special tools to rebuild."
1364         -test -z "$(BUILT_SOURCES)" || rm -f $(BUILT_SOURCES)
1365         -test -z "$(MAINTAINERCLEANFILES)" || rm -f $(MAINTAINERCLEANFILES)
1366 @WANT_INSTALLPERMS_FALSE@install-exec-hook:
1367 @WANT_INSTALLPERMS_FALSE@install-data-hook:
1368 clean: clean-am
1369
1370 clean-am: clean-amlibLTLIBRARIES clean-generic clean-libtool \
1371         clean-noinstPROGRAMS mostlyclean-am
1372
1373 distclean: distclean-am
1374         -rm -rf ./$(DEPDIR)
1375         -rm -f Makefile
1376 distclean-am: clean-am distclean-compile distclean-generic \
1377         distclean-tags
1378
1379 dvi: dvi-am
1380
1381 dvi-am:
1382
1383 html: html-am
1384
1385 info: info-am
1386
1387 info-am:
1388
1389 install-data-am: install-amlibLTLIBRARIES
1390         @$(NORMAL_INSTALL)
1391         $(MAKE) $(AM_MAKEFLAGS) install-data-hook
1392
1393 install-dvi: install-dvi-am
1394
1395 install-exec-am: install-amlibexecDATA install-amlibexecSCRIPTS \
1396         install-sbinSCRIPTS
1397         @$(NORMAL_INSTALL)
1398         $(MAKE) $(AM_MAKEFLAGS) install-exec-hook
1399
1400 install-html: install-html-am
1401
1402 install-info: install-info-am
1403
1404 install-man:
1405
1406 install-pdf: install-pdf-am
1407
1408 install-ps: install-ps-am
1409
1410 installcheck-am:
1411
1412 maintainer-clean: maintainer-clean-am
1413         -rm -rf ./$(DEPDIR)
1414         -rm -f Makefile
1415 maintainer-clean-am: distclean-am maintainer-clean-generic
1416
1417 mostlyclean: mostlyclean-am
1418
1419 mostlyclean-am: mostlyclean-compile mostlyclean-generic \
1420         mostlyclean-libtool
1421
1422 pdf: pdf-am
1423
1424 pdf-am:
1425
1426 ps: ps-am
1427
1428 ps-am:
1429
1430 uninstall-am: uninstall-amlibLTLIBRARIES uninstall-amlibexecDATA \
1431         uninstall-amlibexecSCRIPTS uninstall-sbinSCRIPTS
1432
1433 .MAKE: install-am install-data-am install-exec-am install-strip
1434
1435 .PHONY: CTAGS GTAGS all all-am check check-TESTS check-am check-local \
1436         clean clean-amlibLTLIBRARIES clean-generic clean-libtool \
1437         clean-noinstPROGRAMS ctags dist-hook distclean \
1438         distclean-compile distclean-generic distclean-libtool \
1439         distclean-tags distdir dvi dvi-am html html-am info info-am \
1440         install install-am install-amlibLTLIBRARIES \
1441         install-amlibexecDATA install-amlibexecSCRIPTS install-data \
1442         install-data-am install-data-hook install-dvi install-dvi-am \
1443         install-exec install-exec-am install-exec-hook install-html \
1444         install-html-am install-info install-info-am install-man \
1445         install-pdf install-pdf-am install-ps install-ps-am \
1446         install-sbinSCRIPTS install-strip installcheck installcheck-am \
1447         installdirs maintainer-clean maintainer-clean-generic \
1448         mostlyclean mostlyclean-compile mostlyclean-generic \
1449         mostlyclean-libtool pdf pdf-am ps ps-am tags uninstall \
1450         uninstall-am uninstall-amlibLTLIBRARIES \
1451         uninstall-amlibexecDATA uninstall-amlibexecSCRIPTS \
1452         uninstall-sbinSCRIPTS
1453
1454
1455 # Perl
1456 %: %.pl $(top_builddir)/config.status
1457         $(top_builddir)/config.status --file=$@:$<
1458         chmod a+x $@
1459
1460 %.pl: %.pl.in $(top_builddir)/config.status
1461         $(top_builddir)/config.status --file=$@:$<
1462
1463 %.pm: %.pm.in $(top_builddir)/config.status
1464         $(top_builddir)/config.status --file=$@:$<
1465
1466 # Shell
1467 %: %.sh $(top_builddir)/config.status
1468         $(top_builddir)/config.status --file=$@:$<
1469         chmod a+x $@
1470
1471 %.sh: %.sh.in $(top_builddir)/config.status
1472         $(top_builddir)/config.status --file=$@:$<
1473
1474 # Awk
1475 %: %.awk $(top_builddir)/config.status
1476         $(top_builddir)/config.status --file=$@:$<
1477         chmod a+x $@
1478
1479 %.awk: %.awk.in $(top_builddir)/config.status
1480         $(top_builddir)/config.status --file=$@:$<
1481
1482 # syntax-check perl scripts on 'make check'
1483 check-perl: $(CHECK_PERL)
1484         @CHECK_PERL="$(CHECK_PERL)"; \
1485         if test -n "$(PERL)"; then \
1486                 for perlobj in $$CHECK_PERL; do \
1487                         $(PERL) $(CHECK_PERL_FLAGS) -c -w -T $$perlobj || exit 1; \
1488                 done; \
1489         fi
1490 check-local: check-perl
1491 check-shell: $(CHECK_SHELL)
1492         @CHECK_SHELL="$(CHECK_SHELL)"; \
1493         if test -n "$$CHECK_SHELL"; then \
1494                 if test -n "$(BASH)"; then \
1495                         for shobj in $$CHECK_SHELL; do \
1496                                 if $(BASH) -n $$shobj; then \
1497                                         echo "$$shobj syntax OK"; \
1498                                 else \
1499                                         echo "$$shobj syntax error"; \
1500                                         exit 1; \
1501                                 fi; \
1502                         done; \
1503                 else \
1504                         echo "No 'bash' available -- cannot syntax-check shell scripts"; \
1505                 fi; \
1506         fi
1507 check-local: check-shell
1508
1509 # make sure that the sources for all shell and perl scripts get included
1510 # in the distribution
1511 dist-scripts:
1512         SCRIPTS_PERL="$(SCRIPTS_PERL)"; SCRIPTS_SHELL="$(SCRIPTS_SHELL)"; SCRIPTS_AWK="$(SCRIPTS_AWK)"; \
1513         for script in $$SCRIPTS_PERL; do \
1514                 test -f $(srcdir)/$${script}.pl && { cp -p $(srcdir)/$${script}.pl $(distdir)/ || exit 1; } \
1515         done; \
1516         for script in $$SCRIPTS_SHELL; do \
1517                 test -f $(srcdir)/$${script}.sh && { cp -p $(srcdir)/$${script}.sh $(distdir)/ || exit 1; } \
1518         done; \
1519         for script in $$SCRIPTS_AWK; do \
1520                 test -f $(srcdir)/$${script}.awk && { cp -p $(srcdir)/$${script}.awk $(distdir)/ || exit 1; } \
1521         done; \
1522         for script in $$SCRIPTS_SHELL $$SCRIPTS_PERL $$SCRIPTS_AWK; do \
1523                 test -f $(srcdir)/$${script}.in && { cp -p $(srcdir)/$${script}.in $(distdir)/ || exit 1; } \
1524         done; \
1525         true
1526 dist-hook: dist-scripts
1527
1528 @WANT_INSTALLPERMS_TRUE@installperms-exec:
1529 @WANT_INSTALLPERMS_TRUE@        @installperms="$(INSTALLPERMS_exec)"; \
1530 @WANT_INSTALLPERMS_TRUE@        test -n "$$installperms" && echo "Setting installation permissions on executables"; \
1531 @WANT_INSTALLPERMS_TRUE@        dest=; chown=; chmod=; \
1532 @WANT_INSTALLPERMS_TRUE@        for cmd in $$installperms; do \
1533 @WANT_INSTALLPERMS_TRUE@            case "$$cmd" in \
1534 @WANT_INSTALLPERMS_TRUE@                chown=amanda) \
1535 @WANT_INSTALLPERMS_TRUE@                        echo "  ($$cmd)"; chown="$(BINARY_OWNER):$(SETUID_GROUP)";; \
1536 @WANT_INSTALLPERMS_TRUE@                dest=*|chown=*|chmod=*) \
1537 @WANT_INSTALLPERMS_TRUE@                        echo "  ($$cmd)"; eval $$cmd;; \
1538 @WANT_INSTALLPERMS_TRUE@                *)  pa="$(DESTDIR)$$dest"/`echo "$$cmd"|sed '$(strip_leading_dirs)'|sed '$(transform)'`; \
1539 @WANT_INSTALLPERMS_TRUE@                    if test -n "$$chown"; then \
1540 @WANT_INSTALLPERMS_TRUE@                        echo chown "$$chown" "$$pa"; \
1541 @WANT_INSTALLPERMS_TRUE@                        chown "$$chown" "$$pa" || exit 1; \
1542 @WANT_INSTALLPERMS_TRUE@                    fi; \
1543 @WANT_INSTALLPERMS_TRUE@                    if test -n "$$chmod"; then \
1544 @WANT_INSTALLPERMS_TRUE@                        echo chmod "$$chmod" "$$pa"; \
1545 @WANT_INSTALLPERMS_TRUE@                        chmod "$$chmod" "$$pa" || exit 1; \
1546 @WANT_INSTALLPERMS_TRUE@                    fi; \
1547 @WANT_INSTALLPERMS_TRUE@            esac; \
1548 @WANT_INSTALLPERMS_TRUE@        done
1549
1550 @WANT_INSTALLPERMS_TRUE@installperms-data:
1551 @WANT_INSTALLPERMS_TRUE@        @installperms="$(INSTALLPERMS_data)"; \
1552 @WANT_INSTALLPERMS_TRUE@        test -n "$$installperms" && echo "Setting installation permissions on data"; \
1553 @WANT_INSTALLPERMS_TRUE@        dest=; chown=; chmod=; \
1554 @WANT_INSTALLPERMS_TRUE@        for cmd in $$installperms; do \
1555 @WANT_INSTALLPERMS_TRUE@            case "$$cmd" in \
1556 @WANT_INSTALLPERMS_TRUE@                chown=amanda) \
1557 @WANT_INSTALLPERMS_TRUE@                        echo "  ($$cmd)"; chown="$(BINARY_OWNER):$(SETUID_GROUP)";; \
1558 @WANT_INSTALLPERMS_TRUE@                dest=*|chown=*|chmod=*) \
1559 @WANT_INSTALLPERMS_TRUE@                        echo "  ($$cmd)"; eval $$cmd;; \
1560 @WANT_INSTALLPERMS_TRUE@                *)  pa="$(DESTDIR)$$dest"/`echo "$$cmd"|sed '$(strip_leading_dirs)'|sed '$(transform)'`; \
1561 @WANT_INSTALLPERMS_TRUE@                    if test -n "$$chown"; then \
1562 @WANT_INSTALLPERMS_TRUE@                        echo chown "$$chown" "$$pa"; \
1563 @WANT_INSTALLPERMS_TRUE@                        chown "$$chown" "$$pa" || exit 1; \
1564 @WANT_INSTALLPERMS_TRUE@                    fi; \
1565 @WANT_INSTALLPERMS_TRUE@                    if test -n "$$chmod"; then \
1566 @WANT_INSTALLPERMS_TRUE@                        echo chmod "$$chmod" "$$pa"; \
1567 @WANT_INSTALLPERMS_TRUE@                        chmod "$$chmod" "$$pa" || exit 1; \
1568 @WANT_INSTALLPERMS_TRUE@                    fi; \
1569 @WANT_INSTALLPERMS_TRUE@            esac; \
1570 @WANT_INSTALLPERMS_TRUE@        done
1571
1572 @WANT_INSTALLPERMS_TRUE@install-exec-hook: installperms-exec
1573 @WANT_INSTALLPERMS_TRUE@install-data-hook: installperms-data
1574
1575 # A rule to make precompiler output from C files.  This is not used during
1576 # ordinary builds, but but can very useful in debugging problems on strange
1577 # architectures.  With this rule, we can ask users to 'make foo.i' and send
1578 # the result to us.
1579 #
1580 # It touches some automake internals ($COMPILE), but since it's not
1581 # build-critical, that's OK.
1582 %.i : %.c
1583         $(COMPILE) -E -o $@ $<
1584
1585 genversion.h: $(top_builddir)/config.status
1586         -rm -f $@ $@.new
1587         echo '#define CC "$(CC)"' > $@.new
1588         echo '#define BUILT_DATE "'`date`'"' >> $@.new
1589         echo '#define BUILT_MACH "$(target)"' >> $@.new
1590         mv $@.new $@
1591
1592 version.c: genversion$(EXEEXT)
1593         -rm -f version.c
1594         ./genversion$(EXEEXT) > version.c
1595
1596 lint:
1597         @echo $(LINT) $(libamanda_la_SOURCES)
1598         @$(LINT) $(LINTFLAGS) $(CPPFLAGS) $(DEFS) -I. -I$(top_builddir)/config $(INCLUDES) $(libamanda_la_SOURCES)
1599         @echo $(LINT) $(genversion_SOURCES)
1600         @$(LINT) $(LINTFLAGS) $(CPPFLAGS) $(DEFS) -I. -I$(top_builddir)/config $(INCLUDES) $(genversion_SOURCES)
1601
1602 listlibsrc:
1603         @ for p in $(libamanda_la_SOURCES) $(REGEXCSRC); do     \
1604                 listlibsrcs="$$listlibsrcs `pwd`/$$p";          \
1605         done;                                                   \
1606         echo $$listlibsrcs >listlibsrc.output
1607
1608 %.test.c: $(srcdir)/%.c
1609         echo '#define TEST' >$@
1610         echo '#include "$<"' >>$@
1611 # Tell versions [3.59,3.63) of GNU make to not export all variables.
1612 # Otherwise a system limit (for SysV at least) may be exceeded.
1613 .NOEXPORT: