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