188cd4aa1fee35c348d659065c4937eb78ac5606
[debian/amanda] / amplot / 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 amplot.
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 subdir = amplot
189 ACLOCAL_M4 = $(top_srcdir)/aclocal.m4
190 am__aclocal_m4_deps =  \
191         $(top_srcdir)/config/macro-archive/ac_define_dir.m4 \
192         $(top_srcdir)/config/macro-archive/ac_perl_module_version.m4 \
193         $(top_srcdir)/config/macro-archive/ac_prog_perl_version.m4 \
194         $(top_srcdir)/config/macro-archive/ac_prog_swig.m4 \
195         $(top_srcdir)/config/macro-archive/ax_compare_version.m4 \
196         $(top_srcdir)/config/macro-archive/docbook-dtd.m4 \
197         $(top_srcdir)/config/macro-archive/docbook-xslt-min.m4 \
198         $(top_srcdir)/config/macro-archive/docbook-xslt.m4 \
199         $(top_srcdir)/config/macro-archive/xsltproc.m4 \
200         $(top_srcdir)/config/amanda/amplot.m4 \
201         $(top_srcdir)/config/amanda/bsd-security.m4 \
202         $(top_srcdir)/config/amanda/bsdtcp-security.m4 \
203         $(top_srcdir)/config/amanda/bsdudp-security.m4 \
204         $(top_srcdir)/config/amanda/changer.m4 \
205         $(top_srcdir)/config/amanda/components.m4 \
206         $(top_srcdir)/config/amanda/compress.m4 \
207         $(top_srcdir)/config/amanda/config.m4 \
208         $(top_srcdir)/config/amanda/debugging.m4 \
209         $(top_srcdir)/config/amanda/defaults.m4 \
210         $(top_srcdir)/config/amanda/devprefix.m4 \
211         $(top_srcdir)/config/amanda/dirs.m4 \
212         $(top_srcdir)/config/amanda/documentation.m4 \
213         $(top_srcdir)/config/amanda/dumpers.m4 \
214         $(top_srcdir)/config/amanda/dvdrw-device.m4 \
215         $(top_srcdir)/config/amanda/flags.m4 \
216         $(top_srcdir)/config/amanda/flock.m4 \
217         $(top_srcdir)/config/amanda/funcs.m4 \
218         $(top_srcdir)/config/amanda/getfsent.m4 \
219         $(top_srcdir)/config/amanda/i18n.m4 \
220         $(top_srcdir)/config/amanda/ipv6.m4 \
221         $(top_srcdir)/config/amanda/krb5-security.m4 \
222         $(top_srcdir)/config/amanda/lfs.m4 \
223         $(top_srcdir)/config/amanda/libs.m4 \
224         $(top_srcdir)/config/amanda/ndmp-device.m4 \
225         $(top_srcdir)/config/amanda/net.m4 \
226         $(top_srcdir)/config/amanda/progs.m4 \
227         $(top_srcdir)/config/amanda/ps.m4 \
228         $(top_srcdir)/config/amanda/readdir.m4 \
229         $(top_srcdir)/config/amanda/readline.m4 \
230         $(top_srcdir)/config/amanda/rsh-security.m4 \
231         $(top_srcdir)/config/amanda/s3-device.m4 \
232         $(top_srcdir)/config/amanda/shmem.m4 \
233         $(top_srcdir)/config/amanda/socklen_t_equiv.m4 \
234         $(top_srcdir)/config/amanda/ssh-security.m4 \
235         $(top_srcdir)/config/amanda/summary.m4 \
236         $(top_srcdir)/config/amanda/swig.m4 \
237         $(top_srcdir)/config/amanda/syshacks.m4 \
238         $(top_srcdir)/config/amanda/tape.m4 \
239         $(top_srcdir)/config/amanda/types.m4 \
240         $(top_srcdir)/config/amanda/userid.m4 \
241         $(top_srcdir)/config/amanda/version.m4 \
242         $(top_srcdir)/config/gnulib/00gnulib.m4 \
243         $(top_srcdir)/config/gnulib/alloca.m4 \
244         $(top_srcdir)/config/gnulib/arpa_inet_h.m4 \
245         $(top_srcdir)/config/gnulib/base64.m4 \
246         $(top_srcdir)/config/gnulib/btowc.m4 \
247         $(top_srcdir)/config/gnulib/errno_h.m4 \
248         $(top_srcdir)/config/gnulib/extensions.m4 \
249         $(top_srcdir)/config/gnulib/float_h.m4 \
250         $(top_srcdir)/config/gnulib/fseeko.m4 \
251         $(top_srcdir)/config/gnulib/fsusage.m4 \
252         $(top_srcdir)/config/gnulib/ftello.m4 \
253         $(top_srcdir)/config/gnulib/ftruncate.m4 \
254         $(top_srcdir)/config/gnulib/getaddrinfo.m4 \
255         $(top_srcdir)/config/gnulib/getopt.m4 \
256         $(top_srcdir)/config/gnulib/gettimeofday.m4 \
257         $(top_srcdir)/config/gnulib/gnulib-common.m4 \
258         $(top_srcdir)/config/gnulib/gnulib-comp.m4 \
259         $(top_srcdir)/config/gnulib/hostent.m4 \
260         $(top_srcdir)/config/gnulib/include_next.m4 \
261         $(top_srcdir)/config/gnulib/inet_ntop.m4 \
262         $(top_srcdir)/config/gnulib/intmax_t.m4 \
263         $(top_srcdir)/config/gnulib/localcharset.m4 \
264         $(top_srcdir)/config/gnulib/locale-fr.m4 \
265         $(top_srcdir)/config/gnulib/locale-ja.m4 \
266         $(top_srcdir)/config/gnulib/locale-zh.m4 \
267         $(top_srcdir)/config/gnulib/lock.m4 \
268         $(top_srcdir)/config/gnulib/longlong.m4 \
269         $(top_srcdir)/config/gnulib/lseek.m4 \
270         $(top_srcdir)/config/gnulib/lstat.m4 \
271         $(top_srcdir)/config/gnulib/malloc.m4 \
272         $(top_srcdir)/config/gnulib/mbrtowc.m4 \
273         $(top_srcdir)/config/gnulib/mbsinit.m4 \
274         $(top_srcdir)/config/gnulib/mbstate_t.m4 \
275         $(top_srcdir)/config/gnulib/mkdtemp.m4 \
276         $(top_srcdir)/config/gnulib/multiarch.m4 \
277         $(top_srcdir)/config/gnulib/netdb_h.m4 \
278         $(top_srcdir)/config/gnulib/netinet_in_h.m4 \
279         $(top_srcdir)/config/gnulib/onceonly.m4 \
280         $(top_srcdir)/config/gnulib/physmem.m4 \
281         $(top_srcdir)/config/gnulib/printf.m4 \
282         $(top_srcdir)/config/gnulib/regex.m4 \
283         $(top_srcdir)/config/gnulib/safe-read.m4 \
284         $(top_srcdir)/config/gnulib/safe-write.m4 \
285         $(top_srcdir)/config/gnulib/servent.m4 \
286         $(top_srcdir)/config/gnulib/snprintf.m4 \
287         $(top_srcdir)/config/gnulib/socklen.m4 \
288         $(top_srcdir)/config/gnulib/sockpfaf.m4 \
289         $(top_srcdir)/config/gnulib/ssize_t.m4 \
290         $(top_srcdir)/config/gnulib/stdbool.m4 \
291         $(top_srcdir)/config/gnulib/stdint.m4 \
292         $(top_srcdir)/config/gnulib/stdio_h.m4 \
293         $(top_srcdir)/config/gnulib/stdlib_h.m4 \
294         $(top_srcdir)/config/gnulib/sys_socket_h.m4 \
295         $(top_srcdir)/config/gnulib/sys_stat_h.m4 \
296         $(top_srcdir)/config/gnulib/sys_time_h.m4 \
297         $(top_srcdir)/config/gnulib/tempname.m4 \
298         $(top_srcdir)/config/gnulib/threadlib.m4 \
299         $(top_srcdir)/config/gnulib/unistd_h.m4 \
300         $(top_srcdir)/config/gnulib/vasnprintf.m4 \
301         $(top_srcdir)/config/gnulib/visibility.m4 \
302         $(top_srcdir)/config/gnulib/wchar.m4 \
303         $(top_srcdir)/config/gnulib/wcrtomb.m4 \
304         $(top_srcdir)/config/gnulib/wctype.m4 \
305         $(top_srcdir)/config/gnulib/write.m4 \
306         $(top_srcdir)/config/gettext-macros/codeset.m4 \
307         $(top_srcdir)/config/gettext-macros/gettext.m4 \
308         $(top_srcdir)/config/gettext-macros/glibc21.m4 \
309         $(top_srcdir)/config/gettext-macros/iconv.m4 \
310         $(top_srcdir)/config/gettext-macros/inttypes_h.m4 \
311         $(top_srcdir)/config/gettext-macros/lib-ld.m4 \
312         $(top_srcdir)/config/gettext-macros/lib-link.m4 \
313         $(top_srcdir)/config/gettext-macros/lib-prefix.m4 \
314         $(top_srcdir)/config/gettext-macros/nls.m4 \
315         $(top_srcdir)/config/gettext-macros/po.m4 \
316         $(top_srcdir)/config/gettext-macros/progtest.m4 \
317         $(top_srcdir)/config/gettext-macros/size_max.m4 \
318         $(top_srcdir)/config/gettext-macros/stdint_h.m4 \
319         $(top_srcdir)/config/gettext-macros/wchar_t.m4 \
320         $(top_srcdir)/config/gettext-macros/wint_t.m4 \
321         $(top_srcdir)/config/gettext-macros/xsize.m4 \
322         $(top_srcdir)/config/libtool.m4 \
323         $(top_srcdir)/config/ltoptions.m4 \
324         $(top_srcdir)/config/ltsugar.m4 \
325         $(top_srcdir)/config/ltversion.m4 \
326         $(top_srcdir)/config/lt~obsolete.m4 $(top_srcdir)/configure.in
327 am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \
328         $(ACLOCAL_M4)
329 mkinstalldirs = $(SHELL) $(top_srcdir)/config/mkinstalldirs
330 CONFIG_HEADER = $(top_builddir)/config/config.h
331 CONFIG_CLEAN_FILES =
332 CONFIG_CLEAN_VPATH_FILES =
333 am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`;
334 am__vpath_adj = case $$p in \
335     $(srcdir)/*) f=`echo "$$p" | sed "s|^$$srcdirstrip/||"`;; \
336     *) f=$$p;; \
337   esac;
338 am__strip_dir = f=`echo $$p | sed -e 's|^.*/||'`;
339 am__install_max = 40
340 am__nobase_strip_setup = \
341   srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*|]/\\\\&/g'`
342 am__nobase_strip = \
343   for p in $$list; do echo "$$p"; done | sed -e "s|$$srcdirstrip/||"
344 am__nobase_list = $(am__nobase_strip_setup); \
345   for p in $$list; do echo "$$p $$p"; done | \
346   sed "s| $$srcdirstrip/| |;"' / .*\//!s/ .*/ ./; s,\( .*\)/[^/]*$$,\1,' | \
347   $(AWK) 'BEGIN { files["."] = "" } { files[$$2] = files[$$2] " " $$1; \
348     if (++n[$$2] == $(am__install_max)) \
349       { print $$2, files[$$2]; n[$$2] = 0; files[$$2] = "" } } \
350     END { for (dir in files) print dir, files[dir] }'
351 am__base_list = \
352   sed '$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;s/\n/ /g' | \
353   sed '$$!N;$$!N;$$!N;$$!N;s/\n/ /g'
354 am__installdirs = "$(DESTDIR)$(sbindir)" "$(DESTDIR)$(amplotdir)"
355 SCRIPTS = $(sbin_SCRIPTS)
356 SOURCES =
357 DIST_SOURCES =
358 DATA = $(amplot_DATA)
359 DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST)
360 ACLOCAL = @ACLOCAL@
361 AIX_BACKUP = @AIX_BACKUP@
362 ALLOCA = @ALLOCA@
363 ALLOCA_H = @ALLOCA_H@
364 AMANDA_COMPONENTS = @AMANDA_COMPONENTS@
365 AMANDA_DBGDIR = @AMANDA_DBGDIR@
366 AMANDA_DEBUG_DAYS = @AMANDA_DEBUG_DAYS@
367 AMANDA_STATIC_LDFLAGS = @AMANDA_STATIC_LDFLAGS@
368 AMANDA_SWIG_PERL_CFLAGS = @AMANDA_SWIG_PERL_CFLAGS@
369 AMANDA_TMPDIR = @AMANDA_TMPDIR@
370 AMANDA_WARNING_CFLAGS = @AMANDA_WARNING_CFLAGS@
371 AMLINT = @AMLINT@
372 AMLINTFLAGS = @AMLINTFLAGS@
373 AMPLOT_CAT_COMPRESS = @AMPLOT_CAT_COMPRESS@
374 AMPLOT_CAT_GZIP = @AMPLOT_CAT_GZIP@
375 AMPLOT_CAT_PACK = @AMPLOT_CAT_PACK@
376 AMPLOT_COMPRESS = @AMPLOT_COMPRESS@
377 AMTAR = @AMTAR@
378 APPLE_UNIVERSAL_BUILD = @APPLE_UNIVERSAL_BUILD@
379 APPLICATION_DIR = @APPLICATION_DIR@
380 AR = @AR@
381 ARPA_INET_H = @ARPA_INET_H@
382 ASSERTIONS = @ASSERTIONS@
383 AUTOCONF = @AUTOCONF@
384 AUTOHEADER = @AUTOHEADER@
385 AUTOMAKE = @AUTOMAKE@
386 AWK = @AWK@
387 BASH = @BASH@
388 BINARY_OWNER = @BINARY_OWNER@
389 BITSIZEOF_PTRDIFF_T = @BITSIZEOF_PTRDIFF_T@
390 BITSIZEOF_SIG_ATOMIC_T = @BITSIZEOF_SIG_ATOMIC_T@
391 BITSIZEOF_SIZE_T = @BITSIZEOF_SIZE_T@
392 BITSIZEOF_WCHAR_T = @BITSIZEOF_WCHAR_T@
393 BITSIZEOF_WINT_T = @BITSIZEOF_WINT_T@
394 BSDTCP_SECURITY = @BSDTCP_SECURITY@
395 BSDUDP_SECURITY = @BSDUDP_SECURITY@
396 BSD_SECURITY = @BSD_SECURITY@
397 CAT = @CAT@
398 CC = @CC@
399 CCDEPMODE = @CCDEPMODE@
400 CFLAGS = @CFLAGS@
401 CFLAG_VISIBILITY = @CFLAG_VISIBILITY@
402 CHECK_USERID = @CHECK_USERID@
403 CHIO = @CHIO@
404 CHS = @CHS@
405 CLIENT_LOGIN = @CLIENT_LOGIN@
406 CLIENT_SCRIPTS_OPT = @CLIENT_SCRIPTS_OPT@
407 COMPRESS = @COMPRESS@
408 COMPRESS_BEST_OPT = @COMPRESS_BEST_OPT@
409 COMPRESS_FAST_OPT = @COMPRESS_FAST_OPT@
410 COMPRESS_PATH = @COMPRESS_PATH@
411 COMPRESS_SUFFIX = @COMPRESS_SUFFIX@
412 CONFIG_CLOBBER_MY_CONFIG = @CONFIG_CLOBBER_MY_CONFIG@
413 CONFIG_DIR = @CONFIG_DIR@
414 CPP = @CPP@
415 CPPFLAGS = @CPPFLAGS@
416 CURL_CONFIG = @CURL_CONFIG@
417 CYGPATH_W = @CYGPATH_W@
418 DD = @DD@
419 DEFAULT_AMANDATES_FILE = @DEFAULT_AMANDATES_FILE@
420 DEFAULT_CONFIG = @DEFAULT_CONFIG@
421 DEFAULT_MAILER = @DEFAULT_MAILER@
422 DEFAULT_SERVER = @DEFAULT_SERVER@
423 DEFAULT_TAPE_DEVICE = @DEFAULT_TAPE_DEVICE@
424 DEFAULT_TAPE_SERVER = @DEFAULT_TAPE_SERVER@
425 DEFS = @DEFS@
426 DEPDIR = @DEPDIR@
427 DOC_BUILD_DATE = @DOC_BUILD_DATE@
428 DSYMUTIL = @DSYMUTIL@
429 DUMP = @DUMP@
430 DUMPBIN = @DUMPBIN@
431 DUMP_RETURNS_1 = @DUMP_RETURNS_1@
432 ECHO_C = @ECHO_C@
433 ECHO_N = @ECHO_N@
434 ECHO_T = @ECHO_T@
435 EGREP = @EGREP@
436 EMULTIHOP_HIDDEN = @EMULTIHOP_HIDDEN@
437 EMULTIHOP_VALUE = @EMULTIHOP_VALUE@
438 ENOLINK_HIDDEN = @ENOLINK_HIDDEN@
439 ENOLINK_VALUE = @ENOLINK_VALUE@
440 EOVERFLOW_HIDDEN = @EOVERFLOW_HIDDEN@
441 EOVERFLOW_VALUE = @EOVERFLOW_VALUE@
442 ERRNO_H = @ERRNO_H@
443 EXAMPLE_TAPEDEV = @EXAMPLE_TAPEDEV@
444 EXEEXT = @EXEEXT@
445 FGREP = @FGREP@
446 FLOAT_H = @FLOAT_H@
447 GETADDRINFO_LIB = @GETADDRINFO_LIB@
448 GETCONF = @GETCONF@
449 GETOPT_H = @GETOPT_H@
450 GETTEXT = @GETTEXT@
451 GIT = @GIT@
452 GLIBC21 = @GLIBC21@
453 GLIB_CFLAGS = @GLIB_CFLAGS@
454 GLIB_GENMARSHAL = @GLIB_GENMARSHAL@
455 GLIB_LIBS = @GLIB_LIBS@
456 GLIB_MKENUMS = @GLIB_MKENUMS@
457 GMSGFMT = @GMSGFMT@
458 GMSGFMT_015 = @GMSGFMT_015@
459 GNULIB_ACCEPT = @GNULIB_ACCEPT@
460 GNULIB_ATOLL = @GNULIB_ATOLL@
461 GNULIB_BIND = @GNULIB_BIND@
462 GNULIB_BTOWC = @GNULIB_BTOWC@
463 GNULIB_CALLOC_POSIX = @GNULIB_CALLOC_POSIX@
464 GNULIB_CHOWN = @GNULIB_CHOWN@
465 GNULIB_CLOSE = @GNULIB_CLOSE@
466 GNULIB_CONNECT = @GNULIB_CONNECT@
467 GNULIB_DPRINTF = @GNULIB_DPRINTF@
468 GNULIB_DUP2 = @GNULIB_DUP2@
469 GNULIB_ENVIRON = @GNULIB_ENVIRON@
470 GNULIB_EUIDACCESS = @GNULIB_EUIDACCESS@
471 GNULIB_FCHDIR = @GNULIB_FCHDIR@
472 GNULIB_FCLOSE = @GNULIB_FCLOSE@
473 GNULIB_FFLUSH = @GNULIB_FFLUSH@
474 GNULIB_FOPEN = @GNULIB_FOPEN@
475 GNULIB_FPRINTF = @GNULIB_FPRINTF@
476 GNULIB_FPRINTF_POSIX = @GNULIB_FPRINTF_POSIX@
477 GNULIB_FPUTC = @GNULIB_FPUTC@
478 GNULIB_FPUTS = @GNULIB_FPUTS@
479 GNULIB_FREOPEN = @GNULIB_FREOPEN@
480 GNULIB_FSEEK = @GNULIB_FSEEK@
481 GNULIB_FSEEKO = @GNULIB_FSEEKO@
482 GNULIB_FSYNC = @GNULIB_FSYNC@
483 GNULIB_FTELL = @GNULIB_FTELL@
484 GNULIB_FTELLO = @GNULIB_FTELLO@
485 GNULIB_FTRUNCATE = @GNULIB_FTRUNCATE@
486 GNULIB_FWRITE = @GNULIB_FWRITE@
487 GNULIB_GETADDRINFO = @GNULIB_GETADDRINFO@
488 GNULIB_GETCWD = @GNULIB_GETCWD@
489 GNULIB_GETDELIM = @GNULIB_GETDELIM@
490 GNULIB_GETDOMAINNAME = @GNULIB_GETDOMAINNAME@
491 GNULIB_GETDTABLESIZE = @GNULIB_GETDTABLESIZE@
492 GNULIB_GETHOSTNAME = @GNULIB_GETHOSTNAME@
493 GNULIB_GETLINE = @GNULIB_GETLINE@
494 GNULIB_GETLOADAVG = @GNULIB_GETLOADAVG@
495 GNULIB_GETLOGIN_R = @GNULIB_GETLOGIN_R@
496 GNULIB_GETPAGESIZE = @GNULIB_GETPAGESIZE@
497 GNULIB_GETPEERNAME = @GNULIB_GETPEERNAME@
498 GNULIB_GETSOCKNAME = @GNULIB_GETSOCKNAME@
499 GNULIB_GETSOCKOPT = @GNULIB_GETSOCKOPT@
500 GNULIB_GETSUBOPT = @GNULIB_GETSUBOPT@
501 GNULIB_GETUSERSHELL = @GNULIB_GETUSERSHELL@
502 GNULIB_INET_NTOP = @GNULIB_INET_NTOP@
503 GNULIB_INET_PTON = @GNULIB_INET_PTON@
504 GNULIB_LCHMOD = @GNULIB_LCHMOD@
505 GNULIB_LCHOWN = @GNULIB_LCHOWN@
506 GNULIB_LINK = @GNULIB_LINK@
507 GNULIB_LISTEN = @GNULIB_LISTEN@
508 GNULIB_LSEEK = @GNULIB_LSEEK@
509 GNULIB_LSTAT = @GNULIB_LSTAT@
510 GNULIB_MALLOC_POSIX = @GNULIB_MALLOC_POSIX@
511 GNULIB_MBRLEN = @GNULIB_MBRLEN@
512 GNULIB_MBRTOWC = @GNULIB_MBRTOWC@
513 GNULIB_MBSINIT = @GNULIB_MBSINIT@
514 GNULIB_MBSNRTOWCS = @GNULIB_MBSNRTOWCS@
515 GNULIB_MBSRTOWCS = @GNULIB_MBSRTOWCS@
516 GNULIB_MKDTEMP = @GNULIB_MKDTEMP@
517 GNULIB_MKSTEMP = @GNULIB_MKSTEMP@
518 GNULIB_OBSTACK_PRINTF = @GNULIB_OBSTACK_PRINTF@
519 GNULIB_OBSTACK_PRINTF_POSIX = @GNULIB_OBSTACK_PRINTF_POSIX@
520 GNULIB_PERROR = @GNULIB_PERROR@
521 GNULIB_PRINTF = @GNULIB_PRINTF@
522 GNULIB_PRINTF_POSIX = @GNULIB_PRINTF_POSIX@
523 GNULIB_PUTC = @GNULIB_PUTC@
524 GNULIB_PUTCHAR = @GNULIB_PUTCHAR@
525 GNULIB_PUTENV = @GNULIB_PUTENV@
526 GNULIB_PUTS = @GNULIB_PUTS@
527 GNULIB_RANDOM_R = @GNULIB_RANDOM_R@
528 GNULIB_READLINK = @GNULIB_READLINK@
529 GNULIB_REALLOC_POSIX = @GNULIB_REALLOC_POSIX@
530 GNULIB_RECV = @GNULIB_RECV@
531 GNULIB_RECVFROM = @GNULIB_RECVFROM@
532 GNULIB_RPMATCH = @GNULIB_RPMATCH@
533 GNULIB_SEND = @GNULIB_SEND@
534 GNULIB_SENDTO = @GNULIB_SENDTO@
535 GNULIB_SETENV = @GNULIB_SETENV@
536 GNULIB_SETSOCKOPT = @GNULIB_SETSOCKOPT@
537 GNULIB_SHUTDOWN = @GNULIB_SHUTDOWN@
538 GNULIB_SLEEP = @GNULIB_SLEEP@
539 GNULIB_SNPRINTF = @GNULIB_SNPRINTF@
540 GNULIB_SOCKET = @GNULIB_SOCKET@
541 GNULIB_SPRINTF_POSIX = @GNULIB_SPRINTF_POSIX@
542 GNULIB_STDIO_H_SIGPIPE = @GNULIB_STDIO_H_SIGPIPE@
543 GNULIB_STRTOD = @GNULIB_STRTOD@
544 GNULIB_STRTOLL = @GNULIB_STRTOLL@
545 GNULIB_STRTOULL = @GNULIB_STRTOULL@
546 GNULIB_UNISTD_H_SIGPIPE = @GNULIB_UNISTD_H_SIGPIPE@
547 GNULIB_UNSETENV = @GNULIB_UNSETENV@
548 GNULIB_VASPRINTF = @GNULIB_VASPRINTF@
549 GNULIB_VDPRINTF = @GNULIB_VDPRINTF@
550 GNULIB_VFPRINTF = @GNULIB_VFPRINTF@
551 GNULIB_VFPRINTF_POSIX = @GNULIB_VFPRINTF_POSIX@
552 GNULIB_VPRINTF = @GNULIB_VPRINTF@
553 GNULIB_VPRINTF_POSIX = @GNULIB_VPRINTF_POSIX@
554 GNULIB_VSNPRINTF = @GNULIB_VSNPRINTF@
555 GNULIB_VSPRINTF_POSIX = @GNULIB_VSPRINTF_POSIX@
556 GNULIB_WCRTOMB = @GNULIB_WCRTOMB@
557 GNULIB_WCSNRTOMBS = @GNULIB_WCSNRTOMBS@
558 GNULIB_WCSRTOMBS = @GNULIB_WCSRTOMBS@
559 GNULIB_WCTOB = @GNULIB_WCTOB@
560 GNULIB_WCWIDTH = @GNULIB_WCWIDTH@
561 GNULIB_WRITE = @GNULIB_WRITE@
562 GNUPLOT = @GNUPLOT@
563 GNUTAR = @GNUTAR@
564 GNUTAR_LISTED_INCREMENTAL_DIR = @GNUTAR_LISTED_INCREMENTAL_DIR@
565 GOBJECT_QUERY = @GOBJECT_QUERY@
566 GREP = @GREP@
567 GZIP = @GZIP@
568 HAVE_ARPA_INET_H = @HAVE_ARPA_INET_H@
569 HAVE_ATOLL = @HAVE_ATOLL@
570 HAVE_BTOWC = @HAVE_BTOWC@
571 HAVE_CALLOC_POSIX = @HAVE_CALLOC_POSIX@
572 HAVE_DECL_ENVIRON = @HAVE_DECL_ENVIRON@
573 HAVE_DECL_FREEADDRINFO = @HAVE_DECL_FREEADDRINFO@
574 HAVE_DECL_GAI_STRERROR = @HAVE_DECL_GAI_STRERROR@
575 HAVE_DECL_GETADDRINFO = @HAVE_DECL_GETADDRINFO@
576 HAVE_DECL_GETDELIM = @HAVE_DECL_GETDELIM@
577 HAVE_DECL_GETLINE = @HAVE_DECL_GETLINE@
578 HAVE_DECL_GETLOADAVG = @HAVE_DECL_GETLOADAVG@
579 HAVE_DECL_GETLOGIN_R = @HAVE_DECL_GETLOGIN_R@
580 HAVE_DECL_GETNAMEINFO = @HAVE_DECL_GETNAMEINFO@
581 HAVE_DECL_INET_NTOP = @HAVE_DECL_INET_NTOP@
582 HAVE_DECL_INET_PTON = @HAVE_DECL_INET_PTON@
583 HAVE_DECL_OBSTACK_PRINTF = @HAVE_DECL_OBSTACK_PRINTF@
584 HAVE_DECL_SNPRINTF = @HAVE_DECL_SNPRINTF@
585 HAVE_DECL_VSNPRINTF = @HAVE_DECL_VSNPRINTF@
586 HAVE_DECL_WCTOB = @HAVE_DECL_WCTOB@
587 HAVE_DECL_WCWIDTH = @HAVE_DECL_WCWIDTH@
588 HAVE_DPRINTF = @HAVE_DPRINTF@
589 HAVE_DUP2 = @HAVE_DUP2@
590 HAVE_EUIDACCESS = @HAVE_EUIDACCESS@
591 HAVE_FSEEKO = @HAVE_FSEEKO@
592 HAVE_FSYNC = @HAVE_FSYNC@
593 HAVE_FTELLO = @HAVE_FTELLO@
594 HAVE_FTRUNCATE = @HAVE_FTRUNCATE@
595 HAVE_GETDOMAINNAME = @HAVE_GETDOMAINNAME@
596 HAVE_GETDTABLESIZE = @HAVE_GETDTABLESIZE@
597 HAVE_GETHOSTNAME = @HAVE_GETHOSTNAME@
598 HAVE_GETPAGESIZE = @HAVE_GETPAGESIZE@
599 HAVE_GETSUBOPT = @HAVE_GETSUBOPT@
600 HAVE_GETUSERSHELL = @HAVE_GETUSERSHELL@
601 HAVE_GZIP = @HAVE_GZIP@
602 HAVE_INTTYPES_H = @HAVE_INTTYPES_H@
603 HAVE_ISWCNTRL = @HAVE_ISWCNTRL@
604 HAVE_LCHMOD = @HAVE_LCHMOD@
605 HAVE_LINK = @HAVE_LINK@
606 HAVE_LONG_LONG_INT = @HAVE_LONG_LONG_INT@
607 HAVE_LSTAT = @HAVE_LSTAT@
608 HAVE_MALLOC_POSIX = @HAVE_MALLOC_POSIX@
609 HAVE_MBRLEN = @HAVE_MBRLEN@
610 HAVE_MBRTOWC = @HAVE_MBRTOWC@
611 HAVE_MBSINIT = @HAVE_MBSINIT@
612 HAVE_MBSNRTOWCS = @HAVE_MBSNRTOWCS@
613 HAVE_MBSRTOWCS = @HAVE_MBSRTOWCS@
614 HAVE_MKDTEMP = @HAVE_MKDTEMP@
615 HAVE_NETDB_H = @HAVE_NETDB_H@
616 HAVE_NETINET_IN_H = @HAVE_NETINET_IN_H@
617 HAVE_OS_H = @HAVE_OS_H@
618 HAVE_RANDOM_H = @HAVE_RANDOM_H@
619 HAVE_RANDOM_R = @HAVE_RANDOM_R@
620 HAVE_READLINK = @HAVE_READLINK@
621 HAVE_REALLOC_POSIX = @HAVE_REALLOC_POSIX@
622 HAVE_RPMATCH = @HAVE_RPMATCH@
623 HAVE_SETENV = @HAVE_SETENV@
624 HAVE_SIGNED_SIG_ATOMIC_T = @HAVE_SIGNED_SIG_ATOMIC_T@
625 HAVE_SIGNED_WCHAR_T = @HAVE_SIGNED_WCHAR_T@
626 HAVE_SIGNED_WINT_T = @HAVE_SIGNED_WINT_T@
627 HAVE_SLEEP = @HAVE_SLEEP@
628 HAVE_STDINT_H = @HAVE_STDINT_H@
629 HAVE_STRTOD = @HAVE_STRTOD@
630 HAVE_STRTOLL = @HAVE_STRTOLL@
631 HAVE_STRTOULL = @HAVE_STRTOULL@
632 HAVE_STRUCT_ADDRINFO = @HAVE_STRUCT_ADDRINFO@
633 HAVE_STRUCT_RANDOM_DATA = @HAVE_STRUCT_RANDOM_DATA@
634 HAVE_STRUCT_TIMEVAL = @HAVE_STRUCT_TIMEVAL@
635 HAVE_SYS_BITYPES_H = @HAVE_SYS_BITYPES_H@
636 HAVE_SYS_INTTYPES_H = @HAVE_SYS_INTTYPES_H@
637 HAVE_SYS_LOADAVG_H = @HAVE_SYS_LOADAVG_H@
638 HAVE_SYS_PARAM_H = @HAVE_SYS_PARAM_H@
639 HAVE_SYS_SOCKET_H = @HAVE_SYS_SOCKET_H@
640 HAVE_SYS_TIME_H = @HAVE_SYS_TIME_H@
641 HAVE_SYS_TYPES_H = @HAVE_SYS_TYPES_H@
642 HAVE_UNISTD_H = @HAVE_UNISTD_H@
643 HAVE_UNSETENV = @HAVE_UNSETENV@
644 HAVE_UNSIGNED_LONG_LONG_INT = @HAVE_UNSIGNED_LONG_LONG_INT@
645 HAVE_VASPRINTF = @HAVE_VASPRINTF@
646 HAVE_VDPRINTF = @HAVE_VDPRINTF@
647 HAVE_VISIBILITY = @HAVE_VISIBILITY@
648 HAVE_WCHAR_H = @HAVE_WCHAR_H@
649 HAVE_WCRTOMB = @HAVE_WCRTOMB@
650 HAVE_WCSNRTOMBS = @HAVE_WCSNRTOMBS@
651 HAVE_WCSRTOMBS = @HAVE_WCSRTOMBS@
652 HAVE_WCTYPE_H = @HAVE_WCTYPE_H@
653 HAVE_WINSOCK2_H = @HAVE_WINSOCK2_H@
654 HAVE_WINT_T = @HAVE_WINT_T@
655 HAVE_WS2TCPIP_H = @HAVE_WS2TCPIP_H@
656 HAVE__BOOL = @HAVE__BOOL@
657 HOSTENT_LIB = @HOSTENT_LIB@
658 INCLUDE_NEXT = @INCLUDE_NEXT@
659 INCLUDE_NEXT_AS_FIRST_DIRECTIVE = @INCLUDE_NEXT_AS_FIRST_DIRECTIVE@
660 INSTALL = @INSTALL@
661 INSTALL_DATA = @INSTALL_DATA@
662 INSTALL_PROGRAM = @INSTALL_PROGRAM@
663 INSTALL_SCRIPT = @INSTALL_SCRIPT@
664 INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@
665 INTLLIBS = @INTLLIBS@
666 INTL_MACOSX_LIBS = @INTL_MACOSX_LIBS@
667 KRB5_SECURITY = @KRB5_SECURITY@
668 LD = @LD@
669 LDFLAGS = @LDFLAGS@
670 LEX = @LEX@
671 LEXLIB = @LEXLIB@
672 LEX_OUTPUT_ROOT = @LEX_OUTPUT_ROOT@
673 LIBCURL = @LIBCURL@
674 LIBCURL_CPPFLAGS = @LIBCURL_CPPFLAGS@
675 LIBICONV = @LIBICONV@
676 LIBINTL = @LIBINTL@
677 LIBMULTITHREAD = @LIBMULTITHREAD@
678 LIBOBJS = @LIBOBJS@
679 LIBPTH = @LIBPTH@
680 LIBS = @LIBS@
681 LIBTHREAD = @LIBTHREAD@
682 LIBTOOL = @LIBTOOL@
683 LIBTOOL_DEPS = @LIBTOOL_DEPS@
684 LIPO = @LIPO@
685 LN_S = @LN_S@
686 LOCALCHARSET_TESTS_ENVIRONMENT = @LOCALCHARSET_TESTS_ENVIRONMENT@
687 LOCALE_FR = @LOCALE_FR@
688 LOCALE_FR_UTF8 = @LOCALE_FR_UTF8@
689 LOCALE_JA = @LOCALE_JA@
690 LOCALE_ZH_CN = @LOCALE_ZH_CN@
691 LOCKING = @LOCKING@
692 LOW_TCPPORTRANGE = @LOW_TCPPORTRANGE@
693 LPR = @LPR@
694 LPRFLAG = @LPRFLAG@
695 LTALLOCA = @LTALLOCA@
696 LTLIBICONV = @LTLIBICONV@
697 LTLIBINTL = @LTLIBINTL@
698 LTLIBMULTITHREAD = @LTLIBMULTITHREAD@
699 LTLIBOBJS = @LTLIBOBJS@
700 LTLIBPTH = @LTLIBPTH@
701 LTLIBTHREAD = @LTLIBTHREAD@
702 MAILER = @MAILER@
703 MAKEINFO = @MAKEINFO@
704 MCUTIL = @MCUTIL@
705 MKDIR_P = @MKDIR_P@
706 MSGFMT = @MSGFMT@
707 MSGFMT_015 = @MSGFMT_015@
708 MSGMERGE = @MSGMERGE@
709 MT = @MT@
710 MTX = @MTX@
711 MT_FILE_FLAG = @MT_FILE_FLAG@
712 NETDB_H = @NETDB_H@
713 NETINET_IN_H = @NETINET_IN_H@
714 NEXT_ARPA_INET_H = @NEXT_ARPA_INET_H@
715 NEXT_ERRNO_H = @NEXT_ERRNO_H@
716 NEXT_FLOAT_H = @NEXT_FLOAT_H@
717 NEXT_NETDB_H = @NEXT_NETDB_H@
718 NEXT_NETINET_IN_H = @NEXT_NETINET_IN_H@
719 NEXT_STDINT_H = @NEXT_STDINT_H@
720 NEXT_STDIO_H = @NEXT_STDIO_H@
721 NEXT_STDLIB_H = @NEXT_STDLIB_H@
722 NEXT_SYS_SOCKET_H = @NEXT_SYS_SOCKET_H@
723 NEXT_SYS_STAT_H = @NEXT_SYS_STAT_H@
724 NEXT_SYS_TIME_H = @NEXT_SYS_TIME_H@
725 NEXT_UNISTD_H = @NEXT_UNISTD_H@
726 NEXT_WCHAR_H = @NEXT_WCHAR_H@
727 NEXT_WCTYPE_H = @NEXT_WCTYPE_H@
728 NM = @NM@
729 NMEDIT = @NMEDIT@
730 OBJEXT = @OBJEXT@
731 OTOOL = @OTOOL@
732 OTOOL64 = @OTOOL64@
733 PACKAGE = @PACKAGE@
734 PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@
735 PACKAGE_NAME = @PACKAGE_NAME@
736 PACKAGE_STRING = @PACKAGE_STRING@
737 PACKAGE_TARNAME = @PACKAGE_TARNAME@
738 PACKAGE_VERSION = @PACKAGE_VERSION@
739 PATH_SEPARATOR = @PATH_SEPARATOR@
740 PCAT = @PCAT@
741 PERL = @PERL@
742 PERLEXTLIBS = @PERLEXTLIBS@
743 PERL_INC = @PERL_INC@
744 PKG_CONFIG = @PKG_CONFIG@
745 POSUB = @POSUB@
746 PRAGMA_SYSTEM_HEADER = @PRAGMA_SYSTEM_HEADER@
747 PS = @PS@
748 PS_ARGUMENT = @PS_ARGUMENT@
749 PS_ARGUMENT_ARGS = @PS_ARGUMENT_ARGS@
750 PTRDIFF_T_SUFFIX = @PTRDIFF_T_SUFFIX@
751 RANLIB = @RANLIB@
752 READLINE_LIBS = @READLINE_LIBS@
753 REPLACE_BTOWC = @REPLACE_BTOWC@
754 REPLACE_CHOWN = @REPLACE_CHOWN@
755 REPLACE_CLOSE = @REPLACE_CLOSE@
756 REPLACE_DPRINTF = @REPLACE_DPRINTF@
757 REPLACE_FCHDIR = @REPLACE_FCHDIR@
758 REPLACE_FCLOSE = @REPLACE_FCLOSE@
759 REPLACE_FFLUSH = @REPLACE_FFLUSH@
760 REPLACE_FOPEN = @REPLACE_FOPEN@
761 REPLACE_FPRINTF = @REPLACE_FPRINTF@
762 REPLACE_FREOPEN = @REPLACE_FREOPEN@
763 REPLACE_FSEEK = @REPLACE_FSEEK@
764 REPLACE_FSEEKO = @REPLACE_FSEEKO@
765 REPLACE_FTELL = @REPLACE_FTELL@
766 REPLACE_FTELLO = @REPLACE_FTELLO@
767 REPLACE_GETCWD = @REPLACE_GETCWD@
768 REPLACE_GETLINE = @REPLACE_GETLINE@
769 REPLACE_GETPAGESIZE = @REPLACE_GETPAGESIZE@
770 REPLACE_GETTIMEOFDAY = @REPLACE_GETTIMEOFDAY@
771 REPLACE_ISWCNTRL = @REPLACE_ISWCNTRL@
772 REPLACE_LCHOWN = @REPLACE_LCHOWN@
773 REPLACE_LSEEK = @REPLACE_LSEEK@
774 REPLACE_LSTAT = @REPLACE_LSTAT@
775 REPLACE_MBRLEN = @REPLACE_MBRLEN@
776 REPLACE_MBRTOWC = @REPLACE_MBRTOWC@
777 REPLACE_MBSINIT = @REPLACE_MBSINIT@
778 REPLACE_MBSNRTOWCS = @REPLACE_MBSNRTOWCS@
779 REPLACE_MBSRTOWCS = @REPLACE_MBSRTOWCS@
780 REPLACE_MBSTATE_T = @REPLACE_MBSTATE_T@
781 REPLACE_MKDIR = @REPLACE_MKDIR@
782 REPLACE_MKSTEMP = @REPLACE_MKSTEMP@
783 REPLACE_OBSTACK_PRINTF = @REPLACE_OBSTACK_PRINTF@
784 REPLACE_PERROR = @REPLACE_PERROR@
785 REPLACE_PRINTF = @REPLACE_PRINTF@
786 REPLACE_PUTENV = @REPLACE_PUTENV@
787 REPLACE_SNPRINTF = @REPLACE_SNPRINTF@
788 REPLACE_SPRINTF = @REPLACE_SPRINTF@
789 REPLACE_STDIO_WRITE_FUNCS = @REPLACE_STDIO_WRITE_FUNCS@
790 REPLACE_STRTOD = @REPLACE_STRTOD@
791 REPLACE_VASPRINTF = @REPLACE_VASPRINTF@
792 REPLACE_VDPRINTF = @REPLACE_VDPRINTF@
793 REPLACE_VFPRINTF = @REPLACE_VFPRINTF@
794 REPLACE_VPRINTF = @REPLACE_VPRINTF@
795 REPLACE_VSNPRINTF = @REPLACE_VSNPRINTF@
796 REPLACE_VSPRINTF = @REPLACE_VSPRINTF@
797 REPLACE_WCRTOMB = @REPLACE_WCRTOMB@
798 REPLACE_WCSRTOMBS = @REPLACE_WCSRTOMBS@
799 REPLACE_WCTOB = @REPLACE_WCTOB@
800 REPLACE_WCWIDTH = @REPLACE_WCWIDTH@
801 REPLACE_WRITE = @REPLACE_WRITE@
802 RESTORE = @RESTORE@
803 RPCGEN = @RPCGEN@
804 RSH_SECURITY = @RSH_SECURITY@
805 SAMBA_CLIENT = @SAMBA_CLIENT@
806 SED = @SED@
807 SERVENT_LIB = @SERVENT_LIB@
808 SERVICE_SUFFIX = @SERVICE_SUFFIX@
809 SETUID_GROUP = @SETUID_GROUP@
810 SET_MAKE = @SET_MAKE@
811 SHELL = @SHELL@
812 SIG_ATOMIC_T_SUFFIX = @SIG_ATOMIC_T_SUFFIX@
813 SIZE_T_SUFFIX = @SIZE_T_SUFFIX@
814 SNAPSHOT_STAMP = @SNAPSHOT_STAMP@
815 SORT = @SORT@
816 SSH = @SSH@
817 SSH_SECURITY = @SSH_SECURITY@
818 STAR = @STAR@
819 STDBOOL_H = @STDBOOL_H@
820 STDINT_H = @STDINT_H@
821 STRIP = @STRIP@
822 SVN = @SVN@
823 SWIG = @SWIG@
824 SWIG_LIB = @SWIG_LIB@
825 SYS_SOCKET_H = @SYS_SOCKET_H@
826 SYS_STAT_H = @SYS_STAT_H@
827 SYS_TIME_H = @SYS_TIME_H@
828 TCPPORTRANGE = @TCPPORTRANGE@
829 UDPPORTRANGE = @UDPPORTRANGE@
830 UNCOMPRESS_OPT = @UNCOMPRESS_OPT@
831 UNCOMPRESS_PATH = @UNCOMPRESS_PATH@
832 UNISTD_H_HAVE_WINSOCK2_H = @UNISTD_H_HAVE_WINSOCK2_H@
833 USE_AMANDAHOSTS = @USE_AMANDAHOSTS@
834 USE_NLS = @USE_NLS@
835 USE_RUNDUMP = @USE_RUNDUMP@
836 VDUMP = @VDUMP@
837 VERSION = @VERSION@
838 VERSION_COMMENT = @VERSION_COMMENT@
839 VERSION_MAJOR = @VERSION_MAJOR@
840 VERSION_MINOR = @VERSION_MINOR@
841 VERSION_PATCH = @VERSION_PATCH@
842 VOID_UNSETENV = @VOID_UNSETENV@
843 VRESTORE = @VRESTORE@
844 VXDUMP = @VXDUMP@
845 VXRESTORE = @VXRESTORE@
846 WCHAR_H = @WCHAR_H@
847 WCHAR_T_SUFFIX = @WCHAR_T_SUFFIX@
848 WCTYPE_H = @WCTYPE_H@
849 WINT_T_SUFFIX = @WINT_T_SUFFIX@
850 XFSDUMP = @XFSDUMP@
851 XFSRESTORE = @XFSRESTORE@
852 XGETTEXT = @XGETTEXT@
853 XGETTEXT_015 = @XGETTEXT_015@
854 XSLREL = @XSLREL@
855 XSLTPROC = @XSLTPROC@
856 XSLTPROC_FLAGS = @XSLTPROC_FLAGS@
857 YACC = @YACC@
858 YFLAGS = @YFLAGS@
859 _libcurl_config = @_libcurl_config@
860 abs_builddir = @abs_builddir@
861 abs_srcdir = @abs_srcdir@
862 abs_top_builddir = @abs_top_builddir@
863 abs_top_srcdir = @abs_top_srcdir@
864 ac_ct_CC = @ac_ct_CC@
865 ac_ct_DUMPBIN = @ac_ct_DUMPBIN@
866 am__include = @am__include@
867 am__leading_dot = @am__leading_dot@
868 am__quote = @am__quote@
869 am__tar = @am__tar@
870 am__untar = @am__untar@
871 amdatadir = @amdatadir@
872 amincludedir = @amincludedir@
873 amlibdir = @amlibdir@
874 amlibexecdir = @amlibexecdir@
875 amperldir = @amperldir@
876 bindir = @bindir@
877 build = @build@
878 build_alias = @build_alias@
879 build_cpu = @build_cpu@
880 build_os = @build_os@
881 build_vendor = @build_vendor@
882 builddir = @builddir@
883 datadir = @datadir@
884 datarootdir = @datarootdir@
885 docdir = @docdir@
886 dvidir = @dvidir@
887 exec_prefix = @exec_prefix@
888 gl_LIBOBJS = @gl_LIBOBJS@
889 gl_LTLIBOBJS = @gl_LTLIBOBJS@
890 gltests_LIBOBJS = @gltests_LIBOBJS@
891 gltests_LTLIBOBJS = @gltests_LTLIBOBJS@
892 host = @host@
893 host_alias = @host_alias@
894 host_cpu = @host_cpu@
895 host_os = @host_os@
896 host_vendor = @host_vendor@
897 htmldir = @htmldir@
898 includedir = @includedir@
899 infodir = @infodir@
900 install_sh = @install_sh@
901 libdir = @libdir@
902 libexecdir = @libexecdir@
903 localedir = @localedir@
904 localstatedir = @localstatedir@
905 lt_ECHO = @lt_ECHO@
906 mandir = @mandir@
907 mkdir_p = @mkdir_p@
908 oldincludedir = @oldincludedir@
909 pdfdir = @pdfdir@
910 prefix = @prefix@
911 program_transform_name = @program_transform_name@
912 psdir = @psdir@
913 sbindir = @sbindir@
914 sharedstatedir = @sharedstatedir@
915 srcdir = @srcdir@
916 sysconfdir = @sysconfdir@
917 target_alias = @target_alias@
918 top_build_prefix = @top_build_prefix@
919 top_builddir = @top_builddir@
920 top_srcdir = @top_srcdir@
921 SUFFIXES = 
922 EXTRA_DIST = amplot.awk amplot.g
923 BUILT_SOURCES = 
924 MOSTLYCLEANFILES = 
925
926 # config.status leaves config.log files around
927 CLEANFILES = config.log amplot.gp.new
928
929 # and we'll need to clean up our generated files for distclean
930 DISTCLEANFILES = $(SCRIPTS_SHELL) $(SCRIPTS_PERL) $(SCRIPTS_AWK) \
931         $(SCRIPTS_INCLUDE) $(am__append_1) amplot.gp
932 MAINTAINERCLEANFILES = 
933
934 # sed expression to strip leading directories from a filename; this converts e.g.,
935 # src/foo/bar.so to bar.so.
936 strip_leading_dirs = s|^.*/||
937 @WANT_INSTALLPERMS_FALSE@do_file = pa="$$dest"/`echo "$$cmd"|sed '$(strip_leading_dirs)'|sed '$(transform)'`; \
938 @WANT_INSTALLPERMS_FALSE@    echo "installperm \"$$chown\" \"$$chmod\" \"$$pa\"" >> "$(installperms_sh)"
939
940
941 # define a snippet of the scripts below to either perform a chown/chmod operation,
942 # or record that operation in the logfile.  On entry to the snippet, $$dest is the
943 # destination directory, $$cmd is the srcdir-relative pathname of the target file,
944 # $$chown is the ownership, and $$chmod is the permission pattern.
945 @WANT_INSTALLPERMS_TRUE@do_file = pa="$(DESTDIR)$$dest"/`echo "$$cmd"|sed '$(strip_leading_dirs)'|sed '$(transform)'`; \
946 @WANT_INSTALLPERMS_TRUE@    if test -n "$$chown"; then \
947 @WANT_INSTALLPERMS_TRUE@        echo chown "$$chown" "$$pa"; \
948 @WANT_INSTALLPERMS_TRUE@        chown "$$chown" "$$pa" || exit 1; \
949 @WANT_INSTALLPERMS_TRUE@    fi; \
950 @WANT_INSTALLPERMS_TRUE@    if test -n "$$chmod"; then \
951 @WANT_INSTALLPERMS_TRUE@        echo chmod "$$chmod" "$$pa"; \
952 @WANT_INSTALLPERMS_TRUE@        chmod "$$chmod" "$$pa" || exit 1; \
953 @WANT_INSTALLPERMS_TRUE@    fi 
954
955 @WANT_INSTALLPERMS_FALSE@installperms_sh = "$(top_builddir)/installperms.sh"
956 SCRIPTS_SHELL = amplot
957 SCRIPTS_AWK = amcat.awk
958 sbin_SCRIPTS = $(SCRIPTS_SHELL)
959 amplotdir = $(amlibexecdir)
960 amplot_DATA = $(SCRIPTS_AWK) amplot.awk amplot.g amplot.gp
961 INSTALLPERMS_data = \
962         dest=$(amplotdir) chown=amanda $(amplot_DATA) \
963         dest=$(sbindir) chown=amanda $(sbin_SCRIPTS)
964
965 all: $(BUILT_SOURCES)
966         $(MAKE) $(AM_MAKEFLAGS) all-am
967
968 .SUFFIXES:
969 .SUFFIXES: 
970 $(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)
971         @for dep in $?; do \
972           case '$(am__configure_deps)' in \
973             *$$dep*) \
974               ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \
975                 && { if test -f $@; then exit 0; else break; fi; }; \
976               exit 1;; \
977           esac; \
978         done; \
979         echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu amplot/Makefile'; \
980         $(am__cd) $(top_srcdir) && \
981           $(AUTOMAKE) --gnu amplot/Makefile
982 .PRECIOUS: Makefile
983 Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
984         @case '$?' in \
985           *config.status*) \
986             cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \
987           *) \
988             echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \
989             cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \
990         esac;
991
992 $(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES)
993         cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
994
995 $(top_srcdir)/configure:  $(am__configure_deps)
996         cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
997 $(ACLOCAL_M4):  $(am__aclocal_m4_deps)
998         cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
999 $(am__aclocal_m4_deps):
1000 install-sbinSCRIPTS: $(sbin_SCRIPTS)
1001         @$(NORMAL_INSTALL)
1002         test -z "$(sbindir)" || $(MKDIR_P) "$(DESTDIR)$(sbindir)"
1003         @list='$(sbin_SCRIPTS)'; test -n "$(sbindir)" || list=; \
1004         for p in $$list; do \
1005           if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \
1006           if test -f "$$d$$p"; then echo "$$d$$p"; echo "$$p"; else :; fi; \
1007         done | \
1008         sed -e 'p;s,.*/,,;n' \
1009             -e 'h;s|.*|.|' \
1010             -e 'p;x;s,.*/,,;$(transform)' | sed 'N;N;N;s,\n, ,g' | \
1011         $(AWK) 'BEGIN { files["."] = ""; dirs["."] = 1; } \
1012           { d=$$3; if (dirs[d] != 1) { print "d", d; dirs[d] = 1 } \
1013             if ($$2 == $$4) { files[d] = files[d] " " $$1; \
1014               if (++n[d] == $(am__install_max)) { \
1015                 print "f", d, files[d]; n[d] = 0; files[d] = "" } } \
1016             else { print "f", d "/" $$4, $$1 } } \
1017           END { for (d in files) print "f", d, files[d] }' | \
1018         while read type dir files; do \
1019              if test "$$dir" = .; then dir=; else dir=/$$dir; fi; \
1020              test -z "$$files" || { \
1021                echo " $(INSTALL_SCRIPT) $$files '$(DESTDIR)$(sbindir)$$dir'"; \
1022                $(INSTALL_SCRIPT) $$files "$(DESTDIR)$(sbindir)$$dir" || exit $$?; \
1023              } \
1024         ; done
1025
1026 uninstall-sbinSCRIPTS:
1027         @$(NORMAL_UNINSTALL)
1028         @list='$(sbin_SCRIPTS)'; test -n "$(sbindir)" || exit 0; \
1029         files=`for p in $$list; do echo "$$p"; done | \
1030                sed -e 's,.*/,,;$(transform)'`; \
1031         test -n "$$list" || exit 0; \
1032         echo " ( cd '$(DESTDIR)$(sbindir)' && rm -f" $$files ")"; \
1033         cd "$(DESTDIR)$(sbindir)" && rm -f $$files
1034
1035 mostlyclean-libtool:
1036         -rm -f *.lo
1037
1038 clean-libtool:
1039         -rm -rf .libs _libs
1040 install-amplotDATA: $(amplot_DATA)
1041         @$(NORMAL_INSTALL)
1042         test -z "$(amplotdir)" || $(MKDIR_P) "$(DESTDIR)$(amplotdir)"
1043         @list='$(amplot_DATA)'; test -n "$(amplotdir)" || list=; \
1044         for p in $$list; do \
1045           if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \
1046           echo "$$d$$p"; \
1047         done | $(am__base_list) | \
1048         while read files; do \
1049           echo " $(INSTALL_DATA) $$files '$(DESTDIR)$(amplotdir)'"; \
1050           $(INSTALL_DATA) $$files "$(DESTDIR)$(amplotdir)" || exit $$?; \
1051         done
1052
1053 uninstall-amplotDATA:
1054         @$(NORMAL_UNINSTALL)
1055         @list='$(amplot_DATA)'; test -n "$(amplotdir)" || list=; \
1056         files=`for p in $$list; do echo $$p; done | sed -e 's|^.*/||'`; \
1057         test -n "$$files" || exit 0; \
1058         echo " ( cd '$(DESTDIR)$(amplotdir)' && rm -f" $$files ")"; \
1059         cd "$(DESTDIR)$(amplotdir)" && rm -f $$files
1060 tags: TAGS
1061 TAGS:
1062
1063 ctags: CTAGS
1064 CTAGS:
1065
1066
1067 distdir: $(DISTFILES)
1068         @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
1069         topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
1070         list='$(DISTFILES)'; \
1071           dist_files=`for file in $$list; do echo $$file; done | \
1072           sed -e "s|^$$srcdirstrip/||;t" \
1073               -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \
1074         case $$dist_files in \
1075           */*) $(MKDIR_P) `echo "$$dist_files" | \
1076                            sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \
1077                            sort -u` ;; \
1078         esac; \
1079         for file in $$dist_files; do \
1080           if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \
1081           if test -d $$d/$$file; then \
1082             dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \
1083             if test -d "$(distdir)/$$file"; then \
1084               find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \
1085             fi; \
1086             if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \
1087               cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \
1088               find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \
1089             fi; \
1090             cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \
1091           else \
1092             test -f "$(distdir)/$$file" \
1093             || cp -p $$d/$$file "$(distdir)/$$file" \
1094             || exit 1; \
1095           fi; \
1096         done
1097         $(MAKE) $(AM_MAKEFLAGS) \
1098           top_distdir="$(top_distdir)" distdir="$(distdir)" \
1099           dist-hook
1100 check-am: all-am
1101         $(MAKE) $(AM_MAKEFLAGS) check-local
1102 check: $(BUILT_SOURCES)
1103         $(MAKE) $(AM_MAKEFLAGS) check-am
1104 all-am: Makefile $(SCRIPTS) $(DATA)
1105 installdirs:
1106         for dir in "$(DESTDIR)$(sbindir)" "$(DESTDIR)$(amplotdir)"; do \
1107           test -z "$$dir" || $(MKDIR_P) "$$dir"; \
1108         done
1109 install: $(BUILT_SOURCES)
1110         $(MAKE) $(AM_MAKEFLAGS) install-am
1111 install-exec: install-exec-am
1112 install-data: install-data-am
1113 uninstall: uninstall-am
1114
1115 install-am: all-am
1116         @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am
1117
1118 installcheck: installcheck-am
1119 install-strip:
1120         $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \
1121           install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \
1122           `test -z '$(STRIP)' || \
1123             echo "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'"` install
1124 mostlyclean-generic:
1125         -test -z "$(MOSTLYCLEANFILES)" || rm -f $(MOSTLYCLEANFILES)
1126
1127 clean-generic:
1128         -test -z "$(CLEANFILES)" || rm -f $(CLEANFILES)
1129
1130 distclean-generic:
1131         -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES)
1132         -test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES)
1133         -test -z "$(DISTCLEANFILES)" || rm -f $(DISTCLEANFILES)
1134
1135 maintainer-clean-generic:
1136         @echo "This command is intended for maintainers to use"
1137         @echo "it deletes files that may require special tools to rebuild."
1138         -test -z "$(BUILT_SOURCES)" || rm -f $(BUILT_SOURCES)
1139         -test -z "$(MAINTAINERCLEANFILES)" || rm -f $(MAINTAINERCLEANFILES)
1140 clean: clean-am
1141
1142 clean-am: clean-generic clean-libtool mostlyclean-am
1143
1144 distclean: distclean-am
1145         -rm -f Makefile
1146 distclean-am: clean-am distclean-generic
1147
1148 dvi: dvi-am
1149
1150 dvi-am:
1151
1152 html: html-am
1153
1154 html-am:
1155
1156 info: info-am
1157
1158 info-am:
1159
1160 install-data-am: install-amplotDATA
1161         @$(NORMAL_INSTALL)
1162         $(MAKE) $(AM_MAKEFLAGS) install-data-hook
1163 install-dvi: install-dvi-am
1164
1165 install-dvi-am:
1166
1167 install-exec-am: install-sbinSCRIPTS
1168         @$(NORMAL_INSTALL)
1169         $(MAKE) $(AM_MAKEFLAGS) install-exec-hook
1170 install-html: install-html-am
1171
1172 install-html-am:
1173
1174 install-info: install-info-am
1175
1176 install-info-am:
1177
1178 install-man:
1179
1180 install-pdf: install-pdf-am
1181
1182 install-pdf-am:
1183
1184 install-ps: install-ps-am
1185
1186 install-ps-am:
1187
1188 installcheck-am: installcheck-local
1189
1190 maintainer-clean: maintainer-clean-am
1191         -rm -f Makefile
1192 maintainer-clean-am: distclean-am maintainer-clean-generic
1193
1194 mostlyclean: mostlyclean-am
1195
1196 mostlyclean-am: mostlyclean-generic mostlyclean-libtool
1197
1198 pdf: pdf-am
1199
1200 pdf-am:
1201
1202 ps: ps-am
1203
1204 ps-am:
1205
1206 uninstall-am: uninstall-amplotDATA uninstall-sbinSCRIPTS
1207
1208 .MAKE: all check check-am install install-am install-data-am \
1209         install-exec-am install-strip
1210
1211 .PHONY: all all-am check check-am check-local clean clean-generic \
1212         clean-libtool dist-hook distclean distclean-generic \
1213         distclean-libtool distdir dvi dvi-am html html-am info info-am \
1214         install install-am install-amplotDATA install-data \
1215         install-data-am install-data-hook install-dvi install-dvi-am \
1216         install-exec install-exec-am install-exec-hook install-html \
1217         install-html-am install-info install-info-am install-man \
1218         install-pdf install-pdf-am install-ps install-ps-am \
1219         install-sbinSCRIPTS install-strip installcheck installcheck-am \
1220         installcheck-local installdirs maintainer-clean \
1221         maintainer-clean-generic mostlyclean mostlyclean-generic \
1222         mostlyclean-libtool pdf pdf-am ps ps-am uninstall uninstall-am \
1223         uninstall-amplotDATA uninstall-sbinSCRIPTS
1224
1225
1226 # Perl
1227 %: %.pl $(top_builddir)/config.status
1228         $(top_builddir)/config.status --file=$@:$<
1229         chmod a+x $@
1230 @CHECK_SCRIPTS_AT_BUILD_TRUE@   @if test -f $(top_builddir)/perl/.libs/libCmdline.so -o -f $(top_builddir)/perl/libCmdline.so; then \
1231 @CHECK_SCRIPTS_AT_BUILD_TRUE@           sed "s,^use lib ['\"]$(amperldir)['\"],# use lib '$(amperldir)' # nouselib," < $@ > $@.nouselib; \
1232 @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; \
1233 @CHECK_SCRIPTS_AT_BUILD_TRUE@           rm $@.nouselib; \
1234 @CHECK_SCRIPTS_AT_BUILD_TRUE@   fi
1235
1236 %.pl: %.pl.in $(top_builddir)/config.status
1237         $(top_builddir)/config.status --file=$@:$<
1238
1239 %.pm: %.pm.in $(top_builddir)/config.status
1240         $(top_builddir)/config.status --file=$@:$<
1241
1242 # Shell
1243 %: %.sh $(top_builddir)/config.status
1244         $(top_builddir)/config.status --file=$@:$<
1245         chmod a+x $@
1246
1247 %.sh: %.sh.in $(top_builddir)/config.status
1248         $(top_builddir)/config.status --file=$@:$<
1249
1250 # Awk
1251 %: %.awk $(top_builddir)/config.status
1252         $(top_builddir)/config.status --file=$@:$<
1253         chmod a+x $@
1254
1255 %.awk: %.awk.in $(top_builddir)/config.status
1256         $(top_builddir)/config.status --file=$@:$<
1257
1258 # syntax-check perl scripts on 'make check'
1259 check-perl: $(SCRIPTS_PERL)
1260         @SCRIPTS_PERL="$(SCRIPTS_PERL)"; \
1261         if test x"$(SKIP_CHECKS)" = x"" && \
1262             test -f $(top_builddir)/perl/.libs/libCmdline.so -o -f $(top_builddir)/perl/libCmdline.so; then \
1263             if test -n "$(PERL)"; then \
1264                     for perlobj in $$SCRIPTS_PERL; do \
1265                             sed "s,^use lib ['\"]$(amperldir)['\"],# use lib '$(amperldir)' # nouselib," < $$perlobj > $$perlobj.nouselib; \
1266                             $(PERL) $(CHECK_PERL_FLAGS) -I$(top_builddir)/perl -I$(top_builddir)/perl/.libs -I$(top_srcdir)/perl -c -w $$perlobj.nouselib || exit 1; \
1267                             rm $$perlobj.nouselib; \
1268                     done; \
1269             fi \
1270         fi
1271 check-local: check-perl
1272
1273 # syntax-check perl scripts on 'make installcheck'
1274 installcheck-perl: $(SCRIPTS_PERL)
1275         @SCRIPTS_PERL="$(SCRIPTS_PERL)"; \
1276         if test x"$(SKIP_CHECKS)" = x"" && \
1277             test -n "$(PERL)"; then \
1278                 for perlobj in $$SCRIPTS_PERL; do \
1279                         $(PERL) $(CHECK_PERL_FLAGS) -c -w $$perlobj || exit 1; \
1280                 done; \
1281         fi
1282 installcheck-local: installcheck-perl
1283
1284 # syntax-check shell scripts on 'make check'
1285 check-shell: $(SCRIPTS_SHELL)
1286         @SCRIPTS_SHELL="$(SCRIPTS_SHELL)"; \
1287         if test x"$(SKIP_CHECKS)" = x"" && \
1288             test -n "$$SCRIPTS_SHELL"; then \
1289                 if test -n "$(BASH)"; then \
1290                         for shobj in $$SCRIPTS_SHELL; do \
1291                                 if $(BASH) -n $$shobj; then \
1292                                         echo "$$shobj syntax OK"; \
1293                                 else \
1294                                         echo "$$shobj syntax error"; \
1295                                         exit 1; \
1296                                 fi; \
1297                         done; \
1298                 else \
1299                         echo "No 'bash' available -- cannot syntax-check shell scripts"; \
1300                 fi; \
1301         fi
1302 check-local: check-shell
1303
1304 # make sure that the sources for all shell and perl scripts get included
1305 # in the distribution
1306 dist-scripts:
1307         @SCRIPTS_PERL="$(SCRIPTS_PERL) $(SCRIPTS_EXTRA_DIST)"; \
1308         SCRIPTS_SHELL="$(SCRIPTS_SHELL) $(SCRIPTS_EXTRA_DIST)"; \
1309         SCRIPTS_AWK="$(SCRIPTS_AWK) $(SCRIPTS_EXTRA_DIST)"; \
1310         SCRIPTS_DIST=; \
1311         for script in $$SCRIPTS_PERL; do \
1312                 test -f $(srcdir)/$${script}.pl && \
1313                         SCRIPTS_DIST="$$SCRIPTS_DIST $${script}.pl"; \
1314         done; \
1315         for script in $$SCRIPTS_SHELL; do \
1316                 test -f $(srcdir)/$${script}.sh && \
1317                         SCRIPTS_DIST="$$SCRIPTS_DIST $${script}.sh"; \
1318         done; \
1319         for script in $$SCRIPTS_AWK; do \
1320                 test -f $(srcdir)/$${script}.awk && \
1321                         SCRIPTS_DIST="$$SCRIPTS_DIST $${script}.awk"; \
1322         done; \
1323         for script in $$SCRIPTS_SHELL $$SCRIPTS_PERL $$SCRIPTS_AWK; do \
1324                 test -f $(srcdir)/$${script}.in && \
1325                         SCRIPTS_DIST="$$SCRIPTS_DIST $${script}.in"; \
1326         done; \
1327         for script in $$SCRIPTS_DIST; do \
1328                 dir=`dirname $${script}`; \
1329                 if test -n "$$dir" && test ! -d "$(distdir)/$$dir"; then \
1330                         mkdir -p "$(distdir)/$$dir" || exit 1; \
1331                 fi; \
1332                 test -f "$(distdir)/$${script}" && continue; \
1333                 echo "distributing $${script}"; \
1334                 cp -p "$(srcdir)/$${script}" "$(distdir)/$${script}" || exit 1; \
1335         done; \
1336         true
1337 dist-hook: dist-scripts
1338
1339 installperms-exec:
1340         @installperms="$(INSTALLPERMS_exec)"; \
1341         test -n "$$installperms" && echo "Setting installation permissions on executables"; \
1342         dest=; chown=; chmod=; \
1343         for cmd in $$installperms; do \
1344             case "$$cmd" in \
1345                 chown=amanda) \
1346                         echo "  ($$cmd)"; chown="$(BINARY_OWNER):$(SETUID_GROUP)";; \
1347                 dest=*|chown=*|chmod=*) \
1348                         echo "  ($$cmd)"; eval $$cmd;; \
1349                 *) $(do_file) ;; \
1350             esac; \
1351         done
1352
1353 installperms-data:
1354         @installperms="$(INSTALLPERMS_data)"; \
1355         dest=; chown=; chmod=; \
1356         for cmd in $$installperms; do \
1357             case "$$cmd" in \
1358                 chown=amanda) \
1359                         echo "  ($$cmd)"; chown="$(BINARY_OWNER):$(SETUID_GROUP)";; \
1360                 dest=*|chown=*|chmod=*) \
1361                         echo "  ($$cmd)"; eval $$cmd;; \
1362                 *)  $(do_file) ;; \
1363             esac; \
1364         done
1365
1366 install-exec-hook: installperms-exec
1367 install-data-hook: installperms-data
1368
1369 # define a rule to initialize the installperms manifest file
1370 @WANT_INSTALLPERMS_TRUE@installperms-init:
1371 @WANT_INSTALLPERMS_FALSE@installperms-init:
1372 @WANT_INSTALLPERMS_FALSE@       rm -f "$(installperms_sh)"
1373
1374 # A rule to make precompiler output from C files.  This is not used during
1375 # ordinary builds, but but can very useful in debugging problems on strange
1376 # architectures.  With this rule, we can ask users to 'make foo.i' and send
1377 # the result to us.
1378 #
1379 # It touches some automake internals ($COMPILE), but since it's not
1380 # build-critical, that's OK.
1381 %.i : %.c
1382         $(COMPILE) -E -o $@ $<
1383
1384 amplot.gp: amplot.g
1385         cat $(srcdir)/amplot.g > amplot.gp.new
1386         echo "pause -1;" >> amplot.gp.new
1387         rm -f amplot.gp
1388         mv amplot.gp.new amplot.gp
1389
1390 # Tell versions [3.59,3.63) of GNU make to not export all variables.
1391 # Otherwise a system limit (for SysV at least) may be exceeded.
1392 .NOEXPORT: