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