Imported Upstream version 2.6.1
[debian/amanda] / amplot / Makefile.in
1 # Makefile.in generated by automake 1.10.1 from Makefile.am.
2 # @configure_input@
3
4 # Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002,
5 # 2003, 2004, 2005, 2006, 2007, 2008  Free Software Foundation, Inc.
6 # This Makefile.in is free software; the Free Software Foundation
7 # gives unlimited permission to copy and/or distribute it,
8 # with or without modifications, as long as this notice is preserved.
9
10 # This program is distributed in the hope that it will be useful,
11 # but WITHOUT ANY WARRANTY, to the extent permitted by law; without
12 # even the implied warranty of MERCHANTABILITY or FITNESS FOR A
13 # PARTICULAR PURPOSE.
14
15 @SET_MAKE@
16
17 # Makefile for amplot.
18
19 # vim:ft=automake
20 # Copyright (c) 2005-2008 Zmanda Inc.  All Rights Reserved.
21
22 # This library is free software; you can redistribute it and/or modify it
23 # under the terms of the GNU Lesser General Public License version 2.1 as 
24 # published by the Free Software Foundation.
25
26 # This library is distributed in the hope that it will be useful, but
27 # WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
28 # or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU Lesser General Public
29 # License for more details.
30
31 # You should have received a copy of the GNU Lesser General Public License
32 # along with this library; if not, write to the Free Software Foundation,
33 # Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA.
34
35 # Contact information: Zmanda Inc., 465 S Mathlida Ave, Suite 300
36 # Sunnyvale, CA 94086, USA, or: http://www.zmanda.com
37
38 # simple include file to pre-define variables which are then +='d by other
39 # scripts in this directory.
40
41 # vim:ft=automake
42 # Copyright (c) 2005-2008 Zmanda Inc.  All Rights Reserved.
43
44 # This library is free software; you can redistribute it and/or modify it
45 # under the terms of the GNU Lesser General Public License version 2.1 as 
46 # published by the Free Software Foundation.
47
48 # This library is distributed in the hope that it will be useful, but
49 # WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
50 # or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU Lesser General Public
51 # License for more details.
52
53 # You should have received a copy of the GNU Lesser General Public License
54 # along with this library; if not, write to the Free Software Foundation,
55 # Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA.
56
57 # Contact information: Zmanda Inc., 465 S Mathlida Ave, Suite 300
58 # Sunnyvale, CA 94086, USA, or: http://www.zmanda.com
59
60 # SYNOPSIS:
61 #
62 # Automake magic to handle the various tasks of building scripts.  Scripts can
63 # be built down to extensionless executables (e.g., foo.pl -> foo), or to 
64 # files with the usual extension (foo-lib.sh.in -> foo.sh).
65 #
66 # Files which support it are syntax-checked when the user invokes 'make check'.
67 #
68 # All *target* filenames must be listed in SCRIPTS_SHELL, SCRIPTS_PERL, and 
69 # SCRIPTS_AWK to support 'make check', 'make dist', and 'make distclean'. No
70 # files which are not substituted by config.status should be included in
71 # SCRIPTS_PERL, SCRIPTS_SHELL, or SCRIPTS_AWK.  If non-generated files are listed
72 # for installation, then Automake will figure out that they should be distributed;
73 # otherwise, include them in EXTRA_DIST.
74 #
75 # USAGE:
76 #
77 #   include $(top_srcdir)/config/automake/vars.am
78 #   include $(top_srcdir)/config/automake/scripts.am
79 #   ...
80 #   SCRIPTS_PERL = fooscript barscript perl-lib.pl perlmod.pm
81 #   SCRIPTS_SHELL = shell1 shell2 sh-lib.sh
82 #   SCRIPTS_AWK = talk balk chalk awk-lib.awk
83 #   sbin_SCRIPTS = not-subbed
84 #   EXTRA_DIST = util-script.pl
85 #
86 # with the corresponding files in the repository:
87 #
88 #   fooscript.pl barscript.pl perl-lib.pl.in perlmod.pm.in
89 #   shell1.sh shell2.sh sh-lib.sh.in
90 #   talk.awk balk.awk chalk.awk awk-lib.awk.in
91 #   not-subbed util-script.pl
92 #
93 # by default, all shell and perl scripts are syntax checked.  If this is
94 # a problem (for example, perl scripts depending on Amanda extension 
95 # modules), then assign to CHECK_{PERL,SHELL} the list of files you wish
96 # to be checked (which can be empty).
97 #
98 # To add extra flags to the perl checks (e.g., to add new -I flags), set
99 # CHECK_PERL_FLAGS.
100
101 # Implementation note:
102 #
103 # This file uses config.status to substitute @foo@ in those scripts while
104 # converting them. It also adds the executable bits (a+x) to extensionless
105 # files.  The substitution works even though the files are not listed in 
106 # configure.in
107
108 # vim:ft=automake
109 #
110 # Adjust post-install permissions settings.  This rule works off two
111 # specially-formatted variables, INSTALLPERMS_exec and INSTALLPERMS_data. 
112 # Each is a whitespace-separated list of commands, all of which are either
113 # a variable assignment or a filename.  Three variables are available:
114 #
115 #  - dest= sets the destination directory to e.g., $(sbindir)
116 #  - chown= controls changes in ownership; value is first argument to chown
117 #  - chmod= controls changes in permissions; value is first argument to chmod
118 #
119 # As a special case, chown=amanda is taken as equivalent to 
120 # chown=$(BINARY_OWNER):$(SETUID_GROUP), which may otherwise have problems with
121 # whitespace in the user/group names.
122
123 # when a filename is seen, the currently active variables are applied.
124 #
125 # Note that scripts are data, not executables!
126 #
127 # EXAMPLE
128 #
129 # sbin_PROGRAMS = foo bar bing
130 # libexec_PROGRAMS = pro gram
131 # sbin_SCRIPTS = sk ript
132 # INSTALLPERMS_exec = \
133 #       dest=$(sbindir) chown=amanda chmod= \
134 #               foo bar \
135 #       chmod=07450 \
136 #               bing
137 #       dest=$(libexecdir) chmod= \
138 #               $(libexec_PROGRAMS)
139 # INSTALLPERMS_data = \
140 #       dest=$(sbindir) chown=amanda chmod= \
141 #               $(sbin_SCRIPTS)
142 #
143 # This whole operation is not required when making builds for packaging,
144 # and can be disabled with --disable-installperms, via the WANT_INSTALLPERMS
145 # AM_CONDITIONAL.  When disabled, the file 'installperms.sh' in the top-level
146 # build directory is populated with a format suitable for shell interpretation,
147 # with lines like this:
148 #   installperm "amanda:disk" "04750" "/usr/local/sbin/bing"
149 # the arguments being, respectively, owner:group, mode, and filename.  There will
150 # be exactly one line for each file which has specific permissions.  The intention
151 # is that this file be used by packaging scripts to set correct permissions at install
152 # time.  Note that files which have no special permissions requirements do not appear 
153 # in this file at all, due to limitations of Automake.
154
155 # vim:ft=automake
156
157
158 VPATH = @srcdir@
159 pkgdatadir = $(datadir)/@PACKAGE@
160 pkglibdir = $(libdir)/@PACKAGE@
161 pkgincludedir = $(includedir)/@PACKAGE@
162 am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd
163 install_sh_DATA = $(install_sh) -c -m 644
164 install_sh_PROGRAM = $(install_sh) -c
165 install_sh_SCRIPT = $(install_sh) -c
166 INSTALL_HEADER = $(INSTALL_DATA)
167 transform = $(program_transform_name)
168 NORMAL_INSTALL = :
169 PRE_INSTALL = :
170 POST_INSTALL = :
171 NORMAL_UNINSTALL = :
172 PRE_UNINSTALL = :
173 POST_UNINSTALL = :
174 build_triplet = @build@
175 host_triplet = @host@
176 target_triplet = @target@
177 DIST_COMMON = $(srcdir)/Makefile.am $(srcdir)/Makefile.in \
178         $(top_srcdir)/config/automake/installperms.am \
179         $(top_srcdir)/config/automake/precompile.am \
180         $(top_srcdir)/config/automake/scripts.am \
181         $(top_srcdir)/config/automake/vars.am
182 @WANT_INSTALLPERMS_FALSE@am__append_1 = $(installperms_sh)
183 subdir = amplot
184 ACLOCAL_M4 = $(top_srcdir)/aclocal.m4
185 am__aclocal_m4_deps =  \
186         $(top_srcdir)/config/macro-archive/ac_define_dir.m4 \
187         $(top_srcdir)/config/macro-archive/ac_perl_module_version.m4 \
188         $(top_srcdir)/config/macro-archive/ac_prog_perl_version.m4 \
189         $(top_srcdir)/config/macro-archive/ac_prog_swig.m4 \
190         $(top_srcdir)/config/macro-archive/ax_compare_version.m4 \
191         $(top_srcdir)/config/macro-archive/docbook-dtd.m4 \
192         $(top_srcdir)/config/macro-archive/docbook-xslt-min.m4 \
193         $(top_srcdir)/config/macro-archive/docbook-xslt.m4 \
194         $(top_srcdir)/config/macro-archive/xsltproc.m4 \
195         $(top_srcdir)/config/amanda/amplot.m4 \
196         $(top_srcdir)/config/amanda/bsd-security.m4 \
197         $(top_srcdir)/config/amanda/bsdtcp-security.m4 \
198         $(top_srcdir)/config/amanda/bsdudp-security.m4 \
199         $(top_srcdir)/config/amanda/changer.m4 \
200         $(top_srcdir)/config/amanda/components.m4 \
201         $(top_srcdir)/config/amanda/compress.m4 \
202         $(top_srcdir)/config/amanda/config.m4 \
203         $(top_srcdir)/config/amanda/debugging.m4 \
204         $(top_srcdir)/config/amanda/defaults.m4 \
205         $(top_srcdir)/config/amanda/devprefix.m4 \
206         $(top_srcdir)/config/amanda/dirs.m4 \
207         $(top_srcdir)/config/amanda/documentation.m4 \
208         $(top_srcdir)/config/amanda/dumpers.m4 \
209         $(top_srcdir)/config/amanda/flags.m4 \
210         $(top_srcdir)/config/amanda/flock.m4 \
211         $(top_srcdir)/config/amanda/funcs.m4 \
212         $(top_srcdir)/config/amanda/getfsent.m4 \
213         $(top_srcdir)/config/amanda/i18n.m4 \
214         $(top_srcdir)/config/amanda/ipv6.m4 \
215         $(top_srcdir)/config/amanda/krb4-security.m4 \
216         $(top_srcdir)/config/amanda/krb5-security.m4 \
217         $(top_srcdir)/config/amanda/lfs.m4 \
218         $(top_srcdir)/config/amanda/libs.m4 \
219         $(top_srcdir)/config/amanda/net.m4 \
220         $(top_srcdir)/config/amanda/progs.m4 \
221         $(top_srcdir)/config/amanda/ps.m4 \
222         $(top_srcdir)/config/amanda/readdir.m4 \
223         $(top_srcdir)/config/amanda/readline.m4 \
224         $(top_srcdir)/config/amanda/rsh-security.m4 \
225         $(top_srcdir)/config/amanda/s3-device.m4 \
226         $(top_srcdir)/config/amanda/shmem.m4 \
227         $(top_srcdir)/config/amanda/socklen_t_equiv.m4 \
228         $(top_srcdir)/config/amanda/ssh-security.m4 \
229         $(top_srcdir)/config/amanda/summary.m4 \
230         $(top_srcdir)/config/amanda/swig.m4 \
231         $(top_srcdir)/config/amanda/syshacks.m4 \
232         $(top_srcdir)/config/amanda/tape.m4 \
233         $(top_srcdir)/config/amanda/types.m4 \
234         $(top_srcdir)/config/amanda/userid.m4 \
235         $(top_srcdir)/config/amanda/version.m4 \
236         $(top_srcdir)/config/gnulib/alloca.m4 \
237         $(top_srcdir)/config/gnulib/arpa_inet_h.m4 \
238         $(top_srcdir)/config/gnulib/base64.m4 \
239         $(top_srcdir)/config/gnulib/eoverflow.m4 \
240         $(top_srcdir)/config/gnulib/extensions.m4 \
241         $(top_srcdir)/config/gnulib/float_h.m4 \
242         $(top_srcdir)/config/gnulib/fsusage.m4 \
243         $(top_srcdir)/config/gnulib/getaddrinfo.m4 \
244         $(top_srcdir)/config/gnulib/getopt.m4 \
245         $(top_srcdir)/config/gnulib/gettimeofday.m4 \
246         $(top_srcdir)/config/gnulib/gnulib-common.m4 \
247         $(top_srcdir)/config/gnulib/gnulib-comp.m4 \
248         $(top_srcdir)/config/gnulib/include_next.m4 \
249         $(top_srcdir)/config/gnulib/inet_ntop.m4 \
250         $(top_srcdir)/config/gnulib/intmax_t.m4 \
251         $(top_srcdir)/config/gnulib/lock.m4 \
252         $(top_srcdir)/config/gnulib/longlong.m4 \
253         $(top_srcdir)/config/gnulib/malloc.m4 \
254         $(top_srcdir)/config/gnulib/mkdtemp.m4 \
255         $(top_srcdir)/config/gnulib/netinet_in_h.m4 \
256         $(top_srcdir)/config/gnulib/onceonly_2_57.m4 \
257         $(top_srcdir)/config/gnulib/physmem.m4 \
258         $(top_srcdir)/config/gnulib/safe-read.m4 \
259         $(top_srcdir)/config/gnulib/safe-write.m4 \
260         $(top_srcdir)/config/gnulib/snprintf.m4 \
261         $(top_srcdir)/config/gnulib/socklen.m4 \
262         $(top_srcdir)/config/gnulib/sockpfaf.m4 \
263         $(top_srcdir)/config/gnulib/ssize_t.m4 \
264         $(top_srcdir)/config/gnulib/stdbool.m4 \
265         $(top_srcdir)/config/gnulib/stdint.m4 \
266         $(top_srcdir)/config/gnulib/stdio_h.m4 \
267         $(top_srcdir)/config/gnulib/stdlib_h.m4 \
268         $(top_srcdir)/config/gnulib/strdup.m4 \
269         $(top_srcdir)/config/gnulib/string_h.m4 \
270         $(top_srcdir)/config/gnulib/sys_socket_h.m4 \
271         $(top_srcdir)/config/gnulib/sys_stat_h.m4 \
272         $(top_srcdir)/config/gnulib/sys_time_h.m4 \
273         $(top_srcdir)/config/gnulib/tempname.m4 \
274         $(top_srcdir)/config/gnulib/unistd_h.m4 \
275         $(top_srcdir)/config/gnulib/vasnprintf.m4 \
276         $(top_srcdir)/config/gnulib/visibility.m4 \
277         $(top_srcdir)/config/gnulib/wchar.m4 \
278         $(top_srcdir)/config/gettext-macros/gettext.m4 \
279         $(top_srcdir)/config/gettext-macros/iconv.m4 \
280         $(top_srcdir)/config/gettext-macros/inttypes_h.m4 \
281         $(top_srcdir)/config/gettext-macros/lib-ld.m4 \
282         $(top_srcdir)/config/gettext-macros/lib-link.m4 \
283         $(top_srcdir)/config/gettext-macros/lib-prefix.m4 \
284         $(top_srcdir)/config/gettext-macros/nls.m4 \
285         $(top_srcdir)/config/gettext-macros/po.m4 \
286         $(top_srcdir)/config/gettext-macros/progtest.m4 \
287         $(top_srcdir)/config/gettext-macros/size_max.m4 \
288         $(top_srcdir)/config/gettext-macros/stdint_h.m4 \
289         $(top_srcdir)/config/gettext-macros/wchar_t.m4 \
290         $(top_srcdir)/config/gettext-macros/wint_t.m4 \
291         $(top_srcdir)/config/gettext-macros/xsize.m4 \
292         $(top_srcdir)/config/libtool.m4 $(top_srcdir)/configure.in
293 am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \
294         $(ACLOCAL_M4)
295 mkinstalldirs = $(SHELL) $(top_srcdir)/config/mkinstalldirs
296 CONFIG_HEADER = $(top_builddir)/config/config.h
297 CONFIG_CLEAN_FILES =
298 am__installdirs = "$(DESTDIR)$(sbindir)" "$(DESTDIR)$(amplotdir)"
299 sbinSCRIPT_INSTALL = $(INSTALL_SCRIPT)
300 SCRIPTS = $(sbin_SCRIPTS)
301 SOURCES =
302 DIST_SOURCES =
303 am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`;
304 am__vpath_adj = case $$p in \
305     $(srcdir)/*) f=`echo "$$p" | sed "s|^$$srcdirstrip/||"`;; \
306     *) f=$$p;; \
307   esac;
308 am__strip_dir = `echo $$p | sed -e 's|^.*/||'`;
309 amplotDATA_INSTALL = $(INSTALL_DATA)
310 DATA = $(amplot_DATA)
311 DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST)
312 ACLOCAL = @ACLOCAL@
313 AIX_BACKUP = @AIX_BACKUP@
314 ALLOCA = @ALLOCA@
315 ALLOCA_H = @ALLOCA_H@
316 AMANDA_DBGDIR = @AMANDA_DBGDIR@
317 AMANDA_DEBUG_DAYS = @AMANDA_DEBUG_DAYS@
318 AMANDA_STATIC_LDFLAGS = @AMANDA_STATIC_LDFLAGS@
319 AMANDA_TMPDIR = @AMANDA_TMPDIR@
320 AMANDA_WARNING_CFLAGS = @AMANDA_WARNING_CFLAGS@
321 AMLINT = @AMLINT@
322 AMLINTFLAGS = @AMLINTFLAGS@
323 AMPLOT_CAT_COMPRESS = @AMPLOT_CAT_COMPRESS@
324 AMPLOT_CAT_GZIP = @AMPLOT_CAT_GZIP@
325 AMPLOT_CAT_PACK = @AMPLOT_CAT_PACK@
326 AMPLOT_COMPRESS = @AMPLOT_COMPRESS@
327 AMTAR = @AMTAR@
328 APPLICATION_DIR = @APPLICATION_DIR@
329 AR = @AR@
330 ARPA_INET_H = @ARPA_INET_H@
331 ASSERTIONS = @ASSERTIONS@
332 AUTOCONF = @AUTOCONF@
333 AUTOHEADER = @AUTOHEADER@
334 AUTOMAKE = @AUTOMAKE@
335 AWK = @AWK@
336 BASH = @BASH@
337 BINARY_OWNER = @BINARY_OWNER@
338 BITSIZEOF_PTRDIFF_T = @BITSIZEOF_PTRDIFF_T@
339 BITSIZEOF_SIG_ATOMIC_T = @BITSIZEOF_SIG_ATOMIC_T@
340 BITSIZEOF_SIZE_T = @BITSIZEOF_SIZE_T@
341 BITSIZEOF_WCHAR_T = @BITSIZEOF_WCHAR_T@
342 BITSIZEOF_WINT_T = @BITSIZEOF_WINT_T@
343 BSDTCP_SECURITY = @BSDTCP_SECURITY@
344 BSDUDP_SECURITY = @BSDUDP_SECURITY@
345 BSD_SECURITY = @BSD_SECURITY@
346 CAT = @CAT@
347 CC = @CC@
348 CCDEPMODE = @CCDEPMODE@
349 CFLAGS = @CFLAGS@
350 CFLAG_VISIBILITY = @CFLAG_VISIBILITY@
351 CHECK_USERID = @CHECK_USERID@
352 CHIO = @CHIO@
353 CHS = @CHS@
354 CLIENT_HOST_INSTANCE = @CLIENT_HOST_INSTANCE@
355 CLIENT_HOST_KEY_FILE = @CLIENT_HOST_KEY_FILE@
356 CLIENT_HOST_PRINCIPAL = @CLIENT_HOST_PRINCIPAL@
357 CLIENT_LOGIN = @CLIENT_LOGIN@
358 CLIENT_SCRIPTS_OPT = @CLIENT_SCRIPTS_OPT@
359 COMPRESS = @COMPRESS@
360 COMPRESS_BEST_OPT = @COMPRESS_BEST_OPT@
361 COMPRESS_FAST_OPT = @COMPRESS_FAST_OPT@
362 COMPRESS_PATH = @COMPRESS_PATH@
363 COMPRESS_SUFFIX = @COMPRESS_SUFFIX@
364 CONFIG_CLOBBER_MY_CONFIG = @CONFIG_CLOBBER_MY_CONFIG@
365 CONFIG_DIR = @CONFIG_DIR@
366 CPP = @CPP@
367 CPPFLAGS = @CPPFLAGS@
368 CURL_CONFIG = @CURL_CONFIG@
369 CXX = @CXX@
370 CXXCPP = @CXXCPP@
371 CXXDEPMODE = @CXXDEPMODE@
372 CXXFLAGS = @CXXFLAGS@
373 CYGPATH_W = @CYGPATH_W@
374 DD = @DD@
375 DEFAULT_AMANDATES_FILE = @DEFAULT_AMANDATES_FILE@
376 DEFAULT_CHANGER_DEVICE = @DEFAULT_CHANGER_DEVICE@
377 DEFAULT_CONFIG = @DEFAULT_CONFIG@
378 DEFAULT_MAILER = @DEFAULT_MAILER@
379 DEFAULT_SERVER = @DEFAULT_SERVER@
380 DEFAULT_TAPE_DEVICE = @DEFAULT_TAPE_DEVICE@
381 DEFAULT_TAPE_SERVER = @DEFAULT_TAPE_SERVER@
382 DEFS = @DEFS@
383 DEPDIR = @DEPDIR@
384 DOC_BUILD_DATE = @DOC_BUILD_DATE@
385 DUMP = @DUMP@
386 DUMP_RETURNS_1 = @DUMP_RETURNS_1@
387 ECHO = @ECHO@
388 ECHO_C = @ECHO_C@
389 ECHO_N = @ECHO_N@
390 ECHO_T = @ECHO_T@
391 EGREP = @EGREP@
392 EOVERFLOW = @EOVERFLOW@
393 EXAMPLE_TAPEDEV = @EXAMPLE_TAPEDEV@
394 EXEEXT = @EXEEXT@
395 F77 = @F77@
396 FFLAGS = @FFLAGS@
397 FLOAT_H = @FLOAT_H@
398 GETCONF = @GETCONF@
399 GETOPT_H = @GETOPT_H@
400 GETTEXT = @GETTEXT@
401 GLIB_CFLAGS = @GLIB_CFLAGS@
402 GLIB_GENMARSHAL = @GLIB_GENMARSHAL@
403 GLIB_LIBS = @GLIB_LIBS@
404 GLIB_MKENUMS = @GLIB_MKENUMS@
405 GMSGFMT = @GMSGFMT@
406 GMSGFMT_015 = @GMSGFMT_015@
407 GNULIB_CALLOC_POSIX = @GNULIB_CALLOC_POSIX@
408 GNULIB_CHOWN = @GNULIB_CHOWN@
409 GNULIB_DUP2 = @GNULIB_DUP2@
410 GNULIB_ENVIRON = @GNULIB_ENVIRON@
411 GNULIB_FCHDIR = @GNULIB_FCHDIR@
412 GNULIB_FFLUSH = @GNULIB_FFLUSH@
413 GNULIB_FOPEN = @GNULIB_FOPEN@
414 GNULIB_FPRINTF_POSIX = @GNULIB_FPRINTF_POSIX@
415 GNULIB_FREOPEN = @GNULIB_FREOPEN@
416 GNULIB_FSEEK = @GNULIB_FSEEK@
417 GNULIB_FSEEKO = @GNULIB_FSEEKO@
418 GNULIB_FTELL = @GNULIB_FTELL@
419 GNULIB_FTELLO = @GNULIB_FTELLO@
420 GNULIB_FTRUNCATE = @GNULIB_FTRUNCATE@
421 GNULIB_GETCWD = @GNULIB_GETCWD@
422 GNULIB_GETDELIM = @GNULIB_GETDELIM@
423 GNULIB_GETLINE = @GNULIB_GETLINE@
424 GNULIB_GETLOGIN_R = @GNULIB_GETLOGIN_R@
425 GNULIB_GETPAGESIZE = @GNULIB_GETPAGESIZE@
426 GNULIB_GETSUBOPT = @GNULIB_GETSUBOPT@
427 GNULIB_LCHOWN = @GNULIB_LCHOWN@
428 GNULIB_LSEEK = @GNULIB_LSEEK@
429 GNULIB_MALLOC_POSIX = @GNULIB_MALLOC_POSIX@
430 GNULIB_MBSCASECMP = @GNULIB_MBSCASECMP@
431 GNULIB_MBSCASESTR = @GNULIB_MBSCASESTR@
432 GNULIB_MBSCHR = @GNULIB_MBSCHR@
433 GNULIB_MBSCSPN = @GNULIB_MBSCSPN@
434 GNULIB_MBSLEN = @GNULIB_MBSLEN@
435 GNULIB_MBSNCASECMP = @GNULIB_MBSNCASECMP@
436 GNULIB_MBSNLEN = @GNULIB_MBSNLEN@
437 GNULIB_MBSPBRK = @GNULIB_MBSPBRK@
438 GNULIB_MBSPCASECMP = @GNULIB_MBSPCASECMP@
439 GNULIB_MBSRCHR = @GNULIB_MBSRCHR@
440 GNULIB_MBSSEP = @GNULIB_MBSSEP@
441 GNULIB_MBSSPN = @GNULIB_MBSSPN@
442 GNULIB_MBSSTR = @GNULIB_MBSSTR@
443 GNULIB_MBSTOK_R = @GNULIB_MBSTOK_R@
444 GNULIB_MEMMEM = @GNULIB_MEMMEM@
445 GNULIB_MEMPCPY = @GNULIB_MEMPCPY@
446 GNULIB_MEMRCHR = @GNULIB_MEMRCHR@
447 GNULIB_MKDTEMP = @GNULIB_MKDTEMP@
448 GNULIB_MKSTEMP = @GNULIB_MKSTEMP@
449 GNULIB_PRINTF_POSIX = @GNULIB_PRINTF_POSIX@
450 GNULIB_PUTENV = @GNULIB_PUTENV@
451 GNULIB_READLINK = @GNULIB_READLINK@
452 GNULIB_REALLOC_POSIX = @GNULIB_REALLOC_POSIX@
453 GNULIB_SETENV = @GNULIB_SETENV@
454 GNULIB_SLEEP = @GNULIB_SLEEP@
455 GNULIB_SNPRINTF = @GNULIB_SNPRINTF@
456 GNULIB_SPRINTF_POSIX = @GNULIB_SPRINTF_POSIX@
457 GNULIB_STPCPY = @GNULIB_STPCPY@
458 GNULIB_STPNCPY = @GNULIB_STPNCPY@
459 GNULIB_STRCASESTR = @GNULIB_STRCASESTR@
460 GNULIB_STRCHRNUL = @GNULIB_STRCHRNUL@
461 GNULIB_STRDUP = @GNULIB_STRDUP@
462 GNULIB_STRERROR = @GNULIB_STRERROR@
463 GNULIB_STRNDUP = @GNULIB_STRNDUP@
464 GNULIB_STRNLEN = @GNULIB_STRNLEN@
465 GNULIB_STRPBRK = @GNULIB_STRPBRK@
466 GNULIB_STRSEP = @GNULIB_STRSEP@
467 GNULIB_STRSIGNAL = @GNULIB_STRSIGNAL@
468 GNULIB_STRSTR = @GNULIB_STRSTR@
469 GNULIB_STRTOK_R = @GNULIB_STRTOK_R@
470 GNULIB_UNSETENV = @GNULIB_UNSETENV@
471 GNULIB_VASPRINTF = @GNULIB_VASPRINTF@
472 GNULIB_VFPRINTF_POSIX = @GNULIB_VFPRINTF_POSIX@
473 GNULIB_VPRINTF_POSIX = @GNULIB_VPRINTF_POSIX@
474 GNULIB_VSNPRINTF = @GNULIB_VSNPRINTF@
475 GNULIB_VSPRINTF_POSIX = @GNULIB_VSPRINTF_POSIX@
476 GNULIB_WCWIDTH = @GNULIB_WCWIDTH@
477 GNUPLOT = @GNUPLOT@
478 GNUTAR = @GNUTAR@
479 GNUTAR_LISTED_INCREMENTAL_DIR = @GNUTAR_LISTED_INCREMENTAL_DIR@
480 GOBJECT_QUERY = @GOBJECT_QUERY@
481 GREP = @GREP@
482 GZIP = @GZIP@
483 HAVE_CALLOC_POSIX = @HAVE_CALLOC_POSIX@
484 HAVE_DECL_ENVIRON = @HAVE_DECL_ENVIRON@
485 HAVE_DECL_GETDELIM = @HAVE_DECL_GETDELIM@
486 HAVE_DECL_GETLINE = @HAVE_DECL_GETLINE@
487 HAVE_DECL_GETLOGIN_R = @HAVE_DECL_GETLOGIN_R@
488 HAVE_DECL_MEMMEM = @HAVE_DECL_MEMMEM@
489 HAVE_DECL_MEMRCHR = @HAVE_DECL_MEMRCHR@
490 HAVE_DECL_MKDIR = @HAVE_DECL_MKDIR@
491 HAVE_DECL_SNPRINTF = @HAVE_DECL_SNPRINTF@
492 HAVE_DECL_STRDUP = @HAVE_DECL_STRDUP@
493 HAVE_DECL_STRERROR = @HAVE_DECL_STRERROR@
494 HAVE_DECL_STRNDUP = @HAVE_DECL_STRNDUP@
495 HAVE_DECL_STRNLEN = @HAVE_DECL_STRNLEN@
496 HAVE_DECL_STRSIGNAL = @HAVE_DECL_STRSIGNAL@
497 HAVE_DECL_STRTOK_R = @HAVE_DECL_STRTOK_R@
498 HAVE_DECL_VSNPRINTF = @HAVE_DECL_VSNPRINTF@
499 HAVE_DECL_WCWIDTH = @HAVE_DECL_WCWIDTH@
500 HAVE_DUP2 = @HAVE_DUP2@
501 HAVE_FSEEKO = @HAVE_FSEEKO@
502 HAVE_FTELLO = @HAVE_FTELLO@
503 HAVE_FTRUNCATE = @HAVE_FTRUNCATE@
504 HAVE_GETPAGESIZE = @HAVE_GETPAGESIZE@
505 HAVE_GETSUBOPT = @HAVE_GETSUBOPT@
506 HAVE_GZIP = @HAVE_GZIP@
507 HAVE_INTTYPES_H = @HAVE_INTTYPES_H@
508 HAVE_IO_H = @HAVE_IO_H@
509 HAVE_LONG_LONG_INT = @HAVE_LONG_LONG_INT@
510 HAVE_LSTAT = @HAVE_LSTAT@
511 HAVE_MALLOC_POSIX = @HAVE_MALLOC_POSIX@
512 HAVE_MEMPCPY = @HAVE_MEMPCPY@
513 HAVE_MKDTEMP = @HAVE_MKDTEMP@
514 HAVE_NETINET_IN_H = @HAVE_NETINET_IN_H@
515 HAVE_OS_H = @HAVE_OS_H@
516 HAVE_READLINK = @HAVE_READLINK@
517 HAVE_REALLOC_POSIX = @HAVE_REALLOC_POSIX@
518 HAVE_SETENV = @HAVE_SETENV@
519 HAVE_SIGNED_SIG_ATOMIC_T = @HAVE_SIGNED_SIG_ATOMIC_T@
520 HAVE_SIGNED_WCHAR_T = @HAVE_SIGNED_WCHAR_T@
521 HAVE_SIGNED_WINT_T = @HAVE_SIGNED_WINT_T@
522 HAVE_SLEEP = @HAVE_SLEEP@
523 HAVE_STDINT_H = @HAVE_STDINT_H@
524 HAVE_STPCPY = @HAVE_STPCPY@
525 HAVE_STPNCPY = @HAVE_STPNCPY@
526 HAVE_STRCASESTR = @HAVE_STRCASESTR@
527 HAVE_STRCHRNUL = @HAVE_STRCHRNUL@
528 HAVE_STRNDUP = @HAVE_STRNDUP@
529 HAVE_STRPBRK = @HAVE_STRPBRK@
530 HAVE_STRSEP = @HAVE_STRSEP@
531 HAVE_STRUCT_TIMEVAL = @HAVE_STRUCT_TIMEVAL@
532 HAVE_SYS_BITYPES_H = @HAVE_SYS_BITYPES_H@
533 HAVE_SYS_INTTYPES_H = @HAVE_SYS_INTTYPES_H@
534 HAVE_SYS_PARAM_H = @HAVE_SYS_PARAM_H@
535 HAVE_SYS_SOCKET_H = @HAVE_SYS_SOCKET_H@
536 HAVE_SYS_TIME_H = @HAVE_SYS_TIME_H@
537 HAVE_SYS_TYPES_H = @HAVE_SYS_TYPES_H@
538 HAVE_UNISTD_H = @HAVE_UNISTD_H@
539 HAVE_UNSETENV = @HAVE_UNSETENV@
540 HAVE_UNSIGNED_LONG_LONG_INT = @HAVE_UNSIGNED_LONG_LONG_INT@
541 HAVE_VASPRINTF = @HAVE_VASPRINTF@
542 HAVE_VISIBILITY = @HAVE_VISIBILITY@
543 HAVE_WCHAR_H = @HAVE_WCHAR_H@
544 HAVE_WINSOCK2_H = @HAVE_WINSOCK2_H@
545 HAVE_WS2TCPIP_H = @HAVE_WS2TCPIP_H@
546 HAVE__BOOL = @HAVE__BOOL@
547 INCLUDE_NEXT = @INCLUDE_NEXT@
548 INSTALL = @INSTALL@
549 INSTALL_DATA = @INSTALL_DATA@
550 INSTALL_PROGRAM = @INSTALL_PROGRAM@
551 INSTALL_SCRIPT = @INSTALL_SCRIPT@
552 INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@
553 INTLLIBS = @INTLLIBS@
554 INTL_MACOSX_LIBS = @INTL_MACOSX_LIBS@
555 KRB4_SECURITY = @KRB4_SECURITY@
556 KRB5_SECURITY = @KRB5_SECURITY@
557 LDFLAGS = @LDFLAGS@
558 LEX = @LEX@
559 LEXLIB = @LEXLIB@
560 LEX_OUTPUT_ROOT = @LEX_OUTPUT_ROOT@
561 LIBCURL = @LIBCURL@
562 LIBCURL_CPPFLAGS = @LIBCURL_CPPFLAGS@
563 LIBICONV = @LIBICONV@
564 LIBINTL = @LIBINTL@
565 LIBMULTITHREAD = @LIBMULTITHREAD@
566 LIBOBJS = @LIBOBJS@
567 LIBPTH = @LIBPTH@
568 LIBS = @LIBS@
569 LIBTHREAD = @LIBTHREAD@
570 LIBTOOL = @LIBTOOL@
571 LIBTOOL_DEPS = @LIBTOOL_DEPS@
572 LN_S = @LN_S@
573 LOCKING = @LOCKING@
574 LOW_TCPPORTRANGE = @LOW_TCPPORTRANGE@
575 LTLIBICONV = @LTLIBICONV@
576 LTLIBINTL = @LTLIBINTL@
577 LTLIBMULTITHREAD = @LTLIBMULTITHREAD@
578 LTLIBOBJS = @LTLIBOBJS@
579 LTLIBPTH = @LTLIBPTH@
580 LTLIBTHREAD = @LTLIBTHREAD@
581 MAILER = @MAILER@
582 MAKEINFO = @MAKEINFO@
583 MCUTIL = @MCUTIL@
584 MKDIR_P = @MKDIR_P@
585 MSGFMT = @MSGFMT@
586 MSGFMT_015 = @MSGFMT_015@
587 MSGMERGE = @MSGMERGE@
588 MT = @MT@
589 MTX = @MTX@
590 MT_FILE_FLAG = @MT_FILE_FLAG@
591 NETINET_IN_H = @NETINET_IN_H@
592 NEXT_FLOAT_H = @NEXT_FLOAT_H@
593 NEXT_NETINET_IN_H = @NEXT_NETINET_IN_H@
594 NEXT_STDINT_H = @NEXT_STDINT_H@
595 NEXT_STDIO_H = @NEXT_STDIO_H@
596 NEXT_STDLIB_H = @NEXT_STDLIB_H@
597 NEXT_STRING_H = @NEXT_STRING_H@
598 NEXT_SYS_SOCKET_H = @NEXT_SYS_SOCKET_H@
599 NEXT_SYS_STAT_H = @NEXT_SYS_STAT_H@
600 NEXT_SYS_TIME_H = @NEXT_SYS_TIME_H@
601 NEXT_UNISTD_H = @NEXT_UNISTD_H@
602 NEXT_WCHAR_H = @NEXT_WCHAR_H@
603 OBJEXT = @OBJEXT@
604 PACKAGE = @PACKAGE@
605 PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@
606 PACKAGE_NAME = @PACKAGE_NAME@
607 PACKAGE_STRING = @PACKAGE_STRING@
608 PACKAGE_TARNAME = @PACKAGE_TARNAME@
609 PACKAGE_VERSION = @PACKAGE_VERSION@
610 PATH_SEPARATOR = @PATH_SEPARATOR@
611 PCAT = @PCAT@
612 PERL = @PERL@
613 PERLEXTLIBS = @PERLEXTLIBS@
614 PERL_INC = @PERL_INC@
615 PKG_CONFIG = @PKG_CONFIG@
616 POSUB = @POSUB@
617 PRINT = @PRINT@
618 PS = @PS@
619 PS_ARGUMENT = @PS_ARGUMENT@
620 PTRDIFF_T_SUFFIX = @PTRDIFF_T_SUFFIX@
621 RANLIB = @RANLIB@
622 READLINE_LIBS = @READLINE_LIBS@
623 REPLACE_CHOWN = @REPLACE_CHOWN@
624 REPLACE_FCHDIR = @REPLACE_FCHDIR@
625 REPLACE_FFLUSH = @REPLACE_FFLUSH@
626 REPLACE_FOPEN = @REPLACE_FOPEN@
627 REPLACE_FPRINTF = @REPLACE_FPRINTF@
628 REPLACE_FREOPEN = @REPLACE_FREOPEN@
629 REPLACE_FSEEK = @REPLACE_FSEEK@
630 REPLACE_FSEEKO = @REPLACE_FSEEKO@
631 REPLACE_FTELL = @REPLACE_FTELL@
632 REPLACE_FTELLO = @REPLACE_FTELLO@
633 REPLACE_GETCWD = @REPLACE_GETCWD@
634 REPLACE_GETLINE = @REPLACE_GETLINE@
635 REPLACE_GETPAGESIZE = @REPLACE_GETPAGESIZE@
636 REPLACE_GETTIMEOFDAY = @REPLACE_GETTIMEOFDAY@
637 REPLACE_LCHOWN = @REPLACE_LCHOWN@
638 REPLACE_LSEEK = @REPLACE_LSEEK@
639 REPLACE_MEMMEM = @REPLACE_MEMMEM@
640 REPLACE_MKSTEMP = @REPLACE_MKSTEMP@
641 REPLACE_PRINTF = @REPLACE_PRINTF@
642 REPLACE_PUTENV = @REPLACE_PUTENV@
643 REPLACE_SNPRINTF = @REPLACE_SNPRINTF@
644 REPLACE_SPRINTF = @REPLACE_SPRINTF@
645 REPLACE_STRCASESTR = @REPLACE_STRCASESTR@
646 REPLACE_STRERROR = @REPLACE_STRERROR@
647 REPLACE_STRSIGNAL = @REPLACE_STRSIGNAL@
648 REPLACE_STRSTR = @REPLACE_STRSTR@
649 REPLACE_VASPRINTF = @REPLACE_VASPRINTF@
650 REPLACE_VFPRINTF = @REPLACE_VFPRINTF@
651 REPLACE_VPRINTF = @REPLACE_VPRINTF@
652 REPLACE_VSNPRINTF = @REPLACE_VSNPRINTF@
653 REPLACE_VSPRINTF = @REPLACE_VSPRINTF@
654 REPLACE_WCWIDTH = @REPLACE_WCWIDTH@
655 RESTORE = @RESTORE@
656 RSH_SECURITY = @RSH_SECURITY@
657 SAMBA_CLIENT = @SAMBA_CLIENT@
658 SERVER_HOST_INSTANCE = @SERVER_HOST_INSTANCE@
659 SERVER_HOST_KEY_FILE = @SERVER_HOST_KEY_FILE@
660 SERVER_HOST_PRINCIPAL = @SERVER_HOST_PRINCIPAL@
661 SERVICE_SUFFIX = @SERVICE_SUFFIX@
662 SETUID_GROUP = @SETUID_GROUP@
663 SET_MAKE = @SET_MAKE@
664 SHELL = @SHELL@
665 SIG_ATOMIC_T_SUFFIX = @SIG_ATOMIC_T_SUFFIX@
666 SIZE_T_SUFFIX = @SIZE_T_SUFFIX@
667 SNAPSHOT_STAMP = @SNAPSHOT_STAMP@
668 SORT = @SORT@
669 SSH = @SSH@
670 SSH_SECURITY = @SSH_SECURITY@
671 STDBOOL_H = @STDBOOL_H@
672 STDINT_H = @STDINT_H@
673 STRIP = @STRIP@
674 SVN = @SVN@
675 SWIG = @SWIG@
676 SWIG_LIB = @SWIG_LIB@
677 SYS_SOCKET_H = @SYS_SOCKET_H@
678 SYS_STAT_H = @SYS_STAT_H@
679 SYS_TIME_H = @SYS_TIME_H@
680 TCPPORTRANGE = @TCPPORTRANGE@
681 TICKET_LIFETIME = @TICKET_LIFETIME@
682 UDPPORTRANGE = @UDPPORTRANGE@
683 UNCOMPRESS_OPT = @UNCOMPRESS_OPT@
684 UNCOMPRESS_PATH = @UNCOMPRESS_PATH@
685 USE_AMANDAHOSTS = @USE_AMANDAHOSTS@
686 USE_NLS = @USE_NLS@
687 USE_RUNDUMP = @USE_RUNDUMP@
688 USE_VERSION_SUFFIXES = @USE_VERSION_SUFFIXES@
689 VDUMP = @VDUMP@
690 VERSION = @VERSION@
691 VERSION_COMMENT = @VERSION_COMMENT@
692 VERSION_MAJOR = @VERSION_MAJOR@
693 VERSION_MINOR = @VERSION_MINOR@
694 VERSION_PATCH = @VERSION_PATCH@
695 VERSION_SUFFIX = @VERSION_SUFFIX@
696 VOID_UNSETENV = @VOID_UNSETENV@
697 VRESTORE = @VRESTORE@
698 VXDUMP = @VXDUMP@
699 VXRESTORE = @VXRESTORE@
700 WCHAR_H = @WCHAR_H@
701 WCHAR_T_SUFFIX = @WCHAR_T_SUFFIX@
702 WINT_T_SUFFIX = @WINT_T_SUFFIX@
703 XFSDUMP = @XFSDUMP@
704 XFSRESTORE = @XFSRESTORE@
705 XGETTEXT = @XGETTEXT@
706 XGETTEXT_015 = @XGETTEXT_015@
707 XSLREL = @XSLREL@
708 XSLTPROC = @XSLTPROC@
709 XSLTPROC_FLAGS = @XSLTPROC_FLAGS@
710 YACC = @YACC@
711 YFLAGS = @YFLAGS@
712 _libcurl_config = @_libcurl_config@
713 abs_builddir = @abs_builddir@
714 abs_srcdir = @abs_srcdir@
715 abs_top_builddir = @abs_top_builddir@
716 abs_top_srcdir = @abs_top_srcdir@
717 ac_ct_CC = @ac_ct_CC@
718 ac_ct_CXX = @ac_ct_CXX@
719 ac_ct_F77 = @ac_ct_F77@
720 am__include = @am__include@
721 am__leading_dot = @am__leading_dot@
722 am__quote = @am__quote@
723 am__tar = @am__tar@
724 am__untar = @am__untar@
725 amdatadir = @amdatadir@
726 amincludedir = @amincludedir@
727 amlibdir = @amlibdir@
728 amlibexecdir = @amlibexecdir@
729 amperldir = @amperldir@
730 bindir = @bindir@
731 build = @build@
732 build_alias = @build_alias@
733 build_cpu = @build_cpu@
734 build_os = @build_os@
735 build_vendor = @build_vendor@
736 builddir = @builddir@
737 datadir = @datadir@
738 datarootdir = @datarootdir@
739 docdir = @docdir@
740 dvidir = @dvidir@
741 exec_prefix = @exec_prefix@
742 gl_LIBOBJS = @gl_LIBOBJS@
743 gl_LTLIBOBJS = @gl_LTLIBOBJS@
744 gltests_LIBOBJS = @gltests_LIBOBJS@
745 gltests_LTLIBOBJS = @gltests_LTLIBOBJS@
746 host = @host@
747 host_alias = @host_alias@
748 host_cpu = @host_cpu@
749 host_os = @host_os@
750 host_vendor = @host_vendor@
751 htmldir = @htmldir@
752 includedir = @includedir@
753 infodir = @infodir@
754 install_sh = @install_sh@
755 libdir = @libdir@
756 libexecdir = @libexecdir@
757 localedir = @localedir@
758 localstatedir = @localstatedir@
759 mandir = @mandir@
760 mkdir_p = @mkdir_p@
761 oldincludedir = @oldincludedir@
762 pdfdir = @pdfdir@
763 prefix = @prefix@
764 program_transform_name = @program_transform_name@
765 psdir = @psdir@
766 sbindir = @sbindir@
767 sharedstatedir = @sharedstatedir@
768 srcdir = @srcdir@
769 sysconfdir = @sysconfdir@
770 target = @target@
771 target_alias = @target_alias@
772 target_cpu = @target_cpu@
773 target_os = @target_os@
774 target_vendor = @target_vendor@
775 top_build_prefix = @top_build_prefix@
776 top_builddir = @top_builddir@
777 top_srcdir = @top_srcdir@
778 SUFFIXES = 
779 EXTRA_DIST = amplot.awk amplot.g
780 BUILT_SOURCES = 
781 MOSTLYCLEANFILES = 
782
783 # config.status leaves config.log files around
784 CLEANFILES = config.log amplot.gp.new
785
786 # and we'll need to clean up our generated files for distclean
787 DISTCLEANFILES = $(SCRIPTS_SHELL) $(SCRIPTS_PERL) $(SCRIPTS_AWK) \
788         $(SCRIPTS_INCLUDE) $(am__append_1) amplot.gp
789 MAINTAINERCLEANFILES = 
790
791 # syntax-check shell scripts on 'make check'
792 CHECK_SHELL = $(SCRIPTS_SHELL)
793
794 # sed expression to strip leading directories from a filename; this converts e.g.,
795 # src/foo/bar.so to bar.so.
796 strip_leading_dirs = s|^.*/||
797 @WANT_INSTALLPERMS_FALSE@do_file = pa="$$dest"/`echo "$$cmd"|sed '$(strip_leading_dirs)'|sed '$(transform)'`; \
798 @WANT_INSTALLPERMS_FALSE@    echo "installperm \"$$chown\" \"$$chmod\" \"$$pa\"" >> "$(installperms_sh)"
799
800
801 # define a snippet of the scripts below to either perform a chown/chmod operation,
802 # or record that operation in the logfile.  On entry to the snippet, $$dest is the
803 # destination directory, $$cmd is the srcdir-relative pathname of the target file,
804 # $$chown is the ownership, and $$chmod is the permission pattern.
805 @WANT_INSTALLPERMS_TRUE@do_file = pa="$(DESTDIR)$$dest"/`echo "$$cmd"|sed '$(strip_leading_dirs)'|sed '$(transform)'`; \
806 @WANT_INSTALLPERMS_TRUE@    if test -n "$$chown"; then \
807 @WANT_INSTALLPERMS_TRUE@        echo chown "$$chown" "$$pa"; \
808 @WANT_INSTALLPERMS_TRUE@        chown "$$chown" "$$pa" || exit 1; \
809 @WANT_INSTALLPERMS_TRUE@    fi; \
810 @WANT_INSTALLPERMS_TRUE@    if test -n "$$chmod"; then \
811 @WANT_INSTALLPERMS_TRUE@        echo chmod "$$chmod" "$$pa"; \
812 @WANT_INSTALLPERMS_TRUE@        chmod "$$chmod" "$$pa" || exit 1; \
813 @WANT_INSTALLPERMS_TRUE@    fi 
814
815 @WANT_INSTALLPERMS_FALSE@installperms_sh = "$(top_builddir)/installperms.sh"
816 SCRIPTS_SHELL = amplot
817 SCRIPTS_AWK = amcat.awk
818 sbin_SCRIPTS = $(SCRIPTS_SHELL)
819 amplotdir = $(amlibexecdir)
820 amplot_DATA = $(SCRIPTS_AWK) amplot.awk amplot.g amplot.gp
821 INSTALLPERMS_data = \
822         dest=$(amplotdir) chown=amanda $(amplot_DATA) \
823         dest=$(sbindir) chown=amanda $(sbin_SCRIPTS)
824
825 all: $(BUILT_SOURCES)
826         $(MAKE) $(AM_MAKEFLAGS) all-am
827
828 .SUFFIXES:
829 .SUFFIXES: 
830 $(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)
831         @for dep in $?; do \
832           case '$(am__configure_deps)' in \
833             *$$dep*) \
834               cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh \
835                 && exit 0; \
836               exit 1;; \
837           esac; \
838         done; \
839         echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu  amplot/Makefile'; \
840         cd $(top_srcdir) && \
841           $(AUTOMAKE) --gnu  amplot/Makefile
842 .PRECIOUS: Makefile
843 Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
844         @case '$?' in \
845           *config.status*) \
846             cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \
847           *) \
848             echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \
849             cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \
850         esac;
851
852 $(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES)
853         cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
854
855 $(top_srcdir)/configure:  $(am__configure_deps)
856         cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
857 $(ACLOCAL_M4):  $(am__aclocal_m4_deps)
858         cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
859 install-sbinSCRIPTS: $(sbin_SCRIPTS)
860         @$(NORMAL_INSTALL)
861         test -z "$(sbindir)" || $(MKDIR_P) "$(DESTDIR)$(sbindir)"
862         @list='$(sbin_SCRIPTS)'; for p in $$list; do \
863           if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \
864           if test -f $$d$$p; then \
865             f=`echo "$$p" | sed 's|^.*/||;$(transform)'`; \
866             echo " $(sbinSCRIPT_INSTALL) '$$d$$p' '$(DESTDIR)$(sbindir)/$$f'"; \
867             $(sbinSCRIPT_INSTALL) "$$d$$p" "$(DESTDIR)$(sbindir)/$$f"; \
868           else :; fi; \
869         done
870
871 uninstall-sbinSCRIPTS:
872         @$(NORMAL_UNINSTALL)
873         @list='$(sbin_SCRIPTS)'; for p in $$list; do \
874           f=`echo "$$p" | sed 's|^.*/||;$(transform)'`; \
875           echo " rm -f '$(DESTDIR)$(sbindir)/$$f'"; \
876           rm -f "$(DESTDIR)$(sbindir)/$$f"; \
877         done
878
879 mostlyclean-libtool:
880         -rm -f *.lo
881
882 clean-libtool:
883         -rm -rf .libs _libs
884 install-amplotDATA: $(amplot_DATA)
885         @$(NORMAL_INSTALL)
886         test -z "$(amplotdir)" || $(MKDIR_P) "$(DESTDIR)$(amplotdir)"
887         @list='$(amplot_DATA)'; for p in $$list; do \
888           if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \
889           f=$(am__strip_dir) \
890           echo " $(amplotDATA_INSTALL) '$$d$$p' '$(DESTDIR)$(amplotdir)/$$f'"; \
891           $(amplotDATA_INSTALL) "$$d$$p" "$(DESTDIR)$(amplotdir)/$$f"; \
892         done
893
894 uninstall-amplotDATA:
895         @$(NORMAL_UNINSTALL)
896         @list='$(amplot_DATA)'; for p in $$list; do \
897           f=$(am__strip_dir) \
898           echo " rm -f '$(DESTDIR)$(amplotdir)/$$f'"; \
899           rm -f "$(DESTDIR)$(amplotdir)/$$f"; \
900         done
901 tags: TAGS
902 TAGS:
903
904 ctags: CTAGS
905 CTAGS:
906
907
908 distdir: $(DISTFILES)
909         @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
910         topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
911         list='$(DISTFILES)'; \
912           dist_files=`for file in $$list; do echo $$file; done | \
913           sed -e "s|^$$srcdirstrip/||;t" \
914               -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \
915         case $$dist_files in \
916           */*) $(MKDIR_P) `echo "$$dist_files" | \
917                            sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \
918                            sort -u` ;; \
919         esac; \
920         for file in $$dist_files; do \
921           if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \
922           if test -d $$d/$$file; then \
923             dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \
924             if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \
925               cp -pR $(srcdir)/$$file $(distdir)$$dir || exit 1; \
926             fi; \
927             cp -pR $$d/$$file $(distdir)$$dir || exit 1; \
928           else \
929             test -f $(distdir)/$$file \
930             || cp -p $$d/$$file $(distdir)/$$file \
931             || exit 1; \
932           fi; \
933         done
934         $(MAKE) $(AM_MAKEFLAGS) \
935           top_distdir="$(top_distdir)" distdir="$(distdir)" \
936           dist-hook
937 check-am: all-am
938         $(MAKE) $(AM_MAKEFLAGS) check-local
939 check: $(BUILT_SOURCES)
940         $(MAKE) $(AM_MAKEFLAGS) check-am
941 all-am: Makefile $(SCRIPTS) $(DATA)
942 installdirs:
943         for dir in "$(DESTDIR)$(sbindir)" "$(DESTDIR)$(amplotdir)"; do \
944           test -z "$$dir" || $(MKDIR_P) "$$dir"; \
945         done
946 install: $(BUILT_SOURCES)
947         $(MAKE) $(AM_MAKEFLAGS) install-am
948 install-exec: install-exec-am
949 install-data: install-data-am
950 uninstall: uninstall-am
951
952 install-am: all-am
953         @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am
954
955 installcheck: installcheck-am
956 install-strip:
957         $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \
958           install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \
959           `test -z '$(STRIP)' || \
960             echo "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'"` install
961 mostlyclean-generic:
962         -test -z "$(MOSTLYCLEANFILES)" || rm -f $(MOSTLYCLEANFILES)
963
964 clean-generic:
965         -test -z "$(CLEANFILES)" || rm -f $(CLEANFILES)
966
967 distclean-generic:
968         -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES)
969         -test -z "$(DISTCLEANFILES)" || rm -f $(DISTCLEANFILES)
970
971 maintainer-clean-generic:
972         @echo "This command is intended for maintainers to use"
973         @echo "it deletes files that may require special tools to rebuild."
974         -test -z "$(BUILT_SOURCES)" || rm -f $(BUILT_SOURCES)
975         -test -z "$(MAINTAINERCLEANFILES)" || rm -f $(MAINTAINERCLEANFILES)
976 clean: clean-am
977
978 clean-am: clean-generic clean-libtool mostlyclean-am
979
980 distclean: distclean-am
981         -rm -f Makefile
982 distclean-am: clean-am distclean-generic
983
984 dvi: dvi-am
985
986 dvi-am:
987
988 html: html-am
989
990 info: info-am
991
992 info-am:
993
994 install-data-am: install-amplotDATA
995         @$(NORMAL_INSTALL)
996         $(MAKE) $(AM_MAKEFLAGS) install-data-hook
997
998 install-dvi: install-dvi-am
999
1000 install-exec-am: install-sbinSCRIPTS
1001         @$(NORMAL_INSTALL)
1002         $(MAKE) $(AM_MAKEFLAGS) install-exec-hook
1003
1004 install-html: install-html-am
1005
1006 install-info: install-info-am
1007
1008 install-man:
1009
1010 install-pdf: install-pdf-am
1011
1012 install-ps: install-ps-am
1013
1014 installcheck-am: installcheck-local
1015
1016 maintainer-clean: maintainer-clean-am
1017         -rm -f Makefile
1018 maintainer-clean-am: distclean-am maintainer-clean-generic
1019
1020 mostlyclean: mostlyclean-am
1021
1022 mostlyclean-am: mostlyclean-generic mostlyclean-libtool
1023
1024 pdf: pdf-am
1025
1026 pdf-am:
1027
1028 ps: ps-am
1029
1030 ps-am:
1031
1032 uninstall-am: uninstall-amplotDATA uninstall-sbinSCRIPTS
1033
1034 .MAKE: install-am install-data-am install-exec-am install-strip
1035
1036 .PHONY: all all-am check check-am check-local clean clean-generic \
1037         clean-libtool dist-hook distclean distclean-generic \
1038         distclean-libtool distdir dvi dvi-am html html-am info info-am \
1039         install install-am install-amplotDATA install-data \
1040         install-data-am install-data-hook install-dvi install-dvi-am \
1041         install-exec install-exec-am install-exec-hook install-html \
1042         install-html-am install-info install-info-am install-man \
1043         install-pdf install-pdf-am install-ps install-ps-am \
1044         install-sbinSCRIPTS install-strip installcheck installcheck-am \
1045         installcheck-local installdirs maintainer-clean \
1046         maintainer-clean-generic mostlyclean mostlyclean-generic \
1047         mostlyclean-libtool pdf pdf-am ps ps-am uninstall uninstall-am \
1048         uninstall-amplotDATA uninstall-sbinSCRIPTS
1049
1050
1051 # Perl
1052 %: %.pl $(top_builddir)/config.status
1053         $(top_builddir)/config.status --file=$@:$<
1054         chmod a+x $@
1055         @if test -f $(top_builddir)/perl/.libs/libCmdline.so -o -f $(top_builddir)/perl/libCmdline.so; then \
1056                 grep -v '^use lib' $@ > $@.nouselib; \
1057                 $(PERL) $(CHECK_PERL_FLAGS) -I$(top_builddir)/perl -I$(top_builddir)/perl/.libs -I$(top_srcdir)/perl -c -w -T $@.nouselib || exit 1; \
1058                 rm $@.nouselib; \
1059         fi
1060
1061 %.pl: %.pl.in $(top_builddir)/config.status
1062         $(top_builddir)/config.status --file=$@:$<
1063
1064 %.pm: %.pm.in $(top_builddir)/config.status
1065         $(top_builddir)/config.status --file=$@:$<
1066
1067 # Shell
1068 %: %.sh $(top_builddir)/config.status
1069         $(top_builddir)/config.status --file=$@:$<
1070         chmod a+x $@
1071
1072 %.sh: %.sh.in $(top_builddir)/config.status
1073         $(top_builddir)/config.status --file=$@:$<
1074
1075 # Awk
1076 %: %.awk $(top_builddir)/config.status
1077         $(top_builddir)/config.status --file=$@:$<
1078         chmod a+x $@
1079
1080 %.awk: %.awk.in $(top_builddir)/config.status
1081         $(top_builddir)/config.status --file=$@:$<
1082
1083 # syntax-check perl scripts on 'make check'
1084 check-perl: $(CHECK_PERL)
1085         @CHECK_PERL="$(CHECK_PERL)"; \
1086         if test -f $(top_builddir)/perl/.libs/libCmdline.so -o -f $(top_builddir)/perl/libCmdline.so; then \
1087                 if test -n "$(PERL)"; then \
1088                         for perlobj in $$CHECK_PERL; do \
1089                                 grep -v '^use lib' $$perlobj > $$perlobj.nouselib; \
1090                                 $(PERL) $(CHECK_PERL_FLAGS) -I$(top_builddir)/perl -I$(top_builddir)/perl/.libs -I$(top_srcdir)/perl -c -w -T $$perlobj.nouselib || exit 1; \
1091                                 rm $$perlobj.nouselib; \
1092                         done; \
1093                 fi \
1094         fi
1095 check-local: check-perl
1096
1097 # syntax-check perl scripts on 'make installcheck'
1098 installcheck-perl: $(CHECK_PERL)
1099         @CHECK_PERL="$(CHECK_PERL)"; \
1100         if test -n "$(PERL)"; then \
1101                 for perlobj in $$CHECK_PERL; do \
1102                         $(PERL) $(CHECK_PERL_FLAGS) -c -w -T $$perlobj || exit 1; \
1103                 done; \
1104         fi
1105 installcheck-local: installcheck-perl
1106 check-shell: $(CHECK_SHELL)
1107         @CHECK_SHELL="$(CHECK_SHELL)"; \
1108         if test -n "$$CHECK_SHELL"; then \
1109                 if test -n "$(BASH)"; then \
1110                         for shobj in $$CHECK_SHELL; do \
1111                                 if $(BASH) -n $$shobj; then \
1112                                         echo "$$shobj syntax OK"; \
1113                                 else \
1114                                         echo "$$shobj syntax error"; \
1115                                         exit 1; \
1116                                 fi; \
1117                         done; \
1118                 else \
1119                         echo "No 'bash' available -- cannot syntax-check shell scripts"; \
1120                 fi; \
1121         fi
1122 check-local: check-shell
1123
1124 # make sure that the sources for all shell and perl scripts get included
1125 # in the distribution
1126 dist-scripts:
1127         SCRIPTS_PERL="$(SCRIPTS_PERL)"; SCRIPTS_SHELL="$(SCRIPTS_SHELL)"; SCRIPTS_AWK="$(SCRIPTS_AWK)"; \
1128         for script in $$SCRIPTS_PERL; do \
1129                 test -f $(srcdir)/$${script}.pl && { cp -p $(srcdir)/$${script}.pl $(distdir)/ || exit 1; } \
1130         done; \
1131         for script in $$SCRIPTS_SHELL; do \
1132                 test -f $(srcdir)/$${script}.sh && { cp -p $(srcdir)/$${script}.sh $(distdir)/ || exit 1; } \
1133         done; \
1134         for script in $$SCRIPTS_AWK; do \
1135                 test -f $(srcdir)/$${script}.awk && { cp -p $(srcdir)/$${script}.awk $(distdir)/ || exit 1; } \
1136         done; \
1137         for script in $$SCRIPTS_SHELL $$SCRIPTS_PERL $$SCRIPTS_AWK; do \
1138                 test -f $(srcdir)/$${script}.in && { cp -p $(srcdir)/$${script}.in $(distdir)/ || exit 1; } \
1139         done; \
1140         true
1141 dist-hook: dist-scripts
1142
1143 installperms-exec:
1144         @installperms="$(INSTALLPERMS_exec)"; \
1145         test -n "$$installperms" && echo "Setting installation permissions on executables"; \
1146         dest=; chown=; chmod=; \
1147         for cmd in $$installperms; do \
1148             case "$$cmd" in \
1149                 chown=amanda) \
1150                         echo "  ($$cmd)"; chown="$(BINARY_OWNER):$(SETUID_GROUP)";; \
1151                 dest=*|chown=*|chmod=*) \
1152                         echo "  ($$cmd)"; eval $$cmd;; \
1153                 *) $(do_file) ;; \
1154             esac; \
1155         done
1156
1157 installperms-data:
1158         @installperms="$(INSTALLPERMS_data)"; \
1159         dest=; chown=; chmod=; \
1160         for cmd in $$installperms; do \
1161             case "$$cmd" in \
1162                 chown=amanda) \
1163                         echo "  ($$cmd)"; chown="$(BINARY_OWNER):$(SETUID_GROUP)";; \
1164                 dest=*|chown=*|chmod=*) \
1165                         echo "  ($$cmd)"; eval $$cmd;; \
1166                 *)  $(do_file) ;; \
1167             esac; \
1168         done
1169
1170 install-exec-hook: installperms-exec
1171 install-data-hook: installperms-data
1172
1173 # define a rule to initialize the installperms manifest file
1174 @WANT_INSTALLPERMS_TRUE@installperms-init:
1175 @WANT_INSTALLPERMS_FALSE@installperms-init:
1176 @WANT_INSTALLPERMS_FALSE@       rm -f "$(installperms_sh)"
1177
1178 # A rule to make precompiler output from C files.  This is not used during
1179 # ordinary builds, but but can very useful in debugging problems on strange
1180 # architectures.  With this rule, we can ask users to 'make foo.i' and send
1181 # the result to us.
1182 #
1183 # It touches some automake internals ($COMPILE), but since it's not
1184 # build-critical, that's OK.
1185 %.i : %.c
1186         $(COMPILE) -E -o $@ $<
1187
1188 amplot.gp: amplot.g
1189         cat $(srcdir)/amplot.g > amplot.gp.new
1190         echo "pause -1;" >> amplot.gp.new
1191         rm -f amplot.gp
1192         mv amplot.gp.new amplot.gp
1193 # Tell versions [3.59,3.63) of GNU make to not export all variables.
1194 # Otherwise a system limit (for SysV at least) may be exceeded.
1195 .NOEXPORT: