nutcracker 0.4.0.16 → 0.4.1.18
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/Rakefile +3 -3
- data/ext/nutcracker/ChangeLog +33 -8
- data/ext/nutcracker/Makefile.in +34 -21
- data/ext/nutcracker/README.md +61 -26
- data/ext/nutcracker/aclocal.m4 +34 -31
- data/ext/nutcracker/autom4te.cache/output.0 +1875 -1330
- data/ext/nutcracker/autom4te.cache/output.1 +1875 -1330
- data/ext/nutcracker/autom4te.cache/requests +232 -451
- data/ext/nutcracker/autom4te.cache/traces.0 +2256 -2129
- data/ext/nutcracker/autom4te.cache/traces.1 +73 -59
- data/ext/nutcracker/config.h.in +1 -2
- data/ext/nutcracker/config.h.in~ +333 -0
- data/ext/nutcracker/config/compile +1 -1
- data/ext/nutcracker/config/config.guess +13 -160
- data/ext/nutcracker/config/config.sub +25 -11
- data/ext/nutcracker/config/depcomp +1 -1
- data/ext/nutcracker/config/install-sh +170 -196
- data/ext/nutcracker/config/ltmain.sh +3509 -2018
- data/ext/nutcracker/config/missing +1 -1
- data/ext/nutcracker/configure +1874 -1329
- data/ext/nutcracker/configure.ac +3 -2
- data/ext/nutcracker/contrib/Makefile.in +18 -5
- data/ext/nutcracker/contrib/yaml-0.1.4/LICENSE +19 -0
- data/ext/nutcracker/contrib/yaml-0.1.4/Makefile.am +20 -0
- data/ext/nutcracker/contrib/yaml-0.1.4/Makefile.in +832 -0
- data/ext/nutcracker/contrib/yaml-0.1.4/README +27 -0
- data/ext/nutcracker/contrib/yaml-0.1.4/aclocal.m4 +1157 -0
- data/ext/nutcracker/contrib/yaml-0.1.4/autom4te.cache/output.0 +13342 -0
- data/ext/nutcracker/contrib/yaml-0.1.4/autom4te.cache/output.1 +14611 -0
- data/ext/nutcracker/{autom4te.cache → contrib/yaml-0.1.4/autom4te.cache}/output.2 +3465 -8761
- data/ext/nutcracker/contrib/yaml-0.1.4/autom4te.cache/requests +516 -0
- data/ext/nutcracker/{autom4te.cache/traces.2 → contrib/yaml-0.1.4/autom4te.cache/traces.0} +662 -698
- data/ext/nutcracker/contrib/yaml-0.1.4/autom4te.cache/traces.1 +577 -0
- data/ext/nutcracker/contrib/yaml-0.1.4/autom4te.cache/traces.2 +2721 -0
- data/ext/nutcracker/contrib/yaml-0.1.4/config.h.in +79 -0
- data/ext/nutcracker/contrib/yaml-0.1.4/config.h.in~ +80 -0
- data/ext/nutcracker/contrib/yaml-0.1.4/config/compile +347 -0
- data/ext/nutcracker/contrib/yaml-0.1.4/config/config.guess +1421 -0
- data/ext/nutcracker/contrib/yaml-0.1.4/config/config.sub +1807 -0
- data/ext/nutcracker/contrib/yaml-0.1.4/config/depcomp +791 -0
- data/ext/nutcracker/contrib/yaml-0.1.4/config/install-sh +501 -0
- data/ext/nutcracker/contrib/yaml-0.1.4/config/ltmain.sh +11147 -0
- data/ext/nutcracker/contrib/yaml-0.1.4/config/missing +215 -0
- data/ext/nutcracker/contrib/yaml-0.1.4/config/test-driver +148 -0
- data/ext/nutcracker/contrib/yaml-0.1.4/configure +14611 -0
- data/ext/nutcracker/contrib/yaml-0.1.4/configure.ac +75 -0
- data/ext/nutcracker/contrib/yaml-0.1.4/doc/doxygen.cfg +222 -0
- data/ext/nutcracker/contrib/yaml-0.1.4/include/yaml.h +1971 -0
- data/ext/nutcracker/contrib/yaml-0.1.4/m4/libtool.m4 +8369 -0
- data/ext/nutcracker/contrib/yaml-0.1.4/m4/ltoptions.m4 +437 -0
- data/ext/nutcracker/contrib/yaml-0.1.4/m4/ltsugar.m4 +124 -0
- data/ext/nutcracker/contrib/yaml-0.1.4/m4/ltversion.m4 +23 -0
- data/ext/nutcracker/contrib/yaml-0.1.4/m4/lt~obsolete.m4 +99 -0
- data/ext/nutcracker/contrib/yaml-0.1.4/src/Makefile.am +4 -0
- data/ext/nutcracker/contrib/yaml-0.1.4/src/Makefile.in +600 -0
- data/ext/nutcracker/contrib/yaml-0.1.4/src/api.c +1392 -0
- data/ext/nutcracker/contrib/yaml-0.1.4/src/dumper.c +394 -0
- data/ext/nutcracker/contrib/yaml-0.1.4/src/emitter.c +2329 -0
- data/ext/nutcracker/contrib/yaml-0.1.4/src/loader.c +432 -0
- data/ext/nutcracker/contrib/yaml-0.1.4/src/parser.c +1374 -0
- data/ext/nutcracker/contrib/yaml-0.1.4/src/reader.c +465 -0
- data/ext/nutcracker/contrib/yaml-0.1.4/src/scanner.c +3570 -0
- data/ext/nutcracker/contrib/yaml-0.1.4/src/writer.c +141 -0
- data/ext/nutcracker/contrib/yaml-0.1.4/src/yaml_private.h +640 -0
- data/ext/nutcracker/contrib/yaml-0.1.4/tests/Makefile.am +8 -0
- data/ext/nutcracker/contrib/yaml-0.1.4/tests/Makefile.in +1083 -0
- data/ext/nutcracker/contrib/yaml-0.1.4/tests/example-deconstructor-alt.c +800 -0
- data/ext/nutcracker/contrib/yaml-0.1.4/tests/example-deconstructor.c +1130 -0
- data/ext/nutcracker/contrib/yaml-0.1.4/tests/example-reformatter-alt.c +217 -0
- data/ext/nutcracker/contrib/yaml-0.1.4/tests/example-reformatter.c +202 -0
- data/ext/nutcracker/contrib/yaml-0.1.4/tests/run-dumper.c +311 -0
- data/ext/nutcracker/contrib/yaml-0.1.4/tests/run-emitter.c +327 -0
- data/ext/nutcracker/contrib/yaml-0.1.4/tests/run-loader.c +63 -0
- data/ext/nutcracker/contrib/yaml-0.1.4/tests/run-parser.c +63 -0
- data/ext/nutcracker/contrib/yaml-0.1.4/tests/run-scanner.c +63 -0
- data/ext/nutcracker/contrib/yaml-0.1.4/tests/test-reader.c +354 -0
- data/ext/nutcracker/contrib/yaml-0.1.4/tests/test-version.c +29 -0
- data/ext/nutcracker/m4/libtool.m4 +1474 -1087
- data/ext/nutcracker/m4/ltoptions.m4 +90 -37
- data/ext/nutcracker/m4/ltsugar.m4 +4 -3
- data/ext/nutcracker/m4/ltversion.m4 +6 -6
- data/ext/nutcracker/m4/lt~obsolete.m4 +4 -3
- data/ext/nutcracker/man/nutcracker.8 +1 -1
- data/ext/nutcracker/notes/memcache.md +162 -0
- data/ext/nutcracker/notes/recommendation.md +10 -5
- data/ext/nutcracker/notes/redis.md +23 -9
- data/ext/nutcracker/scripts/nutcracker.init +10 -0
- data/ext/nutcracker/scripts/nutcracker.init.debian +83 -0
- data/ext/nutcracker/scripts/nutcracker.spec +36 -2
- data/ext/nutcracker/scripts/redis-check.sh +4 -0
- data/ext/nutcracker/src/Makefile.am +6 -1
- data/ext/nutcracker/src/Makefile.in +26 -12
- data/ext/nutcracker/src/event/Makefile.in +19 -6
- data/ext/nutcracker/src/hashkit/Makefile.in +19 -6
- data/ext/nutcracker/src/hashkit/nc_jenkins.c +1 -1
- data/ext/nutcracker/src/hashkit/nc_ketama.c +3 -3
- data/ext/nutcracker/src/nc.c +1 -1
- data/ext/nutcracker/src/nc_conf.c +67 -19
- data/ext/nutcracker/src/nc_conf.h +9 -4
- data/ext/nutcracker/src/nc_connection.c +35 -2
- data/ext/nutcracker/src/nc_connection.h +53 -47
- data/ext/nutcracker/src/nc_core.c +8 -1
- data/ext/nutcracker/src/nc_message.c +23 -7
- data/ext/nutcracker/src/nc_message.h +24 -1
- data/ext/nutcracker/src/nc_proxy.c +14 -3
- data/ext/nutcracker/src/nc_rbtree.c +1 -5
- data/ext/nutcracker/src/nc_request.c +58 -10
- data/ext/nutcracker/src/nc_response.c +27 -4
- data/ext/nutcracker/src/nc_server.c +33 -5
- data/ext/nutcracker/src/nc_server.h +10 -9
- data/ext/nutcracker/src/nc_string.h +17 -0
- data/ext/nutcracker/src/nc_util.c +5 -1
- data/ext/nutcracker/src/proto/Makefile.in +19 -6
- data/ext/nutcracker/src/proto/nc_memcache.c +76 -12
- data/ext/nutcracker/src/proto/nc_proto.h +9 -0
- data/ext/nutcracker/src/proto/nc_redis.c +400 -18
- data/lib/nutcracker.rb +1 -1
- data/lib/nutcracker/version.rb +1 -1
- metadata +61 -6
- data/ext/nutcracker/notes/memcache.txt +0 -123
@@ -0,0 +1,23 @@
|
|
1
|
+
# ltversion.m4 -- version numbers -*- Autoconf -*-
|
2
|
+
#
|
3
|
+
# Copyright (C) 2004, 2011-2015 Free Software Foundation, Inc.
|
4
|
+
# Written by Scott James Remnant, 2004
|
5
|
+
#
|
6
|
+
# This file is free software; the Free Software Foundation gives
|
7
|
+
# unlimited permission to copy and/or distribute it, with or without
|
8
|
+
# modifications, as long as this notice is preserved.
|
9
|
+
|
10
|
+
# @configure_input@
|
11
|
+
|
12
|
+
# serial 4179 ltversion.m4
|
13
|
+
# This file is part of GNU Libtool
|
14
|
+
|
15
|
+
m4_define([LT_PACKAGE_VERSION], [2.4.6])
|
16
|
+
m4_define([LT_PACKAGE_REVISION], [2.4.6])
|
17
|
+
|
18
|
+
AC_DEFUN([LTVERSION_VERSION],
|
19
|
+
[macro_version='2.4.6'
|
20
|
+
macro_revision='2.4.6'
|
21
|
+
_LT_DECL(, macro_version, 0, [Which release of libtool.m4 was used?])
|
22
|
+
_LT_DECL(, macro_revision, 0)
|
23
|
+
])
|
@@ -0,0 +1,99 @@
|
|
1
|
+
# lt~obsolete.m4 -- aclocal satisfying obsolete definitions. -*-Autoconf-*-
|
2
|
+
#
|
3
|
+
# Copyright (C) 2004-2005, 2007, 2009, 2011-2015 Free Software
|
4
|
+
# Foundation, Inc.
|
5
|
+
# Written by Scott James Remnant, 2004.
|
6
|
+
#
|
7
|
+
# This file is free software; the Free Software Foundation gives
|
8
|
+
# unlimited permission to copy and/or distribute it, with or without
|
9
|
+
# modifications, as long as this notice is preserved.
|
10
|
+
|
11
|
+
# serial 5 lt~obsolete.m4
|
12
|
+
|
13
|
+
# These exist entirely to fool aclocal when bootstrapping libtool.
|
14
|
+
#
|
15
|
+
# In the past libtool.m4 has provided macros via AC_DEFUN (or AU_DEFUN),
|
16
|
+
# which have later been changed to m4_define as they aren't part of the
|
17
|
+
# exported API, or moved to Autoconf or Automake where they belong.
|
18
|
+
#
|
19
|
+
# The trouble is, aclocal is a bit thick. It'll see the old AC_DEFUN
|
20
|
+
# in /usr/share/aclocal/libtool.m4 and remember it, then when it sees us
|
21
|
+
# using a macro with the same name in our local m4/libtool.m4 it'll
|
22
|
+
# pull the old libtool.m4 in (it doesn't see our shiny new m4_define
|
23
|
+
# and doesn't know about Autoconf macros at all.)
|
24
|
+
#
|
25
|
+
# So we provide this file, which has a silly filename so it's always
|
26
|
+
# included after everything else. This provides aclocal with the
|
27
|
+
# AC_DEFUNs it wants, but when m4 processes it, it doesn't do anything
|
28
|
+
# because those macros already exist, or will be overwritten later.
|
29
|
+
# We use AC_DEFUN over AU_DEFUN for compatibility with aclocal-1.6.
|
30
|
+
#
|
31
|
+
# Anytime we withdraw an AC_DEFUN or AU_DEFUN, remember to add it here.
|
32
|
+
# Yes, that means every name once taken will need to remain here until
|
33
|
+
# we give up compatibility with versions before 1.7, at which point
|
34
|
+
# we need to keep only those names which we still refer to.
|
35
|
+
|
36
|
+
# This is to help aclocal find these macros, as it can't see m4_define.
|
37
|
+
AC_DEFUN([LTOBSOLETE_VERSION], [m4_if([1])])
|
38
|
+
|
39
|
+
m4_ifndef([AC_LIBTOOL_LINKER_OPTION], [AC_DEFUN([AC_LIBTOOL_LINKER_OPTION])])
|
40
|
+
m4_ifndef([AC_PROG_EGREP], [AC_DEFUN([AC_PROG_EGREP])])
|
41
|
+
m4_ifndef([_LT_AC_PROG_ECHO_BACKSLASH], [AC_DEFUN([_LT_AC_PROG_ECHO_BACKSLASH])])
|
42
|
+
m4_ifndef([_LT_AC_SHELL_INIT], [AC_DEFUN([_LT_AC_SHELL_INIT])])
|
43
|
+
m4_ifndef([_LT_AC_SYS_LIBPATH_AIX], [AC_DEFUN([_LT_AC_SYS_LIBPATH_AIX])])
|
44
|
+
m4_ifndef([_LT_PROG_LTMAIN], [AC_DEFUN([_LT_PROG_LTMAIN])])
|
45
|
+
m4_ifndef([_LT_AC_TAGVAR], [AC_DEFUN([_LT_AC_TAGVAR])])
|
46
|
+
m4_ifndef([AC_LTDL_ENABLE_INSTALL], [AC_DEFUN([AC_LTDL_ENABLE_INSTALL])])
|
47
|
+
m4_ifndef([AC_LTDL_PREOPEN], [AC_DEFUN([AC_LTDL_PREOPEN])])
|
48
|
+
m4_ifndef([_LT_AC_SYS_COMPILER], [AC_DEFUN([_LT_AC_SYS_COMPILER])])
|
49
|
+
m4_ifndef([_LT_AC_LOCK], [AC_DEFUN([_LT_AC_LOCK])])
|
50
|
+
m4_ifndef([AC_LIBTOOL_SYS_OLD_ARCHIVE], [AC_DEFUN([AC_LIBTOOL_SYS_OLD_ARCHIVE])])
|
51
|
+
m4_ifndef([_LT_AC_TRY_DLOPEN_SELF], [AC_DEFUN([_LT_AC_TRY_DLOPEN_SELF])])
|
52
|
+
m4_ifndef([AC_LIBTOOL_PROG_CC_C_O], [AC_DEFUN([AC_LIBTOOL_PROG_CC_C_O])])
|
53
|
+
m4_ifndef([AC_LIBTOOL_SYS_HARD_LINK_LOCKS], [AC_DEFUN([AC_LIBTOOL_SYS_HARD_LINK_LOCKS])])
|
54
|
+
m4_ifndef([AC_LIBTOOL_OBJDIR], [AC_DEFUN([AC_LIBTOOL_OBJDIR])])
|
55
|
+
m4_ifndef([AC_LTDL_OBJDIR], [AC_DEFUN([AC_LTDL_OBJDIR])])
|
56
|
+
m4_ifndef([AC_LIBTOOL_PROG_LD_HARDCODE_LIBPATH], [AC_DEFUN([AC_LIBTOOL_PROG_LD_HARDCODE_LIBPATH])])
|
57
|
+
m4_ifndef([AC_LIBTOOL_SYS_LIB_STRIP], [AC_DEFUN([AC_LIBTOOL_SYS_LIB_STRIP])])
|
58
|
+
m4_ifndef([AC_PATH_MAGIC], [AC_DEFUN([AC_PATH_MAGIC])])
|
59
|
+
m4_ifndef([AC_PROG_LD_GNU], [AC_DEFUN([AC_PROG_LD_GNU])])
|
60
|
+
m4_ifndef([AC_PROG_LD_RELOAD_FLAG], [AC_DEFUN([AC_PROG_LD_RELOAD_FLAG])])
|
61
|
+
m4_ifndef([AC_DEPLIBS_CHECK_METHOD], [AC_DEFUN([AC_DEPLIBS_CHECK_METHOD])])
|
62
|
+
m4_ifndef([AC_LIBTOOL_PROG_COMPILER_NO_RTTI], [AC_DEFUN([AC_LIBTOOL_PROG_COMPILER_NO_RTTI])])
|
63
|
+
m4_ifndef([AC_LIBTOOL_SYS_GLOBAL_SYMBOL_PIPE], [AC_DEFUN([AC_LIBTOOL_SYS_GLOBAL_SYMBOL_PIPE])])
|
64
|
+
m4_ifndef([AC_LIBTOOL_PROG_COMPILER_PIC], [AC_DEFUN([AC_LIBTOOL_PROG_COMPILER_PIC])])
|
65
|
+
m4_ifndef([AC_LIBTOOL_PROG_LD_SHLIBS], [AC_DEFUN([AC_LIBTOOL_PROG_LD_SHLIBS])])
|
66
|
+
m4_ifndef([AC_LIBTOOL_POSTDEP_PREDEP], [AC_DEFUN([AC_LIBTOOL_POSTDEP_PREDEP])])
|
67
|
+
m4_ifndef([LT_AC_PROG_EGREP], [AC_DEFUN([LT_AC_PROG_EGREP])])
|
68
|
+
m4_ifndef([LT_AC_PROG_SED], [AC_DEFUN([LT_AC_PROG_SED])])
|
69
|
+
m4_ifndef([_LT_CC_BASENAME], [AC_DEFUN([_LT_CC_BASENAME])])
|
70
|
+
m4_ifndef([_LT_COMPILER_BOILERPLATE], [AC_DEFUN([_LT_COMPILER_BOILERPLATE])])
|
71
|
+
m4_ifndef([_LT_LINKER_BOILERPLATE], [AC_DEFUN([_LT_LINKER_BOILERPLATE])])
|
72
|
+
m4_ifndef([_AC_PROG_LIBTOOL], [AC_DEFUN([_AC_PROG_LIBTOOL])])
|
73
|
+
m4_ifndef([AC_LIBTOOL_SETUP], [AC_DEFUN([AC_LIBTOOL_SETUP])])
|
74
|
+
m4_ifndef([_LT_AC_CHECK_DLFCN], [AC_DEFUN([_LT_AC_CHECK_DLFCN])])
|
75
|
+
m4_ifndef([AC_LIBTOOL_SYS_DYNAMIC_LINKER], [AC_DEFUN([AC_LIBTOOL_SYS_DYNAMIC_LINKER])])
|
76
|
+
m4_ifndef([_LT_AC_TAGCONFIG], [AC_DEFUN([_LT_AC_TAGCONFIG])])
|
77
|
+
m4_ifndef([AC_DISABLE_FAST_INSTALL], [AC_DEFUN([AC_DISABLE_FAST_INSTALL])])
|
78
|
+
m4_ifndef([_LT_AC_LANG_CXX], [AC_DEFUN([_LT_AC_LANG_CXX])])
|
79
|
+
m4_ifndef([_LT_AC_LANG_F77], [AC_DEFUN([_LT_AC_LANG_F77])])
|
80
|
+
m4_ifndef([_LT_AC_LANG_GCJ], [AC_DEFUN([_LT_AC_LANG_GCJ])])
|
81
|
+
m4_ifndef([AC_LIBTOOL_LANG_C_CONFIG], [AC_DEFUN([AC_LIBTOOL_LANG_C_CONFIG])])
|
82
|
+
m4_ifndef([_LT_AC_LANG_C_CONFIG], [AC_DEFUN([_LT_AC_LANG_C_CONFIG])])
|
83
|
+
m4_ifndef([AC_LIBTOOL_LANG_CXX_CONFIG], [AC_DEFUN([AC_LIBTOOL_LANG_CXX_CONFIG])])
|
84
|
+
m4_ifndef([_LT_AC_LANG_CXX_CONFIG], [AC_DEFUN([_LT_AC_LANG_CXX_CONFIG])])
|
85
|
+
m4_ifndef([AC_LIBTOOL_LANG_F77_CONFIG], [AC_DEFUN([AC_LIBTOOL_LANG_F77_CONFIG])])
|
86
|
+
m4_ifndef([_LT_AC_LANG_F77_CONFIG], [AC_DEFUN([_LT_AC_LANG_F77_CONFIG])])
|
87
|
+
m4_ifndef([AC_LIBTOOL_LANG_GCJ_CONFIG], [AC_DEFUN([AC_LIBTOOL_LANG_GCJ_CONFIG])])
|
88
|
+
m4_ifndef([_LT_AC_LANG_GCJ_CONFIG], [AC_DEFUN([_LT_AC_LANG_GCJ_CONFIG])])
|
89
|
+
m4_ifndef([AC_LIBTOOL_LANG_RC_CONFIG], [AC_DEFUN([AC_LIBTOOL_LANG_RC_CONFIG])])
|
90
|
+
m4_ifndef([_LT_AC_LANG_RC_CONFIG], [AC_DEFUN([_LT_AC_LANG_RC_CONFIG])])
|
91
|
+
m4_ifndef([AC_LIBTOOL_CONFIG], [AC_DEFUN([AC_LIBTOOL_CONFIG])])
|
92
|
+
m4_ifndef([_LT_AC_FILE_LTDLL_C], [AC_DEFUN([_LT_AC_FILE_LTDLL_C])])
|
93
|
+
m4_ifndef([_LT_REQUIRED_DARWIN_CHECKS], [AC_DEFUN([_LT_REQUIRED_DARWIN_CHECKS])])
|
94
|
+
m4_ifndef([_LT_AC_PROG_CXXCPP], [AC_DEFUN([_LT_AC_PROG_CXXCPP])])
|
95
|
+
m4_ifndef([_LT_PREPARE_SED_QUOTE_VARS], [AC_DEFUN([_LT_PREPARE_SED_QUOTE_VARS])])
|
96
|
+
m4_ifndef([_LT_PROG_ECHO_BACKSLASH], [AC_DEFUN([_LT_PROG_ECHO_BACKSLASH])])
|
97
|
+
m4_ifndef([_LT_PROG_F77], [AC_DEFUN([_LT_PROG_F77])])
|
98
|
+
m4_ifndef([_LT_PROG_FC], [AC_DEFUN([_LT_PROG_FC])])
|
99
|
+
m4_ifndef([_LT_PROG_CXX], [AC_DEFUN([_LT_PROG_CXX])])
|
@@ -0,0 +1,4 @@
|
|
1
|
+
AM_CPPFLAGS = -I$(top_srcdir)/include
|
2
|
+
noinst_LTLIBRARIES = libyaml.la
|
3
|
+
libyaml_la_SOURCES = yaml_private.h api.c reader.c scanner.c parser.c loader.c writer.c emitter.c dumper.c
|
4
|
+
libyaml_la_LDFLAGS = -release $(YAML_LT_RELEASE) -version-info $(YAML_LT_CURRENT):$(YAML_LT_REVISION):$(YAML_LT_AGE)
|
@@ -0,0 +1,600 @@
|
|
1
|
+
# Makefile.in generated by automake 1.15 from Makefile.am.
|
2
|
+
# @configure_input@
|
3
|
+
|
4
|
+
# Copyright (C) 1994-2014 Free Software Foundation, Inc.
|
5
|
+
|
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
|
+
VPATH = @srcdir@
|
18
|
+
am__is_gnu_make = { \
|
19
|
+
if test -z '$(MAKELEVEL)'; then \
|
20
|
+
false; \
|
21
|
+
elif test -n '$(MAKE_HOST)'; then \
|
22
|
+
true; \
|
23
|
+
elif test -n '$(MAKE_VERSION)' && test -n '$(CURDIR)'; then \
|
24
|
+
true; \
|
25
|
+
else \
|
26
|
+
false; \
|
27
|
+
fi; \
|
28
|
+
}
|
29
|
+
am__make_running_with_option = \
|
30
|
+
case $${target_option-} in \
|
31
|
+
?) ;; \
|
32
|
+
*) echo "am__make_running_with_option: internal error: invalid" \
|
33
|
+
"target option '$${target_option-}' specified" >&2; \
|
34
|
+
exit 1;; \
|
35
|
+
esac; \
|
36
|
+
has_opt=no; \
|
37
|
+
sane_makeflags=$$MAKEFLAGS; \
|
38
|
+
if $(am__is_gnu_make); then \
|
39
|
+
sane_makeflags=$$MFLAGS; \
|
40
|
+
else \
|
41
|
+
case $$MAKEFLAGS in \
|
42
|
+
*\\[\ \ ]*) \
|
43
|
+
bs=\\; \
|
44
|
+
sane_makeflags=`printf '%s\n' "$$MAKEFLAGS" \
|
45
|
+
| sed "s/$$bs$$bs[$$bs $$bs ]*//g"`;; \
|
46
|
+
esac; \
|
47
|
+
fi; \
|
48
|
+
skip_next=no; \
|
49
|
+
strip_trailopt () \
|
50
|
+
{ \
|
51
|
+
flg=`printf '%s\n' "$$flg" | sed "s/$$1.*$$//"`; \
|
52
|
+
}; \
|
53
|
+
for flg in $$sane_makeflags; do \
|
54
|
+
test $$skip_next = yes && { skip_next=no; continue; }; \
|
55
|
+
case $$flg in \
|
56
|
+
*=*|--*) continue;; \
|
57
|
+
-*I) strip_trailopt 'I'; skip_next=yes;; \
|
58
|
+
-*I?*) strip_trailopt 'I';; \
|
59
|
+
-*O) strip_trailopt 'O'; skip_next=yes;; \
|
60
|
+
-*O?*) strip_trailopt 'O';; \
|
61
|
+
-*l) strip_trailopt 'l'; skip_next=yes;; \
|
62
|
+
-*l?*) strip_trailopt 'l';; \
|
63
|
+
-[dEDm]) skip_next=yes;; \
|
64
|
+
-[JT]) skip_next=yes;; \
|
65
|
+
esac; \
|
66
|
+
case $$flg in \
|
67
|
+
*$$target_option*) has_opt=yes; break;; \
|
68
|
+
esac; \
|
69
|
+
done; \
|
70
|
+
test $$has_opt = yes
|
71
|
+
am__make_dryrun = (target_option=n; $(am__make_running_with_option))
|
72
|
+
am__make_keepgoing = (target_option=k; $(am__make_running_with_option))
|
73
|
+
pkgdatadir = $(datadir)/@PACKAGE@
|
74
|
+
pkgincludedir = $(includedir)/@PACKAGE@
|
75
|
+
pkglibdir = $(libdir)/@PACKAGE@
|
76
|
+
pkglibexecdir = $(libexecdir)/@PACKAGE@
|
77
|
+
am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd
|
78
|
+
install_sh_DATA = $(install_sh) -c -m 644
|
79
|
+
install_sh_PROGRAM = $(install_sh) -c
|
80
|
+
install_sh_SCRIPT = $(install_sh) -c
|
81
|
+
INSTALL_HEADER = $(INSTALL_DATA)
|
82
|
+
transform = $(program_transform_name)
|
83
|
+
NORMAL_INSTALL = :
|
84
|
+
PRE_INSTALL = :
|
85
|
+
POST_INSTALL = :
|
86
|
+
NORMAL_UNINSTALL = :
|
87
|
+
PRE_UNINSTALL = :
|
88
|
+
POST_UNINSTALL = :
|
89
|
+
build_triplet = @build@
|
90
|
+
host_triplet = @host@
|
91
|
+
subdir = src
|
92
|
+
ACLOCAL_M4 = $(top_srcdir)/aclocal.m4
|
93
|
+
am__aclocal_m4_deps = $(top_srcdir)/m4/libtool.m4 \
|
94
|
+
$(top_srcdir)/m4/ltoptions.m4 $(top_srcdir)/m4/ltsugar.m4 \
|
95
|
+
$(top_srcdir)/m4/ltversion.m4 $(top_srcdir)/m4/lt~obsolete.m4 \
|
96
|
+
$(top_srcdir)/configure.ac
|
97
|
+
am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \
|
98
|
+
$(ACLOCAL_M4)
|
99
|
+
DIST_COMMON = $(srcdir)/Makefile.am $(am__DIST_COMMON)
|
100
|
+
mkinstalldirs = $(install_sh) -d
|
101
|
+
CONFIG_HEADER = $(top_builddir)/config.h
|
102
|
+
CONFIG_CLEAN_FILES =
|
103
|
+
CONFIG_CLEAN_VPATH_FILES =
|
104
|
+
LTLIBRARIES = $(noinst_LTLIBRARIES)
|
105
|
+
libyaml_la_LIBADD =
|
106
|
+
am_libyaml_la_OBJECTS = api.lo reader.lo scanner.lo parser.lo \
|
107
|
+
loader.lo writer.lo emitter.lo dumper.lo
|
108
|
+
libyaml_la_OBJECTS = $(am_libyaml_la_OBJECTS)
|
109
|
+
AM_V_lt = $(am__v_lt_@AM_V@)
|
110
|
+
am__v_lt_ = $(am__v_lt_@AM_DEFAULT_V@)
|
111
|
+
am__v_lt_0 = --silent
|
112
|
+
am__v_lt_1 =
|
113
|
+
libyaml_la_LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \
|
114
|
+
$(LIBTOOLFLAGS) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \
|
115
|
+
$(libyaml_la_LDFLAGS) $(LDFLAGS) -o $@
|
116
|
+
AM_V_P = $(am__v_P_@AM_V@)
|
117
|
+
am__v_P_ = $(am__v_P_@AM_DEFAULT_V@)
|
118
|
+
am__v_P_0 = false
|
119
|
+
am__v_P_1 = :
|
120
|
+
AM_V_GEN = $(am__v_GEN_@AM_V@)
|
121
|
+
am__v_GEN_ = $(am__v_GEN_@AM_DEFAULT_V@)
|
122
|
+
am__v_GEN_0 = @echo " GEN " $@;
|
123
|
+
am__v_GEN_1 =
|
124
|
+
AM_V_at = $(am__v_at_@AM_V@)
|
125
|
+
am__v_at_ = $(am__v_at_@AM_DEFAULT_V@)
|
126
|
+
am__v_at_0 = @
|
127
|
+
am__v_at_1 =
|
128
|
+
DEFAULT_INCLUDES = -I.@am__isrc@ -I$(top_builddir)
|
129
|
+
depcomp = $(SHELL) $(top_srcdir)/config/depcomp
|
130
|
+
am__depfiles_maybe = depfiles
|
131
|
+
am__mv = mv -f
|
132
|
+
COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \
|
133
|
+
$(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS)
|
134
|
+
LTCOMPILE = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \
|
135
|
+
$(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) \
|
136
|
+
$(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) \
|
137
|
+
$(AM_CFLAGS) $(CFLAGS)
|
138
|
+
AM_V_CC = $(am__v_CC_@AM_V@)
|
139
|
+
am__v_CC_ = $(am__v_CC_@AM_DEFAULT_V@)
|
140
|
+
am__v_CC_0 = @echo " CC " $@;
|
141
|
+
am__v_CC_1 =
|
142
|
+
CCLD = $(CC)
|
143
|
+
LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \
|
144
|
+
$(LIBTOOLFLAGS) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \
|
145
|
+
$(AM_LDFLAGS) $(LDFLAGS) -o $@
|
146
|
+
AM_V_CCLD = $(am__v_CCLD_@AM_V@)
|
147
|
+
am__v_CCLD_ = $(am__v_CCLD_@AM_DEFAULT_V@)
|
148
|
+
am__v_CCLD_0 = @echo " CCLD " $@;
|
149
|
+
am__v_CCLD_1 =
|
150
|
+
SOURCES = $(libyaml_la_SOURCES)
|
151
|
+
DIST_SOURCES = $(libyaml_la_SOURCES)
|
152
|
+
am__can_run_installinfo = \
|
153
|
+
case $$AM_UPDATE_INFO_DIR in \
|
154
|
+
n|no|NO) false;; \
|
155
|
+
*) (install-info --version) >/dev/null 2>&1;; \
|
156
|
+
esac
|
157
|
+
am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) $(LISP)
|
158
|
+
# Read a list of newline-separated strings from the standard input,
|
159
|
+
# and print each of them once, without duplicates. Input order is
|
160
|
+
# *not* preserved.
|
161
|
+
am__uniquify_input = $(AWK) '\
|
162
|
+
BEGIN { nonempty = 0; } \
|
163
|
+
{ items[$$0] = 1; nonempty = 1; } \
|
164
|
+
END { if (nonempty) { for (i in items) print i; }; } \
|
165
|
+
'
|
166
|
+
# Make sure the list of sources is unique. This is necessary because,
|
167
|
+
# e.g., the same source file might be shared among _SOURCES variables
|
168
|
+
# for different programs/libraries.
|
169
|
+
am__define_uniq_tagged_files = \
|
170
|
+
list='$(am__tagged_files)'; \
|
171
|
+
unique=`for i in $$list; do \
|
172
|
+
if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
|
173
|
+
done | $(am__uniquify_input)`
|
174
|
+
ETAGS = etags
|
175
|
+
CTAGS = ctags
|
176
|
+
am__DIST_COMMON = $(srcdir)/Makefile.in $(top_srcdir)/config/depcomp
|
177
|
+
DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST)
|
178
|
+
ACLOCAL = @ACLOCAL@
|
179
|
+
AMTAR = @AMTAR@
|
180
|
+
AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@
|
181
|
+
AR = @AR@
|
182
|
+
AUTOCONF = @AUTOCONF@
|
183
|
+
AUTOHEADER = @AUTOHEADER@
|
184
|
+
AUTOMAKE = @AUTOMAKE@
|
185
|
+
AWK = @AWK@
|
186
|
+
CC = @CC@
|
187
|
+
CCDEPMODE = @CCDEPMODE@
|
188
|
+
CFLAGS = @CFLAGS@
|
189
|
+
CPP = @CPP@
|
190
|
+
CPPFLAGS = @CPPFLAGS@
|
191
|
+
CYGPATH_W = @CYGPATH_W@
|
192
|
+
DEFS = @DEFS@
|
193
|
+
DEPDIR = @DEPDIR@
|
194
|
+
DLLTOOL = @DLLTOOL@
|
195
|
+
DOXYGEN = @DOXYGEN@
|
196
|
+
DSYMUTIL = @DSYMUTIL@
|
197
|
+
DUMPBIN = @DUMPBIN@
|
198
|
+
ECHO_C = @ECHO_C@
|
199
|
+
ECHO_N = @ECHO_N@
|
200
|
+
ECHO_T = @ECHO_T@
|
201
|
+
EGREP = @EGREP@
|
202
|
+
EXEEXT = @EXEEXT@
|
203
|
+
FGREP = @FGREP@
|
204
|
+
GREP = @GREP@
|
205
|
+
INSTALL = @INSTALL@
|
206
|
+
INSTALL_DATA = @INSTALL_DATA@
|
207
|
+
INSTALL_PROGRAM = @INSTALL_PROGRAM@
|
208
|
+
INSTALL_SCRIPT = @INSTALL_SCRIPT@
|
209
|
+
INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@
|
210
|
+
LD = @LD@
|
211
|
+
LDFLAGS = @LDFLAGS@
|
212
|
+
LIBOBJS = @LIBOBJS@
|
213
|
+
LIBS = @LIBS@
|
214
|
+
LIBTOOL = @LIBTOOL@
|
215
|
+
LIPO = @LIPO@
|
216
|
+
LN_S = @LN_S@
|
217
|
+
LTLIBOBJS = @LTLIBOBJS@
|
218
|
+
LT_SYS_LIBRARY_PATH = @LT_SYS_LIBRARY_PATH@
|
219
|
+
MAKEINFO = @MAKEINFO@
|
220
|
+
MANIFEST_TOOL = @MANIFEST_TOOL@
|
221
|
+
MKDIR_P = @MKDIR_P@
|
222
|
+
NM = @NM@
|
223
|
+
NMEDIT = @NMEDIT@
|
224
|
+
OBJDUMP = @OBJDUMP@
|
225
|
+
OBJEXT = @OBJEXT@
|
226
|
+
OTOOL = @OTOOL@
|
227
|
+
OTOOL64 = @OTOOL64@
|
228
|
+
PACKAGE = @PACKAGE@
|
229
|
+
PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@
|
230
|
+
PACKAGE_NAME = @PACKAGE_NAME@
|
231
|
+
PACKAGE_STRING = @PACKAGE_STRING@
|
232
|
+
PACKAGE_TARNAME = @PACKAGE_TARNAME@
|
233
|
+
PACKAGE_URL = @PACKAGE_URL@
|
234
|
+
PACKAGE_VERSION = @PACKAGE_VERSION@
|
235
|
+
PATH_SEPARATOR = @PATH_SEPARATOR@
|
236
|
+
RANLIB = @RANLIB@
|
237
|
+
SED = @SED@
|
238
|
+
SET_MAKE = @SET_MAKE@
|
239
|
+
SHELL = @SHELL@
|
240
|
+
STRIP = @STRIP@
|
241
|
+
VERSION = @VERSION@
|
242
|
+
YAML_LT_AGE = @YAML_LT_AGE@
|
243
|
+
YAML_LT_CURRENT = @YAML_LT_CURRENT@
|
244
|
+
YAML_LT_RELEASE = @YAML_LT_RELEASE@
|
245
|
+
YAML_LT_REVISION = @YAML_LT_REVISION@
|
246
|
+
abs_builddir = @abs_builddir@
|
247
|
+
abs_srcdir = @abs_srcdir@
|
248
|
+
abs_top_builddir = @abs_top_builddir@
|
249
|
+
abs_top_srcdir = @abs_top_srcdir@
|
250
|
+
ac_ct_AR = @ac_ct_AR@
|
251
|
+
ac_ct_CC = @ac_ct_CC@
|
252
|
+
ac_ct_DUMPBIN = @ac_ct_DUMPBIN@
|
253
|
+
am__include = @am__include@
|
254
|
+
am__leading_dot = @am__leading_dot@
|
255
|
+
am__quote = @am__quote@
|
256
|
+
am__tar = @am__tar@
|
257
|
+
am__untar = @am__untar@
|
258
|
+
bindir = @bindir@
|
259
|
+
build = @build@
|
260
|
+
build_alias = @build_alias@
|
261
|
+
build_cpu = @build_cpu@
|
262
|
+
build_os = @build_os@
|
263
|
+
build_vendor = @build_vendor@
|
264
|
+
builddir = @builddir@
|
265
|
+
datadir = @datadir@
|
266
|
+
datarootdir = @datarootdir@
|
267
|
+
docdir = @docdir@
|
268
|
+
dvidir = @dvidir@
|
269
|
+
exec_prefix = @exec_prefix@
|
270
|
+
host = @host@
|
271
|
+
host_alias = @host_alias@
|
272
|
+
host_cpu = @host_cpu@
|
273
|
+
host_os = @host_os@
|
274
|
+
host_vendor = @host_vendor@
|
275
|
+
htmldir = @htmldir@
|
276
|
+
includedir = @includedir@
|
277
|
+
infodir = @infodir@
|
278
|
+
install_sh = @install_sh@
|
279
|
+
libdir = @libdir@
|
280
|
+
libexecdir = @libexecdir@
|
281
|
+
localedir = @localedir@
|
282
|
+
localstatedir = @localstatedir@
|
283
|
+
mandir = @mandir@
|
284
|
+
mkdir_p = @mkdir_p@
|
285
|
+
oldincludedir = @oldincludedir@
|
286
|
+
pdfdir = @pdfdir@
|
287
|
+
prefix = @prefix@
|
288
|
+
program_transform_name = @program_transform_name@
|
289
|
+
psdir = @psdir@
|
290
|
+
sbindir = @sbindir@
|
291
|
+
sharedstatedir = @sharedstatedir@
|
292
|
+
srcdir = @srcdir@
|
293
|
+
sysconfdir = @sysconfdir@
|
294
|
+
target_alias = @target_alias@
|
295
|
+
top_build_prefix = @top_build_prefix@
|
296
|
+
top_builddir = @top_builddir@
|
297
|
+
top_srcdir = @top_srcdir@
|
298
|
+
AM_CPPFLAGS = -I$(top_srcdir)/include
|
299
|
+
noinst_LTLIBRARIES = libyaml.la
|
300
|
+
libyaml_la_SOURCES = yaml_private.h api.c reader.c scanner.c parser.c loader.c writer.c emitter.c dumper.c
|
301
|
+
libyaml_la_LDFLAGS = -release $(YAML_LT_RELEASE) -version-info $(YAML_LT_CURRENT):$(YAML_LT_REVISION):$(YAML_LT_AGE)
|
302
|
+
all: all-am
|
303
|
+
|
304
|
+
.SUFFIXES:
|
305
|
+
.SUFFIXES: .c .lo .o .obj
|
306
|
+
$(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(am__configure_deps)
|
307
|
+
@for dep in $?; do \
|
308
|
+
case '$(am__configure_deps)' in \
|
309
|
+
*$$dep*) \
|
310
|
+
( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \
|
311
|
+
&& { if test -f $@; then exit 0; else break; fi; }; \
|
312
|
+
exit 1;; \
|
313
|
+
esac; \
|
314
|
+
done; \
|
315
|
+
echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign src/Makefile'; \
|
316
|
+
$(am__cd) $(top_srcdir) && \
|
317
|
+
$(AUTOMAKE) --foreign src/Makefile
|
318
|
+
Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
|
319
|
+
@case '$?' in \
|
320
|
+
*config.status*) \
|
321
|
+
cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \
|
322
|
+
*) \
|
323
|
+
echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \
|
324
|
+
cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \
|
325
|
+
esac;
|
326
|
+
|
327
|
+
$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES)
|
328
|
+
cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
|
329
|
+
|
330
|
+
$(top_srcdir)/configure: $(am__configure_deps)
|
331
|
+
cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
|
332
|
+
$(ACLOCAL_M4): $(am__aclocal_m4_deps)
|
333
|
+
cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
|
334
|
+
$(am__aclocal_m4_deps):
|
335
|
+
|
336
|
+
clean-noinstLTLIBRARIES:
|
337
|
+
-test -z "$(noinst_LTLIBRARIES)" || rm -f $(noinst_LTLIBRARIES)
|
338
|
+
@list='$(noinst_LTLIBRARIES)'; \
|
339
|
+
locs=`for p in $$list; do echo $$p; done | \
|
340
|
+
sed 's|^[^/]*$$|.|; s|/[^/]*$$||; s|$$|/so_locations|' | \
|
341
|
+
sort -u`; \
|
342
|
+
test -z "$$locs" || { \
|
343
|
+
echo rm -f $${locs}; \
|
344
|
+
rm -f $${locs}; \
|
345
|
+
}
|
346
|
+
|
347
|
+
libyaml.la: $(libyaml_la_OBJECTS) $(libyaml_la_DEPENDENCIES) $(EXTRA_libyaml_la_DEPENDENCIES)
|
348
|
+
$(AM_V_CCLD)$(libyaml_la_LINK) $(libyaml_la_OBJECTS) $(libyaml_la_LIBADD) $(LIBS)
|
349
|
+
|
350
|
+
mostlyclean-compile:
|
351
|
+
-rm -f *.$(OBJEXT)
|
352
|
+
|
353
|
+
distclean-compile:
|
354
|
+
-rm -f *.tab.c
|
355
|
+
|
356
|
+
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/api.Plo@am__quote@
|
357
|
+
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/dumper.Plo@am__quote@
|
358
|
+
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/emitter.Plo@am__quote@
|
359
|
+
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/loader.Plo@am__quote@
|
360
|
+
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/parser.Plo@am__quote@
|
361
|
+
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/reader.Plo@am__quote@
|
362
|
+
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/scanner.Plo@am__quote@
|
363
|
+
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/writer.Plo@am__quote@
|
364
|
+
|
365
|
+
.c.o:
|
366
|
+
@am__fastdepCC_TRUE@ $(AM_V_CC)$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $<
|
367
|
+
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po
|
368
|
+
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='$<' object='$@' libtool=no @AMDEPBACKSLASH@
|
369
|
+
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
|
370
|
+
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(COMPILE) -c -o $@ $<
|
371
|
+
|
372
|
+
.c.obj:
|
373
|
+
@am__fastdepCC_TRUE@ $(AM_V_CC)$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ `$(CYGPATH_W) '$<'`
|
374
|
+
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po
|
375
|
+
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='$<' object='$@' libtool=no @AMDEPBACKSLASH@
|
376
|
+
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
|
377
|
+
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(COMPILE) -c -o $@ `$(CYGPATH_W) '$<'`
|
378
|
+
|
379
|
+
.c.lo:
|
380
|
+
@am__fastdepCC_TRUE@ $(AM_V_CC)$(LTCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $<
|
381
|
+
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Plo
|
382
|
+
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='$<' object='$@' libtool=yes @AMDEPBACKSLASH@
|
383
|
+
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
|
384
|
+
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LTCOMPILE) -c -o $@ $<
|
385
|
+
|
386
|
+
mostlyclean-libtool:
|
387
|
+
-rm -f *.lo
|
388
|
+
|
389
|
+
clean-libtool:
|
390
|
+
-rm -rf .libs _libs
|
391
|
+
|
392
|
+
ID: $(am__tagged_files)
|
393
|
+
$(am__define_uniq_tagged_files); mkid -fID $$unique
|
394
|
+
tags: tags-am
|
395
|
+
TAGS: tags
|
396
|
+
|
397
|
+
tags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files)
|
398
|
+
set x; \
|
399
|
+
here=`pwd`; \
|
400
|
+
$(am__define_uniq_tagged_files); \
|
401
|
+
shift; \
|
402
|
+
if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \
|
403
|
+
test -n "$$unique" || unique=$$empty_fix; \
|
404
|
+
if test $$# -gt 0; then \
|
405
|
+
$(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \
|
406
|
+
"$$@" $$unique; \
|
407
|
+
else \
|
408
|
+
$(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \
|
409
|
+
$$unique; \
|
410
|
+
fi; \
|
411
|
+
fi
|
412
|
+
ctags: ctags-am
|
413
|
+
|
414
|
+
CTAGS: ctags
|
415
|
+
ctags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files)
|
416
|
+
$(am__define_uniq_tagged_files); \
|
417
|
+
test -z "$(CTAGS_ARGS)$$unique" \
|
418
|
+
|| $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \
|
419
|
+
$$unique
|
420
|
+
|
421
|
+
GTAGS:
|
422
|
+
here=`$(am__cd) $(top_builddir) && pwd` \
|
423
|
+
&& $(am__cd) $(top_srcdir) \
|
424
|
+
&& gtags -i $(GTAGS_ARGS) "$$here"
|
425
|
+
cscopelist: cscopelist-am
|
426
|
+
|
427
|
+
cscopelist-am: $(am__tagged_files)
|
428
|
+
list='$(am__tagged_files)'; \
|
429
|
+
case "$(srcdir)" in \
|
430
|
+
[\\/]* | ?:[\\/]*) sdir="$(srcdir)" ;; \
|
431
|
+
*) sdir=$(subdir)/$(srcdir) ;; \
|
432
|
+
esac; \
|
433
|
+
for i in $$list; do \
|
434
|
+
if test -f "$$i"; then \
|
435
|
+
echo "$(subdir)/$$i"; \
|
436
|
+
else \
|
437
|
+
echo "$$sdir/$$i"; \
|
438
|
+
fi; \
|
439
|
+
done >> $(top_builddir)/cscope.files
|
440
|
+
|
441
|
+
distclean-tags:
|
442
|
+
-rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags
|
443
|
+
|
444
|
+
distdir: $(DISTFILES)
|
445
|
+
@srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
|
446
|
+
topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
|
447
|
+
list='$(DISTFILES)'; \
|
448
|
+
dist_files=`for file in $$list; do echo $$file; done | \
|
449
|
+
sed -e "s|^$$srcdirstrip/||;t" \
|
450
|
+
-e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \
|
451
|
+
case $$dist_files in \
|
452
|
+
*/*) $(MKDIR_P) `echo "$$dist_files" | \
|
453
|
+
sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \
|
454
|
+
sort -u` ;; \
|
455
|
+
esac; \
|
456
|
+
for file in $$dist_files; do \
|
457
|
+
if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \
|
458
|
+
if test -d $$d/$$file; then \
|
459
|
+
dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \
|
460
|
+
if test -d "$(distdir)/$$file"; then \
|
461
|
+
find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \
|
462
|
+
fi; \
|
463
|
+
if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \
|
464
|
+
cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \
|
465
|
+
find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \
|
466
|
+
fi; \
|
467
|
+
cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \
|
468
|
+
else \
|
469
|
+
test -f "$(distdir)/$$file" \
|
470
|
+
|| cp -p $$d/$$file "$(distdir)/$$file" \
|
471
|
+
|| exit 1; \
|
472
|
+
fi; \
|
473
|
+
done
|
474
|
+
check-am: all-am
|
475
|
+
check: check-am
|
476
|
+
all-am: Makefile $(LTLIBRARIES)
|
477
|
+
installdirs:
|
478
|
+
install: install-am
|
479
|
+
install-exec: install-exec-am
|
480
|
+
install-data: install-data-am
|
481
|
+
uninstall: uninstall-am
|
482
|
+
|
483
|
+
install-am: all-am
|
484
|
+
@$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am
|
485
|
+
|
486
|
+
installcheck: installcheck-am
|
487
|
+
install-strip:
|
488
|
+
if test -z '$(STRIP)'; then \
|
489
|
+
$(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \
|
490
|
+
install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \
|
491
|
+
install; \
|
492
|
+
else \
|
493
|
+
$(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \
|
494
|
+
install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \
|
495
|
+
"INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'" install; \
|
496
|
+
fi
|
497
|
+
mostlyclean-generic:
|
498
|
+
|
499
|
+
clean-generic:
|
500
|
+
|
501
|
+
distclean-generic:
|
502
|
+
-test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES)
|
503
|
+
-test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES)
|
504
|
+
|
505
|
+
maintainer-clean-generic:
|
506
|
+
@echo "This command is intended for maintainers to use"
|
507
|
+
@echo "it deletes files that may require special tools to rebuild."
|
508
|
+
clean: clean-am
|
509
|
+
|
510
|
+
clean-am: clean-generic clean-libtool clean-noinstLTLIBRARIES \
|
511
|
+
mostlyclean-am
|
512
|
+
|
513
|
+
distclean: distclean-am
|
514
|
+
-rm -rf ./$(DEPDIR)
|
515
|
+
-rm -f Makefile
|
516
|
+
distclean-am: clean-am distclean-compile distclean-generic \
|
517
|
+
distclean-tags
|
518
|
+
|
519
|
+
dvi: dvi-am
|
520
|
+
|
521
|
+
dvi-am:
|
522
|
+
|
523
|
+
html: html-am
|
524
|
+
|
525
|
+
html-am:
|
526
|
+
|
527
|
+
info: info-am
|
528
|
+
|
529
|
+
info-am:
|
530
|
+
|
531
|
+
install-data-am:
|
532
|
+
|
533
|
+
install-dvi: install-dvi-am
|
534
|
+
|
535
|
+
install-dvi-am:
|
536
|
+
|
537
|
+
install-exec-am:
|
538
|
+
|
539
|
+
install-html: install-html-am
|
540
|
+
|
541
|
+
install-html-am:
|
542
|
+
|
543
|
+
install-info: install-info-am
|
544
|
+
|
545
|
+
install-info-am:
|
546
|
+
|
547
|
+
install-man:
|
548
|
+
|
549
|
+
install-pdf: install-pdf-am
|
550
|
+
|
551
|
+
install-pdf-am:
|
552
|
+
|
553
|
+
install-ps: install-ps-am
|
554
|
+
|
555
|
+
install-ps-am:
|
556
|
+
|
557
|
+
installcheck-am:
|
558
|
+
|
559
|
+
maintainer-clean: maintainer-clean-am
|
560
|
+
-rm -rf ./$(DEPDIR)
|
561
|
+
-rm -f Makefile
|
562
|
+
maintainer-clean-am: distclean-am maintainer-clean-generic
|
563
|
+
|
564
|
+
mostlyclean: mostlyclean-am
|
565
|
+
|
566
|
+
mostlyclean-am: mostlyclean-compile mostlyclean-generic \
|
567
|
+
mostlyclean-libtool
|
568
|
+
|
569
|
+
pdf: pdf-am
|
570
|
+
|
571
|
+
pdf-am:
|
572
|
+
|
573
|
+
ps: ps-am
|
574
|
+
|
575
|
+
ps-am:
|
576
|
+
|
577
|
+
uninstall-am:
|
578
|
+
|
579
|
+
.MAKE: install-am install-strip
|
580
|
+
|
581
|
+
.PHONY: CTAGS GTAGS TAGS all all-am check check-am clean clean-generic \
|
582
|
+
clean-libtool clean-noinstLTLIBRARIES cscopelist-am ctags \
|
583
|
+
ctags-am distclean distclean-compile distclean-generic \
|
584
|
+
distclean-libtool distclean-tags distdir dvi dvi-am html \
|
585
|
+
html-am info info-am install install-am install-data \
|
586
|
+
install-data-am install-dvi install-dvi-am install-exec \
|
587
|
+
install-exec-am install-html install-html-am install-info \
|
588
|
+
install-info-am install-man install-pdf install-pdf-am \
|
589
|
+
install-ps install-ps-am install-strip installcheck \
|
590
|
+
installcheck-am installdirs maintainer-clean \
|
591
|
+
maintainer-clean-generic mostlyclean mostlyclean-compile \
|
592
|
+
mostlyclean-generic mostlyclean-libtool pdf pdf-am ps ps-am \
|
593
|
+
tags tags-am uninstall uninstall-am
|
594
|
+
|
595
|
+
.PRECIOUS: Makefile
|
596
|
+
|
597
|
+
|
598
|
+
# Tell versions [3.59,3.63) of GNU make to not export all variables.
|
599
|
+
# Otherwise a system limit (for SysV at least) may be exceeded.
|
600
|
+
.NOEXPORT:
|