Imported Upstream version 3.1.0
[debian/amanda] / common-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 library.
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
166 VPATH = @srcdir@
167 pkgdatadir = $(datadir)/@PACKAGE@
168 pkgincludedir = $(includedir)/@PACKAGE@
169 pkglibdir = $(libdir)/@PACKAGE@
170 pkglibexecdir = $(libexecdir)/@PACKAGE@
171 am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd
172 install_sh_DATA = $(install_sh) -c -m 644
173 install_sh_PROGRAM = $(install_sh) -c
174 install_sh_SCRIPT = $(install_sh) -c
175 INSTALL_HEADER = $(INSTALL_DATA)
176 transform = $(program_transform_name)
177 NORMAL_INSTALL = :
178 PRE_INSTALL = :
179 POST_INSTALL = :
180 NORMAL_UNINSTALL = :
181 PRE_UNINSTALL = :
182 POST_UNINSTALL = :
183 build_triplet = @build@
184 host_triplet = @host@
185 DIST_COMMON = $(noinst_HEADERS) $(srcdir)/Makefile.am \
186         $(srcdir)/Makefile.in \
187         $(top_srcdir)/config/automake/installperms.am \
188         $(top_srcdir)/config/automake/precompile.am \
189         $(top_srcdir)/config/automake/scripts.am \
190         $(top_srcdir)/config/automake/vars.am
191 @WANT_INSTALLPERMS_FALSE@am__append_1 = $(installperms_sh)
192 @WANT_AMFLOCK_POSIX_TRUE@am__append_2 = amflock-posix.c
193 @WANT_AMFLOCK_FLOCK_TRUE@am__append_3 = amflock-flock.c
194 @WANT_AMFLOCK_LOCKF_TRUE@am__append_4 = amflock-lockf.c
195 @WANT_AMFLOCK_LNLOCK_TRUE@am__append_5 = amflock-lnlock.c
196 @WANT_RSH_SECURITY_TRUE@am__append_6 = rsh-security.c
197 @WANT_SSH_SECURITY_TRUE@am__append_7 = ssh-security.c
198 @WANT_BSD_SECURITY_TRUE@am__append_8 = bsd-security.c
199 @WANT_BSDTCP_SECURITY_TRUE@am__append_9 = bsdtcp-security.c
200 @WANT_BSDUDP_SECURITY_TRUE@am__append_10 = bsdudp-security.c
201 @WANT_KRB5_SECURITY_TRUE@am__append_11 = krb5-security.c
202 EXTRA_PROGRAMS = genversion$(EXEEXT) $(am__EXEEXT_1)
203 TESTS = amflock-test$(EXEEXT) event-test$(EXEEXT) \
204         semaphore-test$(EXEEXT) queueing-test$(EXEEXT) \
205         quoting-test$(EXEEXT) ipc-binary-test$(EXEEXT) \
206         hexencode-test$(EXEEXT) fileheader-test$(EXEEXT) \
207         match-test$(EXEEXT)
208 noinst_PROGRAMS = $(am__EXEEXT_2)
209 subdir = common-src
210 ACLOCAL_M4 = $(top_srcdir)/aclocal.m4
211 am__aclocal_m4_deps =  \
212         $(top_srcdir)/config/macro-archive/ac_define_dir.m4 \
213         $(top_srcdir)/config/macro-archive/ac_perl_module_version.m4 \
214         $(top_srcdir)/config/macro-archive/ac_prog_perl_version.m4 \
215         $(top_srcdir)/config/macro-archive/ac_prog_swig.m4 \
216         $(top_srcdir)/config/macro-archive/ax_compare_version.m4 \
217         $(top_srcdir)/config/macro-archive/docbook-dtd.m4 \
218         $(top_srcdir)/config/macro-archive/docbook-xslt-min.m4 \
219         $(top_srcdir)/config/macro-archive/docbook-xslt.m4 \
220         $(top_srcdir)/config/macro-archive/xsltproc.m4 \
221         $(top_srcdir)/config/amanda/amplot.m4 \
222         $(top_srcdir)/config/amanda/bsd-security.m4 \
223         $(top_srcdir)/config/amanda/bsdtcp-security.m4 \
224         $(top_srcdir)/config/amanda/bsdudp-security.m4 \
225         $(top_srcdir)/config/amanda/changer.m4 \
226         $(top_srcdir)/config/amanda/components.m4 \
227         $(top_srcdir)/config/amanda/compress.m4 \
228         $(top_srcdir)/config/amanda/config.m4 \
229         $(top_srcdir)/config/amanda/debugging.m4 \
230         $(top_srcdir)/config/amanda/defaults.m4 \
231         $(top_srcdir)/config/amanda/devprefix.m4 \
232         $(top_srcdir)/config/amanda/dirs.m4 \
233         $(top_srcdir)/config/amanda/documentation.m4 \
234         $(top_srcdir)/config/amanda/dumpers.m4 \
235         $(top_srcdir)/config/amanda/dvdrw-device.m4 \
236         $(top_srcdir)/config/amanda/flags.m4 \
237         $(top_srcdir)/config/amanda/flock.m4 \
238         $(top_srcdir)/config/amanda/funcs.m4 \
239         $(top_srcdir)/config/amanda/getfsent.m4 \
240         $(top_srcdir)/config/amanda/i18n.m4 \
241         $(top_srcdir)/config/amanda/ipv6.m4 \
242         $(top_srcdir)/config/amanda/krb5-security.m4 \
243         $(top_srcdir)/config/amanda/lfs.m4 \
244         $(top_srcdir)/config/amanda/libs.m4 \
245         $(top_srcdir)/config/amanda/ndmp-device.m4 \
246         $(top_srcdir)/config/amanda/net.m4 \
247         $(top_srcdir)/config/amanda/progs.m4 \
248         $(top_srcdir)/config/amanda/ps.m4 \
249         $(top_srcdir)/config/amanda/readdir.m4 \
250         $(top_srcdir)/config/amanda/readline.m4 \
251         $(top_srcdir)/config/amanda/rsh-security.m4 \
252         $(top_srcdir)/config/amanda/s3-device.m4 \
253         $(top_srcdir)/config/amanda/shmem.m4 \
254         $(top_srcdir)/config/amanda/socklen_t_equiv.m4 \
255         $(top_srcdir)/config/amanda/ssh-security.m4 \
256         $(top_srcdir)/config/amanda/summary.m4 \
257         $(top_srcdir)/config/amanda/swig.m4 \
258         $(top_srcdir)/config/amanda/syshacks.m4 \
259         $(top_srcdir)/config/amanda/tape.m4 \
260         $(top_srcdir)/config/amanda/types.m4 \
261         $(top_srcdir)/config/amanda/userid.m4 \
262         $(top_srcdir)/config/amanda/version.m4 \
263         $(top_srcdir)/config/gnulib/00gnulib.m4 \
264         $(top_srcdir)/config/gnulib/alloca.m4 \
265         $(top_srcdir)/config/gnulib/arpa_inet_h.m4 \
266         $(top_srcdir)/config/gnulib/base64.m4 \
267         $(top_srcdir)/config/gnulib/btowc.m4 \
268         $(top_srcdir)/config/gnulib/errno_h.m4 \
269         $(top_srcdir)/config/gnulib/extensions.m4 \
270         $(top_srcdir)/config/gnulib/float_h.m4 \
271         $(top_srcdir)/config/gnulib/fseeko.m4 \
272         $(top_srcdir)/config/gnulib/fsusage.m4 \
273         $(top_srcdir)/config/gnulib/ftello.m4 \
274         $(top_srcdir)/config/gnulib/ftruncate.m4 \
275         $(top_srcdir)/config/gnulib/getaddrinfo.m4 \
276         $(top_srcdir)/config/gnulib/getopt.m4 \
277         $(top_srcdir)/config/gnulib/gettimeofday.m4 \
278         $(top_srcdir)/config/gnulib/gnulib-common.m4 \
279         $(top_srcdir)/config/gnulib/gnulib-comp.m4 \
280         $(top_srcdir)/config/gnulib/hostent.m4 \
281         $(top_srcdir)/config/gnulib/include_next.m4 \
282         $(top_srcdir)/config/gnulib/inet_ntop.m4 \
283         $(top_srcdir)/config/gnulib/intmax_t.m4 \
284         $(top_srcdir)/config/gnulib/localcharset.m4 \
285         $(top_srcdir)/config/gnulib/locale-fr.m4 \
286         $(top_srcdir)/config/gnulib/locale-ja.m4 \
287         $(top_srcdir)/config/gnulib/locale-zh.m4 \
288         $(top_srcdir)/config/gnulib/lock.m4 \
289         $(top_srcdir)/config/gnulib/longlong.m4 \
290         $(top_srcdir)/config/gnulib/lseek.m4 \
291         $(top_srcdir)/config/gnulib/lstat.m4 \
292         $(top_srcdir)/config/gnulib/malloc.m4 \
293         $(top_srcdir)/config/gnulib/mbrtowc.m4 \
294         $(top_srcdir)/config/gnulib/mbsinit.m4 \
295         $(top_srcdir)/config/gnulib/mbstate_t.m4 \
296         $(top_srcdir)/config/gnulib/mkdtemp.m4 \
297         $(top_srcdir)/config/gnulib/multiarch.m4 \
298         $(top_srcdir)/config/gnulib/netdb_h.m4 \
299         $(top_srcdir)/config/gnulib/netinet_in_h.m4 \
300         $(top_srcdir)/config/gnulib/onceonly.m4 \
301         $(top_srcdir)/config/gnulib/physmem.m4 \
302         $(top_srcdir)/config/gnulib/printf.m4 \
303         $(top_srcdir)/config/gnulib/regex.m4 \
304         $(top_srcdir)/config/gnulib/safe-read.m4 \
305         $(top_srcdir)/config/gnulib/safe-write.m4 \
306         $(top_srcdir)/config/gnulib/servent.m4 \
307         $(top_srcdir)/config/gnulib/snprintf.m4 \
308         $(top_srcdir)/config/gnulib/socklen.m4 \
309         $(top_srcdir)/config/gnulib/sockpfaf.m4 \
310         $(top_srcdir)/config/gnulib/ssize_t.m4 \
311         $(top_srcdir)/config/gnulib/stdbool.m4 \
312         $(top_srcdir)/config/gnulib/stdint.m4 \
313         $(top_srcdir)/config/gnulib/stdio_h.m4 \
314         $(top_srcdir)/config/gnulib/stdlib_h.m4 \
315         $(top_srcdir)/config/gnulib/sys_socket_h.m4 \
316         $(top_srcdir)/config/gnulib/sys_stat_h.m4 \
317         $(top_srcdir)/config/gnulib/sys_time_h.m4 \
318         $(top_srcdir)/config/gnulib/tempname.m4 \
319         $(top_srcdir)/config/gnulib/threadlib.m4 \
320         $(top_srcdir)/config/gnulib/unistd_h.m4 \
321         $(top_srcdir)/config/gnulib/vasnprintf.m4 \
322         $(top_srcdir)/config/gnulib/visibility.m4 \
323         $(top_srcdir)/config/gnulib/wchar.m4 \
324         $(top_srcdir)/config/gnulib/wcrtomb.m4 \
325         $(top_srcdir)/config/gnulib/wctype.m4 \
326         $(top_srcdir)/config/gnulib/write.m4 \
327         $(top_srcdir)/config/gettext-macros/codeset.m4 \
328         $(top_srcdir)/config/gettext-macros/gettext.m4 \
329         $(top_srcdir)/config/gettext-macros/glibc21.m4 \
330         $(top_srcdir)/config/gettext-macros/iconv.m4 \
331         $(top_srcdir)/config/gettext-macros/inttypes_h.m4 \
332         $(top_srcdir)/config/gettext-macros/lib-ld.m4 \
333         $(top_srcdir)/config/gettext-macros/lib-link.m4 \
334         $(top_srcdir)/config/gettext-macros/lib-prefix.m4 \
335         $(top_srcdir)/config/gettext-macros/nls.m4 \
336         $(top_srcdir)/config/gettext-macros/po.m4 \
337         $(top_srcdir)/config/gettext-macros/progtest.m4 \
338         $(top_srcdir)/config/gettext-macros/size_max.m4 \
339         $(top_srcdir)/config/gettext-macros/stdint_h.m4 \
340         $(top_srcdir)/config/gettext-macros/wchar_t.m4 \
341         $(top_srcdir)/config/gettext-macros/wint_t.m4 \
342         $(top_srcdir)/config/gettext-macros/xsize.m4 \
343         $(top_srcdir)/config/libtool.m4 \
344         $(top_srcdir)/config/ltoptions.m4 \
345         $(top_srcdir)/config/ltsugar.m4 \
346         $(top_srcdir)/config/ltversion.m4 \
347         $(top_srcdir)/config/lt~obsolete.m4 $(top_srcdir)/configure.in
348 am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \
349         $(ACLOCAL_M4)
350 mkinstalldirs = $(SHELL) $(top_srcdir)/config/mkinstalldirs
351 CONFIG_HEADER = $(top_builddir)/config/config.h
352 CONFIG_CLEAN_FILES =
353 CONFIG_CLEAN_VPATH_FILES =
354 am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`;
355 am__vpath_adj = case $$p in \
356     $(srcdir)/*) f=`echo "$$p" | sed "s|^$$srcdirstrip/||"`;; \
357     *) f=$$p;; \
358   esac;
359 am__strip_dir = f=`echo $$p | sed -e 's|^.*/||'`;
360 am__install_max = 40
361 am__nobase_strip_setup = \
362   srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*|]/\\\\&/g'`
363 am__nobase_strip = \
364   for p in $$list; do echo "$$p"; done | sed -e "s|$$srcdirstrip/||"
365 am__nobase_list = $(am__nobase_strip_setup); \
366   for p in $$list; do echo "$$p $$p"; done | \
367   sed "s| $$srcdirstrip/| |;"' / .*\//!s/ .*/ ./; s,\( .*\)/[^/]*$$,\1,' | \
368   $(AWK) 'BEGIN { files["."] = "" } { files[$$2] = files[$$2] " " $$1; \
369     if (++n[$$2] == $(am__install_max)) \
370       { print $$2, files[$$2]; n[$$2] = 0; files[$$2] = "" } } \
371     END { for (dir in files) print dir, files[dir] }'
372 am__base_list = \
373   sed '$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;s/\n/ /g' | \
374   sed '$$!N;$$!N;$$!N;$$!N;s/\n/ /g'
375 am__installdirs = "$(DESTDIR)$(amlibdir)" "$(DESTDIR)$(amlibexecdir)" \
376         "$(DESTDIR)$(sbindir)" "$(DESTDIR)$(amlibexecdir)"
377 LTLIBRARIES = $(amlib_LTLIBRARIES) $(noinst_LTLIBRARIES)
378 libamanda_la_DEPENDENCIES = ../gnulib/libgnu.la
379 am__libamanda_la_SOURCES_DIST = alloc.c amfeatures.c amflock.c \
380         ipc-binary.c amxml.c clock.c columnar.c conffile.c debug.c \
381         dgram.c event.c file.c fileheader.c glib-util.c match.c \
382         packet.c pipespawn.c protocol.c queueing.c semaphore.c \
383         security.c security-util.c simpleprng.c sl.c sockaddr-util.c \
384         stream.c tapelist.c timestamp.c util.c amflock-posix.c \
385         amflock-flock.c amflock-lockf.c amflock-lnlock.c \
386         rsh-security.c ssh-security.c bsd-security.c bsdtcp-security.c \
387         bsdudp-security.c krb5-security.c local-security.c
388 @WANT_AMFLOCK_POSIX_TRUE@am__objects_1 = amflock-posix.lo
389 @WANT_AMFLOCK_FLOCK_TRUE@am__objects_2 = amflock-flock.lo
390 @WANT_AMFLOCK_LOCKF_TRUE@am__objects_3 = amflock-lockf.lo
391 @WANT_AMFLOCK_LNLOCK_TRUE@am__objects_4 = amflock-lnlock.lo
392 @WANT_RSH_SECURITY_TRUE@am__objects_5 = rsh-security.lo
393 @WANT_SSH_SECURITY_TRUE@am__objects_6 = ssh-security.lo
394 @WANT_BSD_SECURITY_TRUE@am__objects_7 = bsd-security.lo
395 @WANT_BSDTCP_SECURITY_TRUE@am__objects_8 = bsdtcp-security.lo
396 @WANT_BSDUDP_SECURITY_TRUE@am__objects_9 = bsdudp-security.lo
397 @WANT_KRB5_SECURITY_TRUE@am__objects_10 = krb5-security.lo
398 am_libamanda_la_OBJECTS = alloc.lo amfeatures.lo amflock.lo \
399         ipc-binary.lo amxml.lo clock.lo columnar.lo conffile.lo \
400         debug.lo dgram.lo event.lo file.lo fileheader.lo glib-util.lo \
401         match.lo packet.lo pipespawn.lo protocol.lo queueing.lo \
402         semaphore.lo security.lo security-util.lo simpleprng.lo sl.lo \
403         sockaddr-util.lo stream.lo tapelist.lo timestamp.lo util.lo \
404         $(am__objects_1) $(am__objects_2) $(am__objects_3) \
405         $(am__objects_4) $(am__objects_5) $(am__objects_6) \
406         $(am__objects_7) $(am__objects_8) $(am__objects_9) \
407         $(am__objects_10) local-security.lo
408 nodist_libamanda_la_OBJECTS = version.lo
409 libamanda_la_OBJECTS = $(am_libamanda_la_OBJECTS) \
410         $(nodist_libamanda_la_OBJECTS)
411 libamanda_la_LINK = $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) \
412         $(LIBTOOLFLAGS) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \
413         $(libamanda_la_LDFLAGS) $(LDFLAGS) -o $@
414 libtestutils_la_LIBADD =
415 am_libtestutils_la_OBJECTS = testutils.lo
416 libtestutils_la_OBJECTS = $(am_libtestutils_la_OBJECTS)
417 am__EXEEXT_1 = file$(EXEEXT) bsdsecurity$(EXEEXT)
418 am__EXEEXT_2 = amflock-test$(EXEEXT) event-test$(EXEEXT) \
419         semaphore-test$(EXEEXT) queueing-test$(EXEEXT) \
420         quoting-test$(EXEEXT) ipc-binary-test$(EXEEXT) \
421         hexencode-test$(EXEEXT) fileheader-test$(EXEEXT) \
422         match-test$(EXEEXT)
423 PROGRAMS = $(noinst_PROGRAMS)
424 am_amflock_test_OBJECTS = amflock-test.$(OBJEXT)
425 amflock_test_OBJECTS = $(am_amflock_test_OBJECTS)
426 amflock_test_DEPENDENCIES = libamanda.la libtestutils.la
427 am_bsdsecurity_OBJECTS = bsd-security.test.$(OBJEXT)
428 bsdsecurity_OBJECTS = $(am_bsdsecurity_OBJECTS)
429 bsdsecurity_DEPENDENCIES = alloc.lo clock.lo debug.lo dgram.lo \
430         event.lo file.lo packet.lo security.lo ssh-security.lo
431 am_event_test_OBJECTS = event-test.$(OBJEXT)
432 event_test_OBJECTS = $(am_event_test_OBJECTS)
433 event_test_DEPENDENCIES = libamanda.la libtestutils.la
434 am_file_OBJECTS = file.test.$(OBJEXT)
435 file_OBJECTS = $(am_file_OBJECTS)
436 file_DEPENDENCIES = $(libamanda_la_LIBADD) \
437         $(STANDARD_COMMON_STUFF_NOT_FILE)
438 am_fileheader_test_OBJECTS = fileheader-test.$(OBJEXT)
439 fileheader_test_OBJECTS = $(am_fileheader_test_OBJECTS)
440 fileheader_test_DEPENDENCIES = libamanda.la libtestutils.la
441 am_genversion_OBJECTS = genversion.$(OBJEXT)
442 genversion_OBJECTS = $(am_genversion_OBJECTS)
443 genversion_DEPENDENCIES = $(libamanda_la_LIBADD) ../gnulib/libgnu.la
444 am_hexencode_test_OBJECTS = hexencode-test.$(OBJEXT)
445 hexencode_test_OBJECTS = $(am_hexencode_test_OBJECTS)
446 hexencode_test_DEPENDENCIES = libamanda.la libtestutils.la
447 am_ipc_binary_test_OBJECTS = ipc-binary-test.$(OBJEXT)
448 ipc_binary_test_OBJECTS = $(am_ipc_binary_test_OBJECTS)
449 ipc_binary_test_DEPENDENCIES = libamanda.la libtestutils.la
450 am_match_test_OBJECTS = match-test.$(OBJEXT)
451 match_test_OBJECTS = $(am_match_test_OBJECTS)
452 match_test_DEPENDENCIES = libamanda.la libtestutils.la
453 am_queueing_test_OBJECTS = queueing-test.$(OBJEXT)
454 queueing_test_OBJECTS = $(am_queueing_test_OBJECTS)
455 queueing_test_DEPENDENCIES = libamanda.la libtestutils.la
456 am_quoting_test_OBJECTS = quoting-test.$(OBJEXT)
457 quoting_test_OBJECTS = $(am_quoting_test_OBJECTS)
458 quoting_test_DEPENDENCIES = libamanda.la libtestutils.la
459 am_semaphore_test_OBJECTS = semaphore-test.$(OBJEXT)
460 semaphore_test_OBJECTS = $(am_semaphore_test_OBJECTS)
461 semaphore_test_DEPENDENCIES = libamanda.la libtestutils.la
462 SCRIPTS = $(amlibexec_SCRIPTS) $(sbin_SCRIPTS)
463 DEFAULT_INCLUDES = -I.@am__isrc@ -I$(top_builddir)/config
464 depcomp = $(SHELL) $(top_srcdir)/config/depcomp
465 am__depfiles_maybe = depfiles
466 am__mv = mv -f
467 COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \
468         $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS)
469 LTCOMPILE = $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) \
470         --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) \
471         $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS)
472 CCLD = $(CC)
473 LINK = $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) \
474         --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) $(AM_LDFLAGS) \
475         $(LDFLAGS) -o $@
476 SOURCES = $(libamanda_la_SOURCES) $(nodist_libamanda_la_SOURCES) \
477         $(libtestutils_la_SOURCES) $(amflock_test_SOURCES) \
478         $(bsdsecurity_SOURCES) $(event_test_SOURCES) $(file_SOURCES) \
479         $(fileheader_test_SOURCES) $(genversion_SOURCES) \
480         $(hexencode_test_SOURCES) $(ipc_binary_test_SOURCES) \
481         $(match_test_SOURCES) $(queueing_test_SOURCES) \
482         $(quoting_test_SOURCES) $(semaphore_test_SOURCES)
483 DIST_SOURCES = $(am__libamanda_la_SOURCES_DIST) \
484         $(libtestutils_la_SOURCES) $(amflock_test_SOURCES) \
485         $(bsdsecurity_SOURCES) $(event_test_SOURCES) $(file_SOURCES) \
486         $(fileheader_test_SOURCES) $(genversion_SOURCES) \
487         $(hexencode_test_SOURCES) $(ipc_binary_test_SOURCES) \
488         $(match_test_SOURCES) $(queueing_test_SOURCES) \
489         $(quoting_test_SOURCES) $(semaphore_test_SOURCES)
490 DATA = $(amlibexec_DATA)
491 HEADERS = $(noinst_HEADERS)
492 ETAGS = etags
493 CTAGS = ctags
494 am__tty_colors = \
495 red=; grn=; lgn=; blu=; std=
496 DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST)
497 ACLOCAL = @ACLOCAL@
498 AIX_BACKUP = @AIX_BACKUP@
499 ALLOCA = @ALLOCA@
500 ALLOCA_H = @ALLOCA_H@
501 AMANDA_COMPONENTS = @AMANDA_COMPONENTS@
502 AMANDA_DBGDIR = @AMANDA_DBGDIR@
503 AMANDA_DEBUG_DAYS = @AMANDA_DEBUG_DAYS@
504 AMANDA_STATIC_LDFLAGS = @AMANDA_STATIC_LDFLAGS@
505 AMANDA_SWIG_PERL_CFLAGS = @AMANDA_SWIG_PERL_CFLAGS@
506 AMANDA_TMPDIR = @AMANDA_TMPDIR@
507 AMANDA_WARNING_CFLAGS = @AMANDA_WARNING_CFLAGS@
508 AMLINT = @AMLINT@
509 AMLINTFLAGS = @AMLINTFLAGS@
510 AMPLOT_CAT_COMPRESS = @AMPLOT_CAT_COMPRESS@
511 AMPLOT_CAT_GZIP = @AMPLOT_CAT_GZIP@
512 AMPLOT_CAT_PACK = @AMPLOT_CAT_PACK@
513 AMPLOT_COMPRESS = @AMPLOT_COMPRESS@
514 AMTAR = @AMTAR@
515 APPLE_UNIVERSAL_BUILD = @APPLE_UNIVERSAL_BUILD@
516 APPLICATION_DIR = @APPLICATION_DIR@
517 AR = @AR@
518 ARPA_INET_H = @ARPA_INET_H@
519 ASSERTIONS = @ASSERTIONS@
520 AUTOCONF = @AUTOCONF@
521 AUTOHEADER = @AUTOHEADER@
522 AUTOMAKE = @AUTOMAKE@
523 AWK = @AWK@
524 BASH = @BASH@
525 BINARY_OWNER = @BINARY_OWNER@
526 BITSIZEOF_PTRDIFF_T = @BITSIZEOF_PTRDIFF_T@
527 BITSIZEOF_SIG_ATOMIC_T = @BITSIZEOF_SIG_ATOMIC_T@
528 BITSIZEOF_SIZE_T = @BITSIZEOF_SIZE_T@
529 BITSIZEOF_WCHAR_T = @BITSIZEOF_WCHAR_T@
530 BITSIZEOF_WINT_T = @BITSIZEOF_WINT_T@
531 BSDTCP_SECURITY = @BSDTCP_SECURITY@
532 BSDUDP_SECURITY = @BSDUDP_SECURITY@
533 BSD_SECURITY = @BSD_SECURITY@
534 CAT = @CAT@
535 CC = @CC@
536 CCDEPMODE = @CCDEPMODE@
537 CFLAGS = @CFLAGS@
538 CFLAG_VISIBILITY = @CFLAG_VISIBILITY@
539 CHECK_USERID = @CHECK_USERID@
540 CHIO = @CHIO@
541 CHS = @CHS@
542 CLIENT_LOGIN = @CLIENT_LOGIN@
543 CLIENT_SCRIPTS_OPT = @CLIENT_SCRIPTS_OPT@
544 COMPRESS = @COMPRESS@
545 COMPRESS_BEST_OPT = @COMPRESS_BEST_OPT@
546 COMPRESS_FAST_OPT = @COMPRESS_FAST_OPT@
547 COMPRESS_PATH = @COMPRESS_PATH@
548 COMPRESS_SUFFIX = @COMPRESS_SUFFIX@
549 CONFIG_CLOBBER_MY_CONFIG = @CONFIG_CLOBBER_MY_CONFIG@
550 CONFIG_DIR = @CONFIG_DIR@
551 CPP = @CPP@
552 CPPFLAGS = @CPPFLAGS@
553 CURL_CONFIG = @CURL_CONFIG@
554 CYGPATH_W = @CYGPATH_W@
555 DD = @DD@
556 DEFAULT_AMANDATES_FILE = @DEFAULT_AMANDATES_FILE@
557 DEFAULT_CONFIG = @DEFAULT_CONFIG@
558 DEFAULT_MAILER = @DEFAULT_MAILER@
559 DEFAULT_SERVER = @DEFAULT_SERVER@
560 DEFAULT_TAPE_DEVICE = @DEFAULT_TAPE_DEVICE@
561 DEFAULT_TAPE_SERVER = @DEFAULT_TAPE_SERVER@
562 DEFS = @DEFS@
563 DEPDIR = @DEPDIR@
564 DOC_BUILD_DATE = @DOC_BUILD_DATE@
565 DSYMUTIL = @DSYMUTIL@
566 DUMP = @DUMP@
567 DUMPBIN = @DUMPBIN@
568 DUMP_RETURNS_1 = @DUMP_RETURNS_1@
569 ECHO_C = @ECHO_C@
570 ECHO_N = @ECHO_N@
571 ECHO_T = @ECHO_T@
572 EGREP = @EGREP@
573 EMULTIHOP_HIDDEN = @EMULTIHOP_HIDDEN@
574 EMULTIHOP_VALUE = @EMULTIHOP_VALUE@
575 ENOLINK_HIDDEN = @ENOLINK_HIDDEN@
576 ENOLINK_VALUE = @ENOLINK_VALUE@
577 EOVERFLOW_HIDDEN = @EOVERFLOW_HIDDEN@
578 EOVERFLOW_VALUE = @EOVERFLOW_VALUE@
579 ERRNO_H = @ERRNO_H@
580 EXAMPLE_TAPEDEV = @EXAMPLE_TAPEDEV@
581 EXEEXT = @EXEEXT@
582 FGREP = @FGREP@
583 FLOAT_H = @FLOAT_H@
584 GETADDRINFO_LIB = @GETADDRINFO_LIB@
585 GETCONF = @GETCONF@
586 GETOPT_H = @GETOPT_H@
587 GETTEXT = @GETTEXT@
588 GIT = @GIT@
589 GLIBC21 = @GLIBC21@
590 GLIB_CFLAGS = @GLIB_CFLAGS@
591 GLIB_GENMARSHAL = @GLIB_GENMARSHAL@
592 GLIB_LIBS = @GLIB_LIBS@
593 GLIB_MKENUMS = @GLIB_MKENUMS@
594 GMSGFMT = @GMSGFMT@
595 GMSGFMT_015 = @GMSGFMT_015@
596 GNULIB_ACCEPT = @GNULIB_ACCEPT@
597 GNULIB_ATOLL = @GNULIB_ATOLL@
598 GNULIB_BIND = @GNULIB_BIND@
599 GNULIB_BTOWC = @GNULIB_BTOWC@
600 GNULIB_CALLOC_POSIX = @GNULIB_CALLOC_POSIX@
601 GNULIB_CHOWN = @GNULIB_CHOWN@
602 GNULIB_CLOSE = @GNULIB_CLOSE@
603 GNULIB_CONNECT = @GNULIB_CONNECT@
604 GNULIB_DPRINTF = @GNULIB_DPRINTF@
605 GNULIB_DUP2 = @GNULIB_DUP2@
606 GNULIB_ENVIRON = @GNULIB_ENVIRON@
607 GNULIB_EUIDACCESS = @GNULIB_EUIDACCESS@
608 GNULIB_FCHDIR = @GNULIB_FCHDIR@
609 GNULIB_FCLOSE = @GNULIB_FCLOSE@
610 GNULIB_FFLUSH = @GNULIB_FFLUSH@
611 GNULIB_FOPEN = @GNULIB_FOPEN@
612 GNULIB_FPRINTF = @GNULIB_FPRINTF@
613 GNULIB_FPRINTF_POSIX = @GNULIB_FPRINTF_POSIX@
614 GNULIB_FPUTC = @GNULIB_FPUTC@
615 GNULIB_FPUTS = @GNULIB_FPUTS@
616 GNULIB_FREOPEN = @GNULIB_FREOPEN@
617 GNULIB_FSEEK = @GNULIB_FSEEK@
618 GNULIB_FSEEKO = @GNULIB_FSEEKO@
619 GNULIB_FSYNC = @GNULIB_FSYNC@
620 GNULIB_FTELL = @GNULIB_FTELL@
621 GNULIB_FTELLO = @GNULIB_FTELLO@
622 GNULIB_FTRUNCATE = @GNULIB_FTRUNCATE@
623 GNULIB_FWRITE = @GNULIB_FWRITE@
624 GNULIB_GETADDRINFO = @GNULIB_GETADDRINFO@
625 GNULIB_GETCWD = @GNULIB_GETCWD@
626 GNULIB_GETDELIM = @GNULIB_GETDELIM@
627 GNULIB_GETDOMAINNAME = @GNULIB_GETDOMAINNAME@
628 GNULIB_GETDTABLESIZE = @GNULIB_GETDTABLESIZE@
629 GNULIB_GETHOSTNAME = @GNULIB_GETHOSTNAME@
630 GNULIB_GETLINE = @GNULIB_GETLINE@
631 GNULIB_GETLOADAVG = @GNULIB_GETLOADAVG@
632 GNULIB_GETLOGIN_R = @GNULIB_GETLOGIN_R@
633 GNULIB_GETPAGESIZE = @GNULIB_GETPAGESIZE@
634 GNULIB_GETPEERNAME = @GNULIB_GETPEERNAME@
635 GNULIB_GETSOCKNAME = @GNULIB_GETSOCKNAME@
636 GNULIB_GETSOCKOPT = @GNULIB_GETSOCKOPT@
637 GNULIB_GETSUBOPT = @GNULIB_GETSUBOPT@
638 GNULIB_GETUSERSHELL = @GNULIB_GETUSERSHELL@
639 GNULIB_INET_NTOP = @GNULIB_INET_NTOP@
640 GNULIB_INET_PTON = @GNULIB_INET_PTON@
641 GNULIB_LCHMOD = @GNULIB_LCHMOD@
642 GNULIB_LCHOWN = @GNULIB_LCHOWN@
643 GNULIB_LINK = @GNULIB_LINK@
644 GNULIB_LISTEN = @GNULIB_LISTEN@
645 GNULIB_LSEEK = @GNULIB_LSEEK@
646 GNULIB_LSTAT = @GNULIB_LSTAT@
647 GNULIB_MALLOC_POSIX = @GNULIB_MALLOC_POSIX@
648 GNULIB_MBRLEN = @GNULIB_MBRLEN@
649 GNULIB_MBRTOWC = @GNULIB_MBRTOWC@
650 GNULIB_MBSINIT = @GNULIB_MBSINIT@
651 GNULIB_MBSNRTOWCS = @GNULIB_MBSNRTOWCS@
652 GNULIB_MBSRTOWCS = @GNULIB_MBSRTOWCS@
653 GNULIB_MKDTEMP = @GNULIB_MKDTEMP@
654 GNULIB_MKSTEMP = @GNULIB_MKSTEMP@
655 GNULIB_OBSTACK_PRINTF = @GNULIB_OBSTACK_PRINTF@
656 GNULIB_OBSTACK_PRINTF_POSIX = @GNULIB_OBSTACK_PRINTF_POSIX@
657 GNULIB_PERROR = @GNULIB_PERROR@
658 GNULIB_PRINTF = @GNULIB_PRINTF@
659 GNULIB_PRINTF_POSIX = @GNULIB_PRINTF_POSIX@
660 GNULIB_PUTC = @GNULIB_PUTC@
661 GNULIB_PUTCHAR = @GNULIB_PUTCHAR@
662 GNULIB_PUTENV = @GNULIB_PUTENV@
663 GNULIB_PUTS = @GNULIB_PUTS@
664 GNULIB_RANDOM_R = @GNULIB_RANDOM_R@
665 GNULIB_READLINK = @GNULIB_READLINK@
666 GNULIB_REALLOC_POSIX = @GNULIB_REALLOC_POSIX@
667 GNULIB_RECV = @GNULIB_RECV@
668 GNULIB_RECVFROM = @GNULIB_RECVFROM@
669 GNULIB_RPMATCH = @GNULIB_RPMATCH@
670 GNULIB_SEND = @GNULIB_SEND@
671 GNULIB_SENDTO = @GNULIB_SENDTO@
672 GNULIB_SETENV = @GNULIB_SETENV@
673 GNULIB_SETSOCKOPT = @GNULIB_SETSOCKOPT@
674 GNULIB_SHUTDOWN = @GNULIB_SHUTDOWN@
675 GNULIB_SLEEP = @GNULIB_SLEEP@
676 GNULIB_SNPRINTF = @GNULIB_SNPRINTF@
677 GNULIB_SOCKET = @GNULIB_SOCKET@
678 GNULIB_SPRINTF_POSIX = @GNULIB_SPRINTF_POSIX@
679 GNULIB_STDIO_H_SIGPIPE = @GNULIB_STDIO_H_SIGPIPE@
680 GNULIB_STRTOD = @GNULIB_STRTOD@
681 GNULIB_STRTOLL = @GNULIB_STRTOLL@
682 GNULIB_STRTOULL = @GNULIB_STRTOULL@
683 GNULIB_UNISTD_H_SIGPIPE = @GNULIB_UNISTD_H_SIGPIPE@
684 GNULIB_UNSETENV = @GNULIB_UNSETENV@
685 GNULIB_VASPRINTF = @GNULIB_VASPRINTF@
686 GNULIB_VDPRINTF = @GNULIB_VDPRINTF@
687 GNULIB_VFPRINTF = @GNULIB_VFPRINTF@
688 GNULIB_VFPRINTF_POSIX = @GNULIB_VFPRINTF_POSIX@
689 GNULIB_VPRINTF = @GNULIB_VPRINTF@
690 GNULIB_VPRINTF_POSIX = @GNULIB_VPRINTF_POSIX@
691 GNULIB_VSNPRINTF = @GNULIB_VSNPRINTF@
692 GNULIB_VSPRINTF_POSIX = @GNULIB_VSPRINTF_POSIX@
693 GNULIB_WCRTOMB = @GNULIB_WCRTOMB@
694 GNULIB_WCSNRTOMBS = @GNULIB_WCSNRTOMBS@
695 GNULIB_WCSRTOMBS = @GNULIB_WCSRTOMBS@
696 GNULIB_WCTOB = @GNULIB_WCTOB@
697 GNULIB_WCWIDTH = @GNULIB_WCWIDTH@
698 GNULIB_WRITE = @GNULIB_WRITE@
699 GNUPLOT = @GNUPLOT@
700 GNUTAR = @GNUTAR@
701 GNUTAR_LISTED_INCREMENTAL_DIR = @GNUTAR_LISTED_INCREMENTAL_DIR@
702 GOBJECT_QUERY = @GOBJECT_QUERY@
703 GREP = @GREP@
704 GZIP = @GZIP@
705 HAVE_ARPA_INET_H = @HAVE_ARPA_INET_H@
706 HAVE_ATOLL = @HAVE_ATOLL@
707 HAVE_BTOWC = @HAVE_BTOWC@
708 HAVE_CALLOC_POSIX = @HAVE_CALLOC_POSIX@
709 HAVE_DECL_ENVIRON = @HAVE_DECL_ENVIRON@
710 HAVE_DECL_FREEADDRINFO = @HAVE_DECL_FREEADDRINFO@
711 HAVE_DECL_GAI_STRERROR = @HAVE_DECL_GAI_STRERROR@
712 HAVE_DECL_GETADDRINFO = @HAVE_DECL_GETADDRINFO@
713 HAVE_DECL_GETDELIM = @HAVE_DECL_GETDELIM@
714 HAVE_DECL_GETLINE = @HAVE_DECL_GETLINE@
715 HAVE_DECL_GETLOADAVG = @HAVE_DECL_GETLOADAVG@
716 HAVE_DECL_GETLOGIN_R = @HAVE_DECL_GETLOGIN_R@
717 HAVE_DECL_GETNAMEINFO = @HAVE_DECL_GETNAMEINFO@
718 HAVE_DECL_INET_NTOP = @HAVE_DECL_INET_NTOP@
719 HAVE_DECL_INET_PTON = @HAVE_DECL_INET_PTON@
720 HAVE_DECL_OBSTACK_PRINTF = @HAVE_DECL_OBSTACK_PRINTF@
721 HAVE_DECL_SNPRINTF = @HAVE_DECL_SNPRINTF@
722 HAVE_DECL_VSNPRINTF = @HAVE_DECL_VSNPRINTF@
723 HAVE_DECL_WCTOB = @HAVE_DECL_WCTOB@
724 HAVE_DECL_WCWIDTH = @HAVE_DECL_WCWIDTH@
725 HAVE_DPRINTF = @HAVE_DPRINTF@
726 HAVE_DUP2 = @HAVE_DUP2@
727 HAVE_EUIDACCESS = @HAVE_EUIDACCESS@
728 HAVE_FSEEKO = @HAVE_FSEEKO@
729 HAVE_FSYNC = @HAVE_FSYNC@
730 HAVE_FTELLO = @HAVE_FTELLO@
731 HAVE_FTRUNCATE = @HAVE_FTRUNCATE@
732 HAVE_GETDOMAINNAME = @HAVE_GETDOMAINNAME@
733 HAVE_GETDTABLESIZE = @HAVE_GETDTABLESIZE@
734 HAVE_GETHOSTNAME = @HAVE_GETHOSTNAME@
735 HAVE_GETPAGESIZE = @HAVE_GETPAGESIZE@
736 HAVE_GETSUBOPT = @HAVE_GETSUBOPT@
737 HAVE_GETUSERSHELL = @HAVE_GETUSERSHELL@
738 HAVE_GZIP = @HAVE_GZIP@
739 HAVE_INTTYPES_H = @HAVE_INTTYPES_H@
740 HAVE_ISWCNTRL = @HAVE_ISWCNTRL@
741 HAVE_LCHMOD = @HAVE_LCHMOD@
742 HAVE_LINK = @HAVE_LINK@
743 HAVE_LONG_LONG_INT = @HAVE_LONG_LONG_INT@
744 HAVE_LSTAT = @HAVE_LSTAT@
745 HAVE_MALLOC_POSIX = @HAVE_MALLOC_POSIX@
746 HAVE_MBRLEN = @HAVE_MBRLEN@
747 HAVE_MBRTOWC = @HAVE_MBRTOWC@
748 HAVE_MBSINIT = @HAVE_MBSINIT@
749 HAVE_MBSNRTOWCS = @HAVE_MBSNRTOWCS@
750 HAVE_MBSRTOWCS = @HAVE_MBSRTOWCS@
751 HAVE_MKDTEMP = @HAVE_MKDTEMP@
752 HAVE_NETDB_H = @HAVE_NETDB_H@
753 HAVE_NETINET_IN_H = @HAVE_NETINET_IN_H@
754 HAVE_OS_H = @HAVE_OS_H@
755 HAVE_RANDOM_H = @HAVE_RANDOM_H@
756 HAVE_RANDOM_R = @HAVE_RANDOM_R@
757 HAVE_READLINK = @HAVE_READLINK@
758 HAVE_REALLOC_POSIX = @HAVE_REALLOC_POSIX@
759 HAVE_RPMATCH = @HAVE_RPMATCH@
760 HAVE_SETENV = @HAVE_SETENV@
761 HAVE_SIGNED_SIG_ATOMIC_T = @HAVE_SIGNED_SIG_ATOMIC_T@
762 HAVE_SIGNED_WCHAR_T = @HAVE_SIGNED_WCHAR_T@
763 HAVE_SIGNED_WINT_T = @HAVE_SIGNED_WINT_T@
764 HAVE_SLEEP = @HAVE_SLEEP@
765 HAVE_STDINT_H = @HAVE_STDINT_H@
766 HAVE_STRTOD = @HAVE_STRTOD@
767 HAVE_STRTOLL = @HAVE_STRTOLL@
768 HAVE_STRTOULL = @HAVE_STRTOULL@
769 HAVE_STRUCT_ADDRINFO = @HAVE_STRUCT_ADDRINFO@
770 HAVE_STRUCT_RANDOM_DATA = @HAVE_STRUCT_RANDOM_DATA@
771 HAVE_STRUCT_TIMEVAL = @HAVE_STRUCT_TIMEVAL@
772 HAVE_SYS_BITYPES_H = @HAVE_SYS_BITYPES_H@
773 HAVE_SYS_INTTYPES_H = @HAVE_SYS_INTTYPES_H@
774 HAVE_SYS_LOADAVG_H = @HAVE_SYS_LOADAVG_H@
775 HAVE_SYS_PARAM_H = @HAVE_SYS_PARAM_H@
776 HAVE_SYS_SOCKET_H = @HAVE_SYS_SOCKET_H@
777 HAVE_SYS_TIME_H = @HAVE_SYS_TIME_H@
778 HAVE_SYS_TYPES_H = @HAVE_SYS_TYPES_H@
779 HAVE_UNISTD_H = @HAVE_UNISTD_H@
780 HAVE_UNSETENV = @HAVE_UNSETENV@
781 HAVE_UNSIGNED_LONG_LONG_INT = @HAVE_UNSIGNED_LONG_LONG_INT@
782 HAVE_VASPRINTF = @HAVE_VASPRINTF@
783 HAVE_VDPRINTF = @HAVE_VDPRINTF@
784 HAVE_VISIBILITY = @HAVE_VISIBILITY@
785 HAVE_WCHAR_H = @HAVE_WCHAR_H@
786 HAVE_WCRTOMB = @HAVE_WCRTOMB@
787 HAVE_WCSNRTOMBS = @HAVE_WCSNRTOMBS@
788 HAVE_WCSRTOMBS = @HAVE_WCSRTOMBS@
789 HAVE_WCTYPE_H = @HAVE_WCTYPE_H@
790 HAVE_WINSOCK2_H = @HAVE_WINSOCK2_H@
791 HAVE_WINT_T = @HAVE_WINT_T@
792 HAVE_WS2TCPIP_H = @HAVE_WS2TCPIP_H@
793 HAVE__BOOL = @HAVE__BOOL@
794 HOSTENT_LIB = @HOSTENT_LIB@
795 INCLUDE_NEXT = @INCLUDE_NEXT@
796 INCLUDE_NEXT_AS_FIRST_DIRECTIVE = @INCLUDE_NEXT_AS_FIRST_DIRECTIVE@
797 INSTALL = @INSTALL@
798 INSTALL_DATA = @INSTALL_DATA@
799 INSTALL_PROGRAM = @INSTALL_PROGRAM@
800 INSTALL_SCRIPT = @INSTALL_SCRIPT@
801 INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@
802 INTLLIBS = @INTLLIBS@
803 INTL_MACOSX_LIBS = @INTL_MACOSX_LIBS@
804 KRB5_SECURITY = @KRB5_SECURITY@
805 LD = @LD@
806 LDFLAGS = @LDFLAGS@
807 LEX = @LEX@
808 LEXLIB = @LEXLIB@
809 LEX_OUTPUT_ROOT = @LEX_OUTPUT_ROOT@
810 LIBCURL = @LIBCURL@
811 LIBCURL_CPPFLAGS = @LIBCURL_CPPFLAGS@
812 LIBICONV = @LIBICONV@
813 LIBINTL = @LIBINTL@
814 LIBMULTITHREAD = @LIBMULTITHREAD@
815 LIBOBJS = @LIBOBJS@
816 LIBPTH = @LIBPTH@
817 LIBS = @LIBS@
818 LIBTHREAD = @LIBTHREAD@
819 LIBTOOL = @LIBTOOL@
820 LIBTOOL_DEPS = @LIBTOOL_DEPS@
821 LIPO = @LIPO@
822 LN_S = @LN_S@
823 LOCALCHARSET_TESTS_ENVIRONMENT = @LOCALCHARSET_TESTS_ENVIRONMENT@
824 LOCALE_FR = @LOCALE_FR@
825 LOCALE_FR_UTF8 = @LOCALE_FR_UTF8@
826 LOCALE_JA = @LOCALE_JA@
827 LOCALE_ZH_CN = @LOCALE_ZH_CN@
828 LOCKING = @LOCKING@
829 LOW_TCPPORTRANGE = @LOW_TCPPORTRANGE@
830 LPR = @LPR@
831 LPRFLAG = @LPRFLAG@
832 LTALLOCA = @LTALLOCA@
833 LTLIBICONV = @LTLIBICONV@
834 LTLIBINTL = @LTLIBINTL@
835 LTLIBMULTITHREAD = @LTLIBMULTITHREAD@
836 LTLIBOBJS = @LTLIBOBJS@
837 LTLIBPTH = @LTLIBPTH@
838 LTLIBTHREAD = @LTLIBTHREAD@
839 MAILER = @MAILER@
840 MAKEINFO = @MAKEINFO@
841 MCUTIL = @MCUTIL@
842 MKDIR_P = @MKDIR_P@
843 MSGFMT = @MSGFMT@
844 MSGFMT_015 = @MSGFMT_015@
845 MSGMERGE = @MSGMERGE@
846 MT = @MT@
847 MTX = @MTX@
848 MT_FILE_FLAG = @MT_FILE_FLAG@
849 NETDB_H = @NETDB_H@
850 NETINET_IN_H = @NETINET_IN_H@
851 NEXT_ARPA_INET_H = @NEXT_ARPA_INET_H@
852 NEXT_ERRNO_H = @NEXT_ERRNO_H@
853 NEXT_FLOAT_H = @NEXT_FLOAT_H@
854 NEXT_NETDB_H = @NEXT_NETDB_H@
855 NEXT_NETINET_IN_H = @NEXT_NETINET_IN_H@
856 NEXT_STDINT_H = @NEXT_STDINT_H@
857 NEXT_STDIO_H = @NEXT_STDIO_H@
858 NEXT_STDLIB_H = @NEXT_STDLIB_H@
859 NEXT_SYS_SOCKET_H = @NEXT_SYS_SOCKET_H@
860 NEXT_SYS_STAT_H = @NEXT_SYS_STAT_H@
861 NEXT_SYS_TIME_H = @NEXT_SYS_TIME_H@
862 NEXT_UNISTD_H = @NEXT_UNISTD_H@
863 NEXT_WCHAR_H = @NEXT_WCHAR_H@
864 NEXT_WCTYPE_H = @NEXT_WCTYPE_H@
865 NM = @NM@
866 NMEDIT = @NMEDIT@
867 OBJEXT = @OBJEXT@
868 OTOOL = @OTOOL@
869 OTOOL64 = @OTOOL64@
870 PACKAGE = @PACKAGE@
871 PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@
872 PACKAGE_NAME = @PACKAGE_NAME@
873 PACKAGE_STRING = @PACKAGE_STRING@
874 PACKAGE_TARNAME = @PACKAGE_TARNAME@
875 PACKAGE_VERSION = @PACKAGE_VERSION@
876 PATH_SEPARATOR = @PATH_SEPARATOR@
877 PCAT = @PCAT@
878 PERL = @PERL@
879 PERLEXTLIBS = @PERLEXTLIBS@
880 PERL_INC = @PERL_INC@
881 PKG_CONFIG = @PKG_CONFIG@
882 POSUB = @POSUB@
883 PRAGMA_SYSTEM_HEADER = @PRAGMA_SYSTEM_HEADER@
884 PS = @PS@
885 PS_ARGUMENT = @PS_ARGUMENT@
886 PS_ARGUMENT_ARGS = @PS_ARGUMENT_ARGS@
887 PTRDIFF_T_SUFFIX = @PTRDIFF_T_SUFFIX@
888 RANLIB = @RANLIB@
889 READLINE_LIBS = @READLINE_LIBS@
890 REPLACE_BTOWC = @REPLACE_BTOWC@
891 REPLACE_CHOWN = @REPLACE_CHOWN@
892 REPLACE_CLOSE = @REPLACE_CLOSE@
893 REPLACE_DPRINTF = @REPLACE_DPRINTF@
894 REPLACE_FCHDIR = @REPLACE_FCHDIR@
895 REPLACE_FCLOSE = @REPLACE_FCLOSE@
896 REPLACE_FFLUSH = @REPLACE_FFLUSH@
897 REPLACE_FOPEN = @REPLACE_FOPEN@
898 REPLACE_FPRINTF = @REPLACE_FPRINTF@
899 REPLACE_FREOPEN = @REPLACE_FREOPEN@
900 REPLACE_FSEEK = @REPLACE_FSEEK@
901 REPLACE_FSEEKO = @REPLACE_FSEEKO@
902 REPLACE_FTELL = @REPLACE_FTELL@
903 REPLACE_FTELLO = @REPLACE_FTELLO@
904 REPLACE_GETCWD = @REPLACE_GETCWD@
905 REPLACE_GETLINE = @REPLACE_GETLINE@
906 REPLACE_GETPAGESIZE = @REPLACE_GETPAGESIZE@
907 REPLACE_GETTIMEOFDAY = @REPLACE_GETTIMEOFDAY@
908 REPLACE_ISWCNTRL = @REPLACE_ISWCNTRL@
909 REPLACE_LCHOWN = @REPLACE_LCHOWN@
910 REPLACE_LSEEK = @REPLACE_LSEEK@
911 REPLACE_LSTAT = @REPLACE_LSTAT@
912 REPLACE_MBRLEN = @REPLACE_MBRLEN@
913 REPLACE_MBRTOWC = @REPLACE_MBRTOWC@
914 REPLACE_MBSINIT = @REPLACE_MBSINIT@
915 REPLACE_MBSNRTOWCS = @REPLACE_MBSNRTOWCS@
916 REPLACE_MBSRTOWCS = @REPLACE_MBSRTOWCS@
917 REPLACE_MBSTATE_T = @REPLACE_MBSTATE_T@
918 REPLACE_MKDIR = @REPLACE_MKDIR@
919 REPLACE_MKSTEMP = @REPLACE_MKSTEMP@
920 REPLACE_OBSTACK_PRINTF = @REPLACE_OBSTACK_PRINTF@
921 REPLACE_PERROR = @REPLACE_PERROR@
922 REPLACE_PRINTF = @REPLACE_PRINTF@
923 REPLACE_PUTENV = @REPLACE_PUTENV@
924 REPLACE_SNPRINTF = @REPLACE_SNPRINTF@
925 REPLACE_SPRINTF = @REPLACE_SPRINTF@
926 REPLACE_STDIO_WRITE_FUNCS = @REPLACE_STDIO_WRITE_FUNCS@
927 REPLACE_STRTOD = @REPLACE_STRTOD@
928 REPLACE_VASPRINTF = @REPLACE_VASPRINTF@
929 REPLACE_VDPRINTF = @REPLACE_VDPRINTF@
930 REPLACE_VFPRINTF = @REPLACE_VFPRINTF@
931 REPLACE_VPRINTF = @REPLACE_VPRINTF@
932 REPLACE_VSNPRINTF = @REPLACE_VSNPRINTF@
933 REPLACE_VSPRINTF = @REPLACE_VSPRINTF@
934 REPLACE_WCRTOMB = @REPLACE_WCRTOMB@
935 REPLACE_WCSRTOMBS = @REPLACE_WCSRTOMBS@
936 REPLACE_WCTOB = @REPLACE_WCTOB@
937 REPLACE_WCWIDTH = @REPLACE_WCWIDTH@
938 REPLACE_WRITE = @REPLACE_WRITE@
939 RESTORE = @RESTORE@
940 RPCGEN = @RPCGEN@
941 RSH_SECURITY = @RSH_SECURITY@
942 SAMBA_CLIENT = @SAMBA_CLIENT@
943 SED = @SED@
944 SERVENT_LIB = @SERVENT_LIB@
945 SERVICE_SUFFIX = @SERVICE_SUFFIX@
946 SETUID_GROUP = @SETUID_GROUP@
947 SET_MAKE = @SET_MAKE@
948 SHELL = @SHELL@
949 SIG_ATOMIC_T_SUFFIX = @SIG_ATOMIC_T_SUFFIX@
950 SIZE_T_SUFFIX = @SIZE_T_SUFFIX@
951 SNAPSHOT_STAMP = @SNAPSHOT_STAMP@
952 SORT = @SORT@
953 SSH = @SSH@
954 SSH_SECURITY = @SSH_SECURITY@
955 STAR = @STAR@
956 STDBOOL_H = @STDBOOL_H@
957 STDINT_H = @STDINT_H@
958 STRIP = @STRIP@
959 SVN = @SVN@
960 SWIG = @SWIG@
961 SWIG_LIB = @SWIG_LIB@
962 SYS_SOCKET_H = @SYS_SOCKET_H@
963 SYS_STAT_H = @SYS_STAT_H@
964 SYS_TIME_H = @SYS_TIME_H@
965 TCPPORTRANGE = @TCPPORTRANGE@
966 UDPPORTRANGE = @UDPPORTRANGE@
967 UNCOMPRESS_OPT = @UNCOMPRESS_OPT@
968 UNCOMPRESS_PATH = @UNCOMPRESS_PATH@
969 UNISTD_H_HAVE_WINSOCK2_H = @UNISTD_H_HAVE_WINSOCK2_H@
970 USE_AMANDAHOSTS = @USE_AMANDAHOSTS@
971 USE_NLS = @USE_NLS@
972 USE_RUNDUMP = @USE_RUNDUMP@
973 VDUMP = @VDUMP@
974 VERSION = @VERSION@
975 VERSION_COMMENT = @VERSION_COMMENT@
976 VERSION_MAJOR = @VERSION_MAJOR@
977 VERSION_MINOR = @VERSION_MINOR@
978 VERSION_PATCH = @VERSION_PATCH@
979 VOID_UNSETENV = @VOID_UNSETENV@
980 VRESTORE = @VRESTORE@
981 VXDUMP = @VXDUMP@
982 VXRESTORE = @VXRESTORE@
983 WCHAR_H = @WCHAR_H@
984 WCHAR_T_SUFFIX = @WCHAR_T_SUFFIX@
985 WCTYPE_H = @WCTYPE_H@
986 WINT_T_SUFFIX = @WINT_T_SUFFIX@
987 XFSDUMP = @XFSDUMP@
988 XFSRESTORE = @XFSRESTORE@
989 XGETTEXT = @XGETTEXT@
990 XGETTEXT_015 = @XGETTEXT_015@
991 XSLREL = @XSLREL@
992 XSLTPROC = @XSLTPROC@
993 XSLTPROC_FLAGS = @XSLTPROC_FLAGS@
994 YACC = @YACC@
995 YFLAGS = @YFLAGS@
996 _libcurl_config = @_libcurl_config@
997 abs_builddir = @abs_builddir@
998 abs_srcdir = @abs_srcdir@
999 abs_top_builddir = @abs_top_builddir@
1000 abs_top_srcdir = @abs_top_srcdir@
1001 ac_ct_CC = @ac_ct_CC@
1002 ac_ct_DUMPBIN = @ac_ct_DUMPBIN@
1003 am__include = @am__include@
1004 am__leading_dot = @am__leading_dot@
1005 am__quote = @am__quote@
1006 am__tar = @am__tar@
1007 am__untar = @am__untar@
1008 amdatadir = @amdatadir@
1009 amincludedir = @amincludedir@
1010 amlibdir = @amlibdir@
1011 amlibexecdir = @amlibexecdir@
1012 amperldir = @amperldir@
1013 bindir = @bindir@
1014 build = @build@
1015 build_alias = @build_alias@
1016 build_cpu = @build_cpu@
1017 build_os = @build_os@
1018 build_vendor = @build_vendor@
1019 builddir = @builddir@
1020 datadir = @datadir@
1021 datarootdir = @datarootdir@
1022 docdir = @docdir@
1023 dvidir = @dvidir@
1024 exec_prefix = @exec_prefix@
1025 gl_LIBOBJS = @gl_LIBOBJS@
1026 gl_LTLIBOBJS = @gl_LTLIBOBJS@
1027 gltests_LIBOBJS = @gltests_LIBOBJS@
1028 gltests_LTLIBOBJS = @gltests_LTLIBOBJS@
1029 host = @host@
1030 host_alias = @host_alias@
1031 host_cpu = @host_cpu@
1032 host_os = @host_os@
1033 host_vendor = @host_vendor@
1034 htmldir = @htmldir@
1035 includedir = @includedir@
1036 infodir = @infodir@
1037 install_sh = @install_sh@
1038 libdir = @libdir@
1039 libexecdir = @libexecdir@
1040 localedir = @localedir@
1041 localstatedir = @localstatedir@
1042 lt_ECHO = @lt_ECHO@
1043 mandir = @mandir@
1044 mkdir_p = @mkdir_p@
1045 oldincludedir = @oldincludedir@
1046 pdfdir = @pdfdir@
1047 prefix = @prefix@
1048 program_transform_name = @program_transform_name@
1049 psdir = @psdir@
1050 sbindir = @sbindir@
1051 sharedstatedir = @sharedstatedir@
1052 srcdir = @srcdir@
1053 sysconfdir = @sysconfdir@
1054 target_alias = @target_alias@
1055 top_build_prefix = @top_build_prefix@
1056 top_builddir = @top_builddir@
1057 top_srcdir = @top_srcdir@
1058 SUFFIXES = 
1059 EXTRA_DIST = amanda-sh-lib.sh.in
1060 BUILT_SOURCES = genversion.h version.c
1061 MOSTLYCLEANFILES = 
1062
1063 # config.status leaves config.log files around
1064 CLEANFILES = config.log *.test.c
1065
1066 # and we'll need to clean up our generated files for distclean
1067 DISTCLEANFILES = $(SCRIPTS_SHELL) $(SCRIPTS_PERL) $(SCRIPTS_AWK) \
1068         $(SCRIPTS_INCLUDE) $(am__append_1) version.c genversion \
1069         genversion.h
1070 MAINTAINERCLEANFILES = svn-info.h
1071
1072 # sed expression to strip leading directories from a filename; this converts e.g.,
1073 # src/foo/bar.so to bar.so.
1074 strip_leading_dirs = s|^.*/||
1075 @WANT_INSTALLPERMS_FALSE@do_file = pa="$$dest"/`echo "$$cmd"|sed '$(strip_leading_dirs)'|sed '$(transform)'`; \
1076 @WANT_INSTALLPERMS_FALSE@    echo "installperm \"$$chown\" \"$$chmod\" \"$$pa\"" >> "$(installperms_sh)"
1077
1078
1079 # define a snippet of the scripts below to either perform a chown/chmod operation,
1080 # or record that operation in the logfile.  On entry to the snippet, $$dest is the
1081 # destination directory, $$cmd is the srcdir-relative pathname of the target file,
1082 # $$chown is the ownership, and $$chmod is the permission pattern.
1083 @WANT_INSTALLPERMS_TRUE@do_file = pa="$(DESTDIR)$$dest"/`echo "$$cmd"|sed '$(strip_leading_dirs)'|sed '$(transform)'`; \
1084 @WANT_INSTALLPERMS_TRUE@    if test -n "$$chown"; then \
1085 @WANT_INSTALLPERMS_TRUE@        echo chown "$$chown" "$$pa"; \
1086 @WANT_INSTALLPERMS_TRUE@        chown "$$chown" "$$pa" || exit 1; \
1087 @WANT_INSTALLPERMS_TRUE@    fi; \
1088 @WANT_INSTALLPERMS_TRUE@    if test -n "$$chmod"; then \
1089 @WANT_INSTALLPERMS_TRUE@        echo chmod "$$chmod" "$$pa"; \
1090 @WANT_INSTALLPERMS_TRUE@        chmod "$$chmod" "$$pa" || exit 1; \
1091 @WANT_INSTALLPERMS_TRUE@    fi 
1092
1093 @WANT_INSTALLPERMS_FALSE@installperms_sh = "$(top_builddir)/installperms.sh"
1094 INCLUDES = -I$(top_srcdir)/gnulib   
1095 AM_CFLAGS = $(AMANDA_WARNING_CFLAGS)
1096 AM_LDFLAGS = $(AMANDA_STATIC_LDFLAGS)
1097 amlib_LTLIBRARIES = libamanda.la
1098 LINT = $(AMLINT)
1099 LINTFLAGS = $(AMLINTFLAGS)
1100 libamanda_la_SOURCES = alloc.c amfeatures.c amflock.c ipc-binary.c \
1101         amxml.c clock.c columnar.c conffile.c debug.c dgram.c event.c \
1102         file.c fileheader.c glib-util.c match.c packet.c pipespawn.c \
1103         protocol.c queueing.c semaphore.c security.c security-util.c \
1104         simpleprng.c sl.c sockaddr-util.c stream.c tapelist.c \
1105         timestamp.c util.c $(am__append_2) $(am__append_3) \
1106         $(am__append_4) $(am__append_5) $(am__append_6) \
1107         $(am__append_7) $(am__append_8) $(am__append_9) \
1108         $(am__append_10) $(am__append_11) local-security.c
1109 # version.c is generated; see below
1110 nodist_libamanda_la_SOURCES = version.c
1111 libamanda_la_LIBADD = \
1112         ../gnulib/libgnu.la
1113
1114 libamanda_la_LDFLAGS = -release $(VERSION)
1115 noinst_HEADERS = \
1116         amanda.h                \
1117         amfeatures.h            \
1118         ipc-binary.h            \
1119         amxml.h                 \
1120         arglist.h               \
1121         clock.h                 \
1122         columnar.h              \
1123         directtcp.h             \
1124         amflock.h               \
1125         conffile.h              \
1126         debug.h                 \
1127         dgram.h                 \
1128         event.h                 \
1129         file.h                  \
1130         fileheader.h            \
1131         glib-util.h             \
1132         match.h                 \
1133         packet.h                \
1134         pipespawn.h             \
1135         protocol.h              \
1136         queueing.h              \
1137         semaphore.h             \
1138         security.h              \
1139         security-util.h         \
1140         simpleprng.h            \
1141         sl.h                    \
1142         sockaddr-util.h         \
1143         stream.h                \
1144         tapelist.h              \
1145         timestamp.h             \
1146         util.h                  \
1147         version.h
1148
1149
1150 # Version-building steps:
1151 #
1152 # 1. configure builds svn-info.h, if svn info is available; this
1153 #    file is included in distribution tarballs
1154 # 2. Makefile creates genversion.h with build-time information
1155 # 3. Makefile builds genversion
1156 # 4. Makefile runs genversion to create version.c
1157 # 5. version.c is compiled into libamanda normally
1158 genversion_SOURCES = genversion.c svn-info.h
1159 genversion_LDADD = $(libamanda_la_LIBADD)       \
1160         ../gnulib/libgnu.la
1161
1162
1163 # these are used for testing only:
1164 TEST_PROGS = file bsdsecurity
1165
1166 # used for testing only
1167 STANDARD_COMMON_STUFF_NOT_FILE = \
1168         alloc.lo \
1169         clock.lo \
1170         conffile.lo \
1171         debug.lo \
1172         glib-util.lo \
1173         util.lo \
1174         match.lo \
1175         sl.lo \
1176         sockaddr-util.lo \
1177         timestamp.lo
1178
1179 STANDARD_COMMON_STUFF = \
1180         $(STANDARD_COMMON_STUFF_NOT_FILE) \
1181         file.lo
1182
1183 file_SOURCES = file.test.c
1184 file_LDADD = $(libamanda_la_LIBADD) $(STANDARD_COMMON_STUFF_NOT_FILE)
1185 bsdsecurity_SOURCES = bsd-security.test.c
1186 bsdsecurity_LDADD = $(libamanda_a_LIBADD) \
1187                     alloc.lo \
1188                     clock.lo \
1189                     debug.lo \
1190                     dgram.lo \
1191                     event.lo \
1192                     file.lo \
1193                     packet.lo \
1194                     security.lo \
1195                     ssh-security.lo
1196
1197
1198 # libtestutils.la
1199 #
1200 # Convenience library (never installed) for 'make check'-based tests.
1201 noinst_LTLIBRARIES = libtestutils.la
1202 libtestutils_la_SOURCES = \
1203         testutils.c \
1204         testutils.h
1205
1206 amflock_test_SOURCES = amflock-test.c
1207 amflock_test_LDADD = libamanda.la libtestutils.la
1208 event_test_SOURCES = event-test.c
1209 event_test_LDADD = libamanda.la libtestutils.la
1210 semaphore_test_SOURCES = semaphore-test.c
1211 semaphore_test_LDADD = libamanda.la libtestutils.la
1212 queueing_test_SOURCES = queueing-test.c
1213 queueing_test_LDADD = libamanda.la libtestutils.la
1214 quoting_test_SOURCES = quoting-test.c
1215 quoting_test_LDADD = libamanda.la libtestutils.la
1216 ipc_binary_test_SOURCES = ipc-binary-test.c
1217 ipc_binary_test_LDADD = libamanda.la libtestutils.la
1218 hexencode_test_SOURCES = hexencode-test.c
1219 hexencode_test_LDADD = libamanda.la libtestutils.la
1220 fileheader_test_SOURCES = fileheader-test.c
1221 fileheader_test_LDADD = libamanda.la libtestutils.la
1222 match_test_SOURCES = match-test.c
1223 match_test_LDADD = libamanda.la libtestutils.la
1224
1225 # scripts
1226
1227 # divide scripts up both by language and destination directory
1228 sbin_SCRIPTS_PERL = \
1229             amgpgcrypt \
1230             amcryptsimple \
1231             amgetconf
1232
1233 amlibexec_SCRIPTS_PERL = 
1234 sbin_SCRIPTS_SHELL = \
1235             amcrypt \
1236             amaespipe \
1237             amcrypt-ossl \
1238             amcrypt-ossl-asym
1239
1240 amlibexec_SCRIPTS_SHELL = 
1241 SCRIPTS_INCLUDE = \
1242             amanda-sh-lib.sh
1243
1244 SCRIPTS_PERL = $(sbin_SCRIPTS_PERL) $(amlibexec_SCRIPTS_PERL)
1245 SCRIPTS_SHELL = $(sbin_SCRIPTS_SHELL) $(amlibexec_SCRIPTS_SHELL)
1246 amlibexec_DATA = $(SCRIPTS_INCLUDE)
1247 amlibexec_SCRIPTS = $(amlibexec_SCRIPTS_PERL) $(amlibexec_SCRIPTS_SHELL)
1248 sbin_SCRIPTS = $(sbin_SCRIPTS_PERL) $(sbin_SCRIPTS_SHELL)
1249
1250 # installation
1251 INSTALLPERMS_data = dest=$(sbindir) chown=amanda $(sbin_SCRIPTS) \
1252                     dest=$(amlibexecdir) chown=amanda $(amlibexec_SCRIPTS) $(amlibexec_DATA)
1253
1254 all: $(BUILT_SOURCES)
1255         $(MAKE) $(AM_MAKEFLAGS) all-am
1256
1257 .SUFFIXES:
1258 .SUFFIXES: .c .lo .o .obj
1259 $(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)
1260         @for dep in $?; do \
1261           case '$(am__configure_deps)' in \
1262             *$$dep*) \
1263               ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \
1264                 && { if test -f $@; then exit 0; else break; fi; }; \
1265               exit 1;; \
1266           esac; \
1267         done; \
1268         echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu common-src/Makefile'; \
1269         $(am__cd) $(top_srcdir) && \
1270           $(AUTOMAKE) --gnu common-src/Makefile
1271 .PRECIOUS: Makefile
1272 Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
1273         @case '$?' in \
1274           *config.status*) \
1275             cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \
1276           *) \
1277             echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \
1278             cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \
1279         esac;
1280
1281 $(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES)
1282         cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
1283
1284 $(top_srcdir)/configure:  $(am__configure_deps)
1285         cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
1286 $(ACLOCAL_M4):  $(am__aclocal_m4_deps)
1287         cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
1288 $(am__aclocal_m4_deps):
1289 install-amlibLTLIBRARIES: $(amlib_LTLIBRARIES)
1290         @$(NORMAL_INSTALL)
1291         test -z "$(amlibdir)" || $(MKDIR_P) "$(DESTDIR)$(amlibdir)"
1292         @list='$(amlib_LTLIBRARIES)'; test -n "$(amlibdir)" || list=; \
1293         list2=; for p in $$list; do \
1294           if test -f $$p; then \
1295             list2="$$list2 $$p"; \
1296           else :; fi; \
1297         done; \
1298         test -z "$$list2" || { \
1299           echo " $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=install $(INSTALL) $(INSTALL_STRIP_FLAG) $$list2 '$(DESTDIR)$(amlibdir)'"; \
1300           $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=install $(INSTALL) $(INSTALL_STRIP_FLAG) $$list2 "$(DESTDIR)$(amlibdir)"; \
1301         }
1302
1303 uninstall-amlibLTLIBRARIES:
1304         @$(NORMAL_UNINSTALL)
1305         @list='$(amlib_LTLIBRARIES)'; test -n "$(amlibdir)" || list=; \
1306         for p in $$list; do \
1307           $(am__strip_dir) \
1308           echo " $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=uninstall rm -f '$(DESTDIR)$(amlibdir)/$$f'"; \
1309           $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=uninstall rm -f "$(DESTDIR)$(amlibdir)/$$f"; \
1310         done
1311
1312 clean-amlibLTLIBRARIES:
1313         -test -z "$(amlib_LTLIBRARIES)" || rm -f $(amlib_LTLIBRARIES)
1314         @list='$(amlib_LTLIBRARIES)'; for p in $$list; do \
1315           dir="`echo $$p | sed -e 's|/[^/]*$$||'`"; \
1316           test "$$dir" != "$$p" || dir=.; \
1317           echo "rm -f \"$${dir}/so_locations\""; \
1318           rm -f "$${dir}/so_locations"; \
1319         done
1320
1321 clean-noinstLTLIBRARIES:
1322         -test -z "$(noinst_LTLIBRARIES)" || rm -f $(noinst_LTLIBRARIES)
1323         @list='$(noinst_LTLIBRARIES)'; for p in $$list; do \
1324           dir="`echo $$p | sed -e 's|/[^/]*$$||'`"; \
1325           test "$$dir" != "$$p" || dir=.; \
1326           echo "rm -f \"$${dir}/so_locations\""; \
1327           rm -f "$${dir}/so_locations"; \
1328         done
1329 libamanda.la: $(libamanda_la_OBJECTS) $(libamanda_la_DEPENDENCIES) 
1330         $(libamanda_la_LINK) -rpath $(amlibdir) $(libamanda_la_OBJECTS) $(libamanda_la_LIBADD) $(LIBS)
1331 libtestutils.la: $(libtestutils_la_OBJECTS) $(libtestutils_la_DEPENDENCIES) 
1332         $(LINK)  $(libtestutils_la_OBJECTS) $(libtestutils_la_LIBADD) $(LIBS)
1333
1334 clean-noinstPROGRAMS:
1335         @list='$(noinst_PROGRAMS)'; test -n "$$list" || exit 0; \
1336         echo " rm -f" $$list; \
1337         rm -f $$list || exit $$?; \
1338         test -n "$(EXEEXT)" || exit 0; \
1339         list=`for p in $$list; do echo "$$p"; done | sed 's/$(EXEEXT)$$//'`; \
1340         echo " rm -f" $$list; \
1341         rm -f $$list
1342 amflock-test$(EXEEXT): $(amflock_test_OBJECTS) $(amflock_test_DEPENDENCIES) 
1343         @rm -f amflock-test$(EXEEXT)
1344         $(LINK) $(amflock_test_OBJECTS) $(amflock_test_LDADD) $(LIBS)
1345 bsdsecurity$(EXEEXT): $(bsdsecurity_OBJECTS) $(bsdsecurity_DEPENDENCIES) 
1346         @rm -f bsdsecurity$(EXEEXT)
1347         $(LINK) $(bsdsecurity_OBJECTS) $(bsdsecurity_LDADD) $(LIBS)
1348 event-test$(EXEEXT): $(event_test_OBJECTS) $(event_test_DEPENDENCIES) 
1349         @rm -f event-test$(EXEEXT)
1350         $(LINK) $(event_test_OBJECTS) $(event_test_LDADD) $(LIBS)
1351 file$(EXEEXT): $(file_OBJECTS) $(file_DEPENDENCIES) 
1352         @rm -f file$(EXEEXT)
1353         $(LINK) $(file_OBJECTS) $(file_LDADD) $(LIBS)
1354 fileheader-test$(EXEEXT): $(fileheader_test_OBJECTS) $(fileheader_test_DEPENDENCIES) 
1355         @rm -f fileheader-test$(EXEEXT)
1356         $(LINK) $(fileheader_test_OBJECTS) $(fileheader_test_LDADD) $(LIBS)
1357 genversion$(EXEEXT): $(genversion_OBJECTS) $(genversion_DEPENDENCIES) 
1358         @rm -f genversion$(EXEEXT)
1359         $(LINK) $(genversion_OBJECTS) $(genversion_LDADD) $(LIBS)
1360 hexencode-test$(EXEEXT): $(hexencode_test_OBJECTS) $(hexencode_test_DEPENDENCIES) 
1361         @rm -f hexencode-test$(EXEEXT)
1362         $(LINK) $(hexencode_test_OBJECTS) $(hexencode_test_LDADD) $(LIBS)
1363 ipc-binary-test$(EXEEXT): $(ipc_binary_test_OBJECTS) $(ipc_binary_test_DEPENDENCIES) 
1364         @rm -f ipc-binary-test$(EXEEXT)
1365         $(LINK) $(ipc_binary_test_OBJECTS) $(ipc_binary_test_LDADD) $(LIBS)
1366 match-test$(EXEEXT): $(match_test_OBJECTS) $(match_test_DEPENDENCIES) 
1367         @rm -f match-test$(EXEEXT)
1368         $(LINK) $(match_test_OBJECTS) $(match_test_LDADD) $(LIBS)
1369 queueing-test$(EXEEXT): $(queueing_test_OBJECTS) $(queueing_test_DEPENDENCIES) 
1370         @rm -f queueing-test$(EXEEXT)
1371         $(LINK) $(queueing_test_OBJECTS) $(queueing_test_LDADD) $(LIBS)
1372 quoting-test$(EXEEXT): $(quoting_test_OBJECTS) $(quoting_test_DEPENDENCIES) 
1373         @rm -f quoting-test$(EXEEXT)
1374         $(LINK) $(quoting_test_OBJECTS) $(quoting_test_LDADD) $(LIBS)
1375 semaphore-test$(EXEEXT): $(semaphore_test_OBJECTS) $(semaphore_test_DEPENDENCIES) 
1376         @rm -f semaphore-test$(EXEEXT)
1377         $(LINK) $(semaphore_test_OBJECTS) $(semaphore_test_LDADD) $(LIBS)
1378 install-amlibexecSCRIPTS: $(amlibexec_SCRIPTS)
1379         @$(NORMAL_INSTALL)
1380         test -z "$(amlibexecdir)" || $(MKDIR_P) "$(DESTDIR)$(amlibexecdir)"
1381         @list='$(amlibexec_SCRIPTS)'; test -n "$(amlibexecdir)" || list=; \
1382         for p in $$list; do \
1383           if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \
1384           if test -f "$$d$$p"; then echo "$$d$$p"; echo "$$p"; else :; fi; \
1385         done | \
1386         sed -e 'p;s,.*/,,;n' \
1387             -e 'h;s|.*|.|' \
1388             -e 'p;x;s,.*/,,;$(transform)' | sed 'N;N;N;s,\n, ,g' | \
1389         $(AWK) 'BEGIN { files["."] = ""; dirs["."] = 1; } \
1390           { d=$$3; if (dirs[d] != 1) { print "d", d; dirs[d] = 1 } \
1391             if ($$2 == $$4) { files[d] = files[d] " " $$1; \
1392               if (++n[d] == $(am__install_max)) { \
1393                 print "f", d, files[d]; n[d] = 0; files[d] = "" } } \
1394             else { print "f", d "/" $$4, $$1 } } \
1395           END { for (d in files) print "f", d, files[d] }' | \
1396         while read type dir files; do \
1397              if test "$$dir" = .; then dir=; else dir=/$$dir; fi; \
1398              test -z "$$files" || { \
1399                echo " $(INSTALL_SCRIPT) $$files '$(DESTDIR)$(amlibexecdir)$$dir'"; \
1400                $(INSTALL_SCRIPT) $$files "$(DESTDIR)$(amlibexecdir)$$dir" || exit $$?; \
1401              } \
1402         ; done
1403
1404 uninstall-amlibexecSCRIPTS:
1405         @$(NORMAL_UNINSTALL)
1406         @list='$(amlibexec_SCRIPTS)'; test -n "$(amlibexecdir)" || exit 0; \
1407         files=`for p in $$list; do echo "$$p"; done | \
1408                sed -e 's,.*/,,;$(transform)'`; \
1409         test -n "$$list" || exit 0; \
1410         echo " ( cd '$(DESTDIR)$(amlibexecdir)' && rm -f" $$files ")"; \
1411         cd "$(DESTDIR)$(amlibexecdir)" && rm -f $$files
1412 install-sbinSCRIPTS: $(sbin_SCRIPTS)
1413         @$(NORMAL_INSTALL)
1414         test -z "$(sbindir)" || $(MKDIR_P) "$(DESTDIR)$(sbindir)"
1415         @list='$(sbin_SCRIPTS)'; test -n "$(sbindir)" || list=; \
1416         for p in $$list; do \
1417           if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \
1418           if test -f "$$d$$p"; then echo "$$d$$p"; echo "$$p"; else :; fi; \
1419         done | \
1420         sed -e 'p;s,.*/,,;n' \
1421             -e 'h;s|.*|.|' \
1422             -e 'p;x;s,.*/,,;$(transform)' | sed 'N;N;N;s,\n, ,g' | \
1423         $(AWK) 'BEGIN { files["."] = ""; dirs["."] = 1; } \
1424           { d=$$3; if (dirs[d] != 1) { print "d", d; dirs[d] = 1 } \
1425             if ($$2 == $$4) { files[d] = files[d] " " $$1; \
1426               if (++n[d] == $(am__install_max)) { \
1427                 print "f", d, files[d]; n[d] = 0; files[d] = "" } } \
1428             else { print "f", d "/" $$4, $$1 } } \
1429           END { for (d in files) print "f", d, files[d] }' | \
1430         while read type dir files; do \
1431              if test "$$dir" = .; then dir=; else dir=/$$dir; fi; \
1432              test -z "$$files" || { \
1433                echo " $(INSTALL_SCRIPT) $$files '$(DESTDIR)$(sbindir)$$dir'"; \
1434                $(INSTALL_SCRIPT) $$files "$(DESTDIR)$(sbindir)$$dir" || exit $$?; \
1435              } \
1436         ; done
1437
1438 uninstall-sbinSCRIPTS:
1439         @$(NORMAL_UNINSTALL)
1440         @list='$(sbin_SCRIPTS)'; test -n "$(sbindir)" || exit 0; \
1441         files=`for p in $$list; do echo "$$p"; done | \
1442                sed -e 's,.*/,,;$(transform)'`; \
1443         test -n "$$list" || exit 0; \
1444         echo " ( cd '$(DESTDIR)$(sbindir)' && rm -f" $$files ")"; \
1445         cd "$(DESTDIR)$(sbindir)" && rm -f $$files
1446
1447 mostlyclean-compile:
1448         -rm -f *.$(OBJEXT)
1449
1450 distclean-compile:
1451         -rm -f *.tab.c
1452
1453 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/alloc.Plo@am__quote@
1454 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/amfeatures.Plo@am__quote@
1455 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/amflock-flock.Plo@am__quote@
1456 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/amflock-lnlock.Plo@am__quote@
1457 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/amflock-lockf.Plo@am__quote@
1458 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/amflock-posix.Plo@am__quote@
1459 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/amflock-test.Po@am__quote@
1460 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/amflock.Plo@am__quote@
1461 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/amxml.Plo@am__quote@
1462 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/bsd-security.Plo@am__quote@
1463 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/bsd-security.test.Po@am__quote@
1464 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/bsdtcp-security.Plo@am__quote@
1465 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/bsdudp-security.Plo@am__quote@
1466 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/clock.Plo@am__quote@
1467 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/columnar.Plo@am__quote@
1468 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/conffile.Plo@am__quote@
1469 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/debug.Plo@am__quote@
1470 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/dgram.Plo@am__quote@
1471 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/event-test.Po@am__quote@
1472 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/event.Plo@am__quote@
1473 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/file.Plo@am__quote@
1474 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/file.test.Po@am__quote@
1475 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/fileheader-test.Po@am__quote@
1476 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/fileheader.Plo@am__quote@
1477 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/genversion.Po@am__quote@
1478 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/glib-util.Plo@am__quote@
1479 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/hexencode-test.Po@am__quote@
1480 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/ipc-binary-test.Po@am__quote@
1481 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/ipc-binary.Plo@am__quote@
1482 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/krb5-security.Plo@am__quote@
1483 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/local-security.Plo@am__quote@
1484 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/match-test.Po@am__quote@
1485 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/match.Plo@am__quote@
1486 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/packet.Plo@am__quote@
1487 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/pipespawn.Plo@am__quote@
1488 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/protocol.Plo@am__quote@
1489 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/queueing-test.Po@am__quote@
1490 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/queueing.Plo@am__quote@
1491 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/quoting-test.Po@am__quote@
1492 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/rsh-security.Plo@am__quote@
1493 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/security-util.Plo@am__quote@
1494 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/security.Plo@am__quote@
1495 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/semaphore-test.Po@am__quote@
1496 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/semaphore.Plo@am__quote@
1497 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/simpleprng.Plo@am__quote@
1498 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/sl.Plo@am__quote@
1499 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/sockaddr-util.Plo@am__quote@
1500 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/ssh-security.Plo@am__quote@
1501 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/stream.Plo@am__quote@
1502 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/tapelist.Plo@am__quote@
1503 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/testutils.Plo@am__quote@
1504 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/timestamp.Plo@am__quote@
1505 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/util.Plo@am__quote@
1506 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/version.Plo@am__quote@
1507
1508 .c.o:
1509 @am__fastdepCC_TRUE@    $(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $<
1510 @am__fastdepCC_TRUE@    $(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po
1511 @AMDEP_TRUE@@am__fastdepCC_FALSE@       source='$<' object='$@' libtool=no @AMDEPBACKSLASH@
1512 @AMDEP_TRUE@@am__fastdepCC_FALSE@       DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
1513 @am__fastdepCC_FALSE@   $(COMPILE) -c $<
1514
1515 .c.obj:
1516 @am__fastdepCC_TRUE@    $(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ `$(CYGPATH_W) '$<'`
1517 @am__fastdepCC_TRUE@    $(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po
1518 @AMDEP_TRUE@@am__fastdepCC_FALSE@       source='$<' object='$@' libtool=no @AMDEPBACKSLASH@
1519 @AMDEP_TRUE@@am__fastdepCC_FALSE@       DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
1520 @am__fastdepCC_FALSE@   $(COMPILE) -c `$(CYGPATH_W) '$<'`
1521
1522 .c.lo:
1523 @am__fastdepCC_TRUE@    $(LTCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $<
1524 @am__fastdepCC_TRUE@    $(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Plo
1525 @AMDEP_TRUE@@am__fastdepCC_FALSE@       source='$<' object='$@' libtool=yes @AMDEPBACKSLASH@
1526 @AMDEP_TRUE@@am__fastdepCC_FALSE@       DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
1527 @am__fastdepCC_FALSE@   $(LTCOMPILE) -c -o $@ $<
1528
1529 mostlyclean-libtool:
1530         -rm -f *.lo
1531
1532 clean-libtool:
1533         -rm -rf .libs _libs
1534 install-amlibexecDATA: $(amlibexec_DATA)
1535         @$(NORMAL_INSTALL)
1536         test -z "$(amlibexecdir)" || $(MKDIR_P) "$(DESTDIR)$(amlibexecdir)"
1537         @list='$(amlibexec_DATA)'; test -n "$(amlibexecdir)" || list=; \
1538         for p in $$list; do \
1539           if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \
1540           echo "$$d$$p"; \
1541         done | $(am__base_list) | \
1542         while read files; do \
1543           echo " $(INSTALL_DATA) $$files '$(DESTDIR)$(amlibexecdir)'"; \
1544           $(INSTALL_DATA) $$files "$(DESTDIR)$(amlibexecdir)" || exit $$?; \
1545         done
1546
1547 uninstall-amlibexecDATA:
1548         @$(NORMAL_UNINSTALL)
1549         @list='$(amlibexec_DATA)'; test -n "$(amlibexecdir)" || list=; \
1550         files=`for p in $$list; do echo $$p; done | sed -e 's|^.*/||'`; \
1551         test -n "$$files" || exit 0; \
1552         echo " ( cd '$(DESTDIR)$(amlibexecdir)' && rm -f" $$files ")"; \
1553         cd "$(DESTDIR)$(amlibexecdir)" && rm -f $$files
1554
1555 ID: $(HEADERS) $(SOURCES) $(LISP) $(TAGS_FILES)
1556         list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \
1557         unique=`for i in $$list; do \
1558             if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
1559           done | \
1560           $(AWK) '{ files[$$0] = 1; nonempty = 1; } \
1561               END { if (nonempty) { for (i in files) print i; }; }'`; \
1562         mkid -fID $$unique
1563 tags: TAGS
1564
1565 TAGS:  $(HEADERS) $(SOURCES)  $(TAGS_DEPENDENCIES) \
1566                 $(TAGS_FILES) $(LISP)
1567         set x; \
1568         here=`pwd`; \
1569         list='$(SOURCES) $(HEADERS)  $(LISP) $(TAGS_FILES)'; \
1570         unique=`for i in $$list; do \
1571             if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
1572           done | \
1573           $(AWK) '{ files[$$0] = 1; nonempty = 1; } \
1574               END { if (nonempty) { for (i in files) print i; }; }'`; \
1575         shift; \
1576         if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \
1577           test -n "$$unique" || unique=$$empty_fix; \
1578           if test $$# -gt 0; then \
1579             $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \
1580               "$$@" $$unique; \
1581           else \
1582             $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \
1583               $$unique; \
1584           fi; \
1585         fi
1586 ctags: CTAGS
1587 CTAGS:  $(HEADERS) $(SOURCES)  $(TAGS_DEPENDENCIES) \
1588                 $(TAGS_FILES) $(LISP)
1589         list='$(SOURCES) $(HEADERS)  $(LISP) $(TAGS_FILES)'; \
1590         unique=`for i in $$list; do \
1591             if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
1592           done | \
1593           $(AWK) '{ files[$$0] = 1; nonempty = 1; } \
1594               END { if (nonempty) { for (i in files) print i; }; }'`; \
1595         test -z "$(CTAGS_ARGS)$$unique" \
1596           || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \
1597              $$unique
1598
1599 GTAGS:
1600         here=`$(am__cd) $(top_builddir) && pwd` \
1601           && $(am__cd) $(top_srcdir) \
1602           && gtags -i $(GTAGS_ARGS) "$$here"
1603
1604 distclean-tags:
1605         -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags
1606
1607 check-TESTS: $(TESTS)
1608         @failed=0; all=0; xfail=0; xpass=0; skip=0; \
1609         srcdir=$(srcdir); export srcdir; \
1610         list=' $(TESTS) '; \
1611         $(am__tty_colors); \
1612         if test -n "$$list"; then \
1613           for tst in $$list; do \
1614             if test -f ./$$tst; then dir=./; \
1615             elif test -f $$tst; then dir=; \
1616             else dir="$(srcdir)/"; fi; \
1617             if $(TESTS_ENVIRONMENT) $${dir}$$tst; then \
1618               all=`expr $$all + 1`; \
1619               case " $(XFAIL_TESTS) " in \
1620               *[\ \     ]$$tst[\ \      ]*) \
1621                 xpass=`expr $$xpass + 1`; \
1622                 failed=`expr $$failed + 1`; \
1623                 col=$$red; res=XPASS; \
1624               ;; \
1625               *) \
1626                 col=$$grn; res=PASS; \
1627               ;; \
1628               esac; \
1629             elif test $$? -ne 77; then \
1630               all=`expr $$all + 1`; \
1631               case " $(XFAIL_TESTS) " in \
1632               *[\ \     ]$$tst[\ \      ]*) \
1633                 xfail=`expr $$xfail + 1`; \
1634                 col=$$lgn; res=XFAIL; \
1635               ;; \
1636               *) \
1637                 failed=`expr $$failed + 1`; \
1638                 col=$$red; res=FAIL; \
1639               ;; \
1640               esac; \
1641             else \
1642               skip=`expr $$skip + 1`; \
1643               col=$$blu; res=SKIP; \
1644             fi; \
1645             echo "$${col}$$res$${std}: $$tst"; \
1646           done; \
1647           if test "$$all" -eq 1; then \
1648             tests="test"; \
1649             All=""; \
1650           else \
1651             tests="tests"; \
1652             All="All "; \
1653           fi; \
1654           if test "$$failed" -eq 0; then \
1655             if test "$$xfail" -eq 0; then \
1656               banner="$$All$$all $$tests passed"; \
1657             else \
1658               if test "$$xfail" -eq 1; then failures=failure; else failures=failures; fi; \
1659               banner="$$All$$all $$tests behaved as expected ($$xfail expected $$failures)"; \
1660             fi; \
1661           else \
1662             if test "$$xpass" -eq 0; then \
1663               banner="$$failed of $$all $$tests failed"; \
1664             else \
1665               if test "$$xpass" -eq 1; then passes=pass; else passes=passes; fi; \
1666               banner="$$failed of $$all $$tests did not behave as expected ($$xpass unexpected $$passes)"; \
1667             fi; \
1668           fi; \
1669           dashes="$$banner"; \
1670           skipped=""; \
1671           if test "$$skip" -ne 0; then \
1672             if test "$$skip" -eq 1; then \
1673               skipped="($$skip test was not run)"; \
1674             else \
1675               skipped="($$skip tests were not run)"; \
1676             fi; \
1677             test `echo "$$skipped" | wc -c` -le `echo "$$banner" | wc -c` || \
1678               dashes="$$skipped"; \
1679           fi; \
1680           report=""; \
1681           if test "$$failed" -ne 0 && test -n "$(PACKAGE_BUGREPORT)"; then \
1682             report="Please report to $(PACKAGE_BUGREPORT)"; \
1683             test `echo "$$report" | wc -c` -le `echo "$$banner" | wc -c` || \
1684               dashes="$$report"; \
1685           fi; \
1686           dashes=`echo "$$dashes" | sed s/./=/g`; \
1687           if test "$$failed" -eq 0; then \
1688             echo "$$grn$$dashes"; \
1689           else \
1690             echo "$$red$$dashes"; \
1691           fi; \
1692           echo "$$banner"; \
1693           test -z "$$skipped" || echo "$$skipped"; \
1694           test -z "$$report" || echo "$$report"; \
1695           echo "$$dashes$$std"; \
1696           test "$$failed" -eq 0; \
1697         else :; fi
1698
1699 distdir: $(DISTFILES)
1700         @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
1701         topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
1702         list='$(DISTFILES)'; \
1703           dist_files=`for file in $$list; do echo $$file; done | \
1704           sed -e "s|^$$srcdirstrip/||;t" \
1705               -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \
1706         case $$dist_files in \
1707           */*) $(MKDIR_P) `echo "$$dist_files" | \
1708                            sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \
1709                            sort -u` ;; \
1710         esac; \
1711         for file in $$dist_files; do \
1712           if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \
1713           if test -d $$d/$$file; then \
1714             dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \
1715             if test -d "$(distdir)/$$file"; then \
1716               find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \
1717             fi; \
1718             if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \
1719               cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \
1720               find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \
1721             fi; \
1722             cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \
1723           else \
1724             test -f "$(distdir)/$$file" \
1725             || cp -p $$d/$$file "$(distdir)/$$file" \
1726             || exit 1; \
1727           fi; \
1728         done
1729         $(MAKE) $(AM_MAKEFLAGS) \
1730           top_distdir="$(top_distdir)" distdir="$(distdir)" \
1731           dist-hook
1732 check-am: all-am
1733         $(MAKE) $(AM_MAKEFLAGS) check-TESTS check-local
1734 check: $(BUILT_SOURCES)
1735         $(MAKE) $(AM_MAKEFLAGS) check-am
1736 all-am: Makefile $(LTLIBRARIES) $(PROGRAMS) $(SCRIPTS) $(DATA) \
1737                 $(HEADERS)
1738 installdirs:
1739         for dir in "$(DESTDIR)$(amlibdir)" "$(DESTDIR)$(amlibexecdir)" "$(DESTDIR)$(sbindir)" "$(DESTDIR)$(amlibexecdir)"; do \
1740           test -z "$$dir" || $(MKDIR_P) "$$dir"; \
1741         done
1742 install: $(BUILT_SOURCES)
1743         $(MAKE) $(AM_MAKEFLAGS) install-am
1744 install-exec: install-exec-am
1745 install-data: install-data-am
1746 uninstall: uninstall-am
1747
1748 install-am: all-am
1749         @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am
1750
1751 installcheck: installcheck-am
1752 install-strip:
1753         $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \
1754           install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \
1755           `test -z '$(STRIP)' || \
1756             echo "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'"` install
1757 mostlyclean-generic:
1758         -test -z "$(MOSTLYCLEANFILES)" || rm -f $(MOSTLYCLEANFILES)
1759
1760 clean-generic:
1761         -test -z "$(CLEANFILES)" || rm -f $(CLEANFILES)
1762
1763 distclean-generic:
1764         -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES)
1765         -test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES)
1766         -test -z "$(DISTCLEANFILES)" || rm -f $(DISTCLEANFILES)
1767
1768 maintainer-clean-generic:
1769         @echo "This command is intended for maintainers to use"
1770         @echo "it deletes files that may require special tools to rebuild."
1771         -test -z "$(BUILT_SOURCES)" || rm -f $(BUILT_SOURCES)
1772         -test -z "$(MAINTAINERCLEANFILES)" || rm -f $(MAINTAINERCLEANFILES)
1773 clean: clean-am
1774
1775 clean-am: clean-amlibLTLIBRARIES clean-generic clean-libtool \
1776         clean-noinstLTLIBRARIES clean-noinstPROGRAMS mostlyclean-am
1777
1778 distclean: distclean-am
1779         -rm -rf ./$(DEPDIR)
1780         -rm -f Makefile
1781 distclean-am: clean-am distclean-compile distclean-generic \
1782         distclean-local distclean-tags
1783
1784 dvi: dvi-am
1785
1786 dvi-am:
1787
1788 html: html-am
1789
1790 html-am:
1791
1792 info: info-am
1793
1794 info-am:
1795
1796 install-data-am: install-amlibLTLIBRARIES
1797         @$(NORMAL_INSTALL)
1798         $(MAKE) $(AM_MAKEFLAGS) install-data-hook
1799 install-dvi: install-dvi-am
1800
1801 install-dvi-am:
1802
1803 install-exec-am: install-amlibexecDATA install-amlibexecSCRIPTS \
1804         install-sbinSCRIPTS
1805         @$(NORMAL_INSTALL)
1806         $(MAKE) $(AM_MAKEFLAGS) install-exec-hook
1807 install-html: install-html-am
1808
1809 install-html-am:
1810
1811 install-info: install-info-am
1812
1813 install-info-am:
1814
1815 install-man:
1816
1817 install-pdf: install-pdf-am
1818
1819 install-pdf-am:
1820
1821 install-ps: install-ps-am
1822
1823 install-ps-am:
1824
1825 installcheck-am: installcheck-local
1826
1827 maintainer-clean: maintainer-clean-am
1828         -rm -rf ./$(DEPDIR)
1829         -rm -f Makefile
1830 maintainer-clean-am: distclean-am maintainer-clean-generic
1831
1832 mostlyclean: mostlyclean-am
1833
1834 mostlyclean-am: mostlyclean-compile mostlyclean-generic \
1835         mostlyclean-libtool
1836
1837 pdf: pdf-am
1838
1839 pdf-am:
1840
1841 ps: ps-am
1842
1843 ps-am:
1844
1845 uninstall-am: uninstall-amlibLTLIBRARIES uninstall-amlibexecDATA \
1846         uninstall-amlibexecSCRIPTS uninstall-sbinSCRIPTS
1847
1848 .MAKE: all check check-am install install-am install-data-am \
1849         install-exec-am install-strip
1850
1851 .PHONY: CTAGS GTAGS all all-am check check-TESTS check-am check-local \
1852         clean clean-amlibLTLIBRARIES clean-generic clean-libtool \
1853         clean-noinstLTLIBRARIES clean-noinstPROGRAMS ctags dist-hook \
1854         distclean distclean-compile distclean-generic \
1855         distclean-libtool distclean-local distclean-tags distdir dvi \
1856         dvi-am html html-am info info-am install install-am \
1857         install-amlibLTLIBRARIES install-amlibexecDATA \
1858         install-amlibexecSCRIPTS install-data install-data-am \
1859         install-data-hook install-dvi install-dvi-am install-exec \
1860         install-exec-am install-exec-hook install-html install-html-am \
1861         install-info install-info-am install-man install-pdf \
1862         install-pdf-am install-ps install-ps-am install-sbinSCRIPTS \
1863         install-strip installcheck installcheck-am installcheck-local \
1864         installdirs maintainer-clean maintainer-clean-generic \
1865         mostlyclean mostlyclean-compile mostlyclean-generic \
1866         mostlyclean-libtool pdf pdf-am ps ps-am tags uninstall \
1867         uninstall-am uninstall-amlibLTLIBRARIES \
1868         uninstall-amlibexecDATA uninstall-amlibexecSCRIPTS \
1869         uninstall-sbinSCRIPTS
1870
1871
1872 # Perl
1873 %: %.pl $(top_builddir)/config.status
1874         $(top_builddir)/config.status --file=$@:$<
1875         chmod a+x $@
1876 @CHECK_SCRIPTS_AT_BUILD_TRUE@   @if test -f $(top_builddir)/perl/.libs/libCmdline.so -o -f $(top_builddir)/perl/libCmdline.so; then \
1877 @CHECK_SCRIPTS_AT_BUILD_TRUE@           sed "s,^use lib ['\"]$(amperldir)['\"],# use lib '$(amperldir)' # nouselib," < $@ > $@.nouselib; \
1878 @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; \
1879 @CHECK_SCRIPTS_AT_BUILD_TRUE@           rm $@.nouselib; \
1880 @CHECK_SCRIPTS_AT_BUILD_TRUE@   fi
1881
1882 %.pl: %.pl.in $(top_builddir)/config.status
1883         $(top_builddir)/config.status --file=$@:$<
1884
1885 %.pm: %.pm.in $(top_builddir)/config.status
1886         $(top_builddir)/config.status --file=$@:$<
1887
1888 # Shell
1889 %: %.sh $(top_builddir)/config.status
1890         $(top_builddir)/config.status --file=$@:$<
1891         chmod a+x $@
1892
1893 %.sh: %.sh.in $(top_builddir)/config.status
1894         $(top_builddir)/config.status --file=$@:$<
1895
1896 # Awk
1897 %: %.awk $(top_builddir)/config.status
1898         $(top_builddir)/config.status --file=$@:$<
1899         chmod a+x $@
1900
1901 %.awk: %.awk.in $(top_builddir)/config.status
1902         $(top_builddir)/config.status --file=$@:$<
1903
1904 # syntax-check perl scripts on 'make check'
1905 check-perl: $(SCRIPTS_PERL)
1906         @SCRIPTS_PERL="$(SCRIPTS_PERL)"; \
1907         if test x"$(SKIP_CHECKS)" = x"" && \
1908             test -f $(top_builddir)/perl/.libs/libCmdline.so -o -f $(top_builddir)/perl/libCmdline.so; then \
1909             if test -n "$(PERL)"; then \
1910                     for perlobj in $$SCRIPTS_PERL; do \
1911                             sed "s,^use lib ['\"]$(amperldir)['\"],# use lib '$(amperldir)' # nouselib," < $$perlobj > $$perlobj.nouselib; \
1912                             $(PERL) $(CHECK_PERL_FLAGS) -I$(top_builddir)/perl -I$(top_builddir)/perl/.libs -I$(top_srcdir)/perl -c -w $$perlobj.nouselib || exit 1; \
1913                             rm $$perlobj.nouselib; \
1914                     done; \
1915             fi \
1916         fi
1917 check-local: check-perl
1918
1919 # syntax-check perl scripts on 'make installcheck'
1920 installcheck-perl: $(SCRIPTS_PERL)
1921         @SCRIPTS_PERL="$(SCRIPTS_PERL)"; \
1922         if test x"$(SKIP_CHECKS)" = x"" && \
1923             test -n "$(PERL)"; then \
1924                 for perlobj in $$SCRIPTS_PERL; do \
1925                         $(PERL) $(CHECK_PERL_FLAGS) -c -w $$perlobj || exit 1; \
1926                 done; \
1927         fi
1928 installcheck-local: installcheck-perl
1929
1930 # syntax-check shell scripts on 'make check'
1931 check-shell: $(SCRIPTS_SHELL)
1932         @SCRIPTS_SHELL="$(SCRIPTS_SHELL)"; \
1933         if test x"$(SKIP_CHECKS)" = x"" && \
1934             test -n "$$SCRIPTS_SHELL"; then \
1935                 if test -n "$(BASH)"; then \
1936                         for shobj in $$SCRIPTS_SHELL; do \
1937                                 if $(BASH) -n $$shobj; then \
1938                                         echo "$$shobj syntax OK"; \
1939                                 else \
1940                                         echo "$$shobj syntax error"; \
1941                                         exit 1; \
1942                                 fi; \
1943                         done; \
1944                 else \
1945                         echo "No 'bash' available -- cannot syntax-check shell scripts"; \
1946                 fi; \
1947         fi
1948 check-local: check-shell
1949
1950 # make sure that the sources for all shell and perl scripts get included
1951 # in the distribution
1952 dist-scripts:
1953         @SCRIPTS_PERL="$(SCRIPTS_PERL) $(SCRIPTS_EXTRA_DIST)"; \
1954         SCRIPTS_SHELL="$(SCRIPTS_SHELL) $(SCRIPTS_EXTRA_DIST)"; \
1955         SCRIPTS_AWK="$(SCRIPTS_AWK) $(SCRIPTS_EXTRA_DIST)"; \
1956         SCRIPTS_DIST=; \
1957         for script in $$SCRIPTS_PERL; do \
1958                 test -f $(srcdir)/$${script}.pl && \
1959                         SCRIPTS_DIST="$$SCRIPTS_DIST $${script}.pl"; \
1960         done; \
1961         for script in $$SCRIPTS_SHELL; do \
1962                 test -f $(srcdir)/$${script}.sh && \
1963                         SCRIPTS_DIST="$$SCRIPTS_DIST $${script}.sh"; \
1964         done; \
1965         for script in $$SCRIPTS_AWK; do \
1966                 test -f $(srcdir)/$${script}.awk && \
1967                         SCRIPTS_DIST="$$SCRIPTS_DIST $${script}.awk"; \
1968         done; \
1969         for script in $$SCRIPTS_SHELL $$SCRIPTS_PERL $$SCRIPTS_AWK; do \
1970                 test -f $(srcdir)/$${script}.in && \
1971                         SCRIPTS_DIST="$$SCRIPTS_DIST $${script}.in"; \
1972         done; \
1973         for script in $$SCRIPTS_DIST; do \
1974                 dir=`dirname $${script}`; \
1975                 if test -n "$$dir" && test ! -d "$(distdir)/$$dir"; then \
1976                         mkdir -p "$(distdir)/$$dir" || exit 1; \
1977                 fi; \
1978                 test -f "$(distdir)/$${script}" && continue; \
1979                 echo "distributing $${script}"; \
1980                 cp -p "$(srcdir)/$${script}" "$(distdir)/$${script}" || exit 1; \
1981         done; \
1982         true
1983 dist-hook: dist-scripts
1984
1985 installperms-exec:
1986         @installperms="$(INSTALLPERMS_exec)"; \
1987         test -n "$$installperms" && echo "Setting installation permissions on executables"; \
1988         dest=; chown=; chmod=; \
1989         for cmd in $$installperms; do \
1990             case "$$cmd" in \
1991                 chown=amanda) \
1992                         echo "  ($$cmd)"; chown="$(BINARY_OWNER):$(SETUID_GROUP)";; \
1993                 dest=*|chown=*|chmod=*) \
1994                         echo "  ($$cmd)"; eval $$cmd;; \
1995                 *) $(do_file) ;; \
1996             esac; \
1997         done
1998
1999 installperms-data:
2000         @installperms="$(INSTALLPERMS_data)"; \
2001         dest=; chown=; chmod=; \
2002         for cmd in $$installperms; do \
2003             case "$$cmd" in \
2004                 chown=amanda) \
2005                         echo "  ($$cmd)"; chown="$(BINARY_OWNER):$(SETUID_GROUP)";; \
2006                 dest=*|chown=*|chmod=*) \
2007                         echo "  ($$cmd)"; eval $$cmd;; \
2008                 *)  $(do_file) ;; \
2009             esac; \
2010         done
2011
2012 install-exec-hook: installperms-exec
2013 install-data-hook: installperms-data
2014
2015 # define a rule to initialize the installperms manifest file
2016 @WANT_INSTALLPERMS_TRUE@installperms-init:
2017 @WANT_INSTALLPERMS_FALSE@installperms-init:
2018 @WANT_INSTALLPERMS_FALSE@       rm -f "$(installperms_sh)"
2019
2020 # A rule to make precompiler output from C files.  This is not used during
2021 # ordinary builds, but but can very useful in debugging problems on strange
2022 # architectures.  With this rule, we can ask users to 'make foo.i' and send
2023 # the result to us.
2024 #
2025 # It touches some automake internals ($COMPILE), but since it's not
2026 # build-critical, that's OK.
2027 %.i : %.c
2028         $(COMPILE) -E -o $@ $<
2029
2030 genversion.h: $(top_builddir)/config.status
2031         -rm -f $@ $@.new
2032         echo '#define CC "$(CC)"' > $@.new
2033         echo '#define BUILT_DATE "'`date`'"' >> $@.new
2034         echo '#define BUILT_MACH "$(target)"' >> $@.new
2035         mv $@.new $@
2036
2037 version.c: genversion$(EXEEXT)
2038         -rm -f version.c
2039         ./genversion$(EXEEXT) > version.c
2040
2041 lint:
2042         @echo $(LINT) $(libamanda_la_SOURCES)
2043         @$(LINT) $(LINTFLAGS) $(CPPFLAGS) $(DEFS) -I. -I$(top_builddir)/config $(INCLUDES) $(libamanda_la_SOURCES)
2044         @echo $(LINT) $(genversion_SOURCES)
2045         @$(LINT) $(LINTFLAGS) $(CPPFLAGS) $(DEFS) -I. -I$(top_builddir)/config $(INCLUDES) $(genversion_SOURCES)
2046
2047 listlibsrc:
2048         @ for p in $(libamanda_la_SOURCES) $(REGEXCSRC); do     \
2049                 listlibsrcs="$$listlibsrcs `pwd`/$$p";          \
2050         done;                                                   \
2051         echo $$listlibsrcs >listlibsrc.output
2052
2053 %.test.c: $(srcdir)/%.c
2054         echo '#define TEST' >$@
2055         echo '#include "$<"' >>$@
2056
2057 distclean-local:
2058         if test `cd $(srcdir) && pwd` != `pwd`; then rm -f svn-info.h; fi
2059
2060 # Tell versions [3.59,3.63) of GNU make to not export all variables.
2061 # Otherwise a system limit (for SysV at least) may be exceeded.
2062 .NOEXPORT: