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