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