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.
Files changed (121) hide show
  1. checksums.yaml +4 -4
  2. data/Rakefile +3 -3
  3. data/ext/nutcracker/ChangeLog +33 -8
  4. data/ext/nutcracker/Makefile.in +34 -21
  5. data/ext/nutcracker/README.md +61 -26
  6. data/ext/nutcracker/aclocal.m4 +34 -31
  7. data/ext/nutcracker/autom4te.cache/output.0 +1875 -1330
  8. data/ext/nutcracker/autom4te.cache/output.1 +1875 -1330
  9. data/ext/nutcracker/autom4te.cache/requests +232 -451
  10. data/ext/nutcracker/autom4te.cache/traces.0 +2256 -2129
  11. data/ext/nutcracker/autom4te.cache/traces.1 +73 -59
  12. data/ext/nutcracker/config.h.in +1 -2
  13. data/ext/nutcracker/config.h.in~ +333 -0
  14. data/ext/nutcracker/config/compile +1 -1
  15. data/ext/nutcracker/config/config.guess +13 -160
  16. data/ext/nutcracker/config/config.sub +25 -11
  17. data/ext/nutcracker/config/depcomp +1 -1
  18. data/ext/nutcracker/config/install-sh +170 -196
  19. data/ext/nutcracker/config/ltmain.sh +3509 -2018
  20. data/ext/nutcracker/config/missing +1 -1
  21. data/ext/nutcracker/configure +1874 -1329
  22. data/ext/nutcracker/configure.ac +3 -2
  23. data/ext/nutcracker/contrib/Makefile.in +18 -5
  24. data/ext/nutcracker/contrib/yaml-0.1.4/LICENSE +19 -0
  25. data/ext/nutcracker/contrib/yaml-0.1.4/Makefile.am +20 -0
  26. data/ext/nutcracker/contrib/yaml-0.1.4/Makefile.in +832 -0
  27. data/ext/nutcracker/contrib/yaml-0.1.4/README +27 -0
  28. data/ext/nutcracker/contrib/yaml-0.1.4/aclocal.m4 +1157 -0
  29. data/ext/nutcracker/contrib/yaml-0.1.4/autom4te.cache/output.0 +13342 -0
  30. data/ext/nutcracker/contrib/yaml-0.1.4/autom4te.cache/output.1 +14611 -0
  31. data/ext/nutcracker/{autom4te.cache → contrib/yaml-0.1.4/autom4te.cache}/output.2 +3465 -8761
  32. data/ext/nutcracker/contrib/yaml-0.1.4/autom4te.cache/requests +516 -0
  33. data/ext/nutcracker/{autom4te.cache/traces.2 → contrib/yaml-0.1.4/autom4te.cache/traces.0} +662 -698
  34. data/ext/nutcracker/contrib/yaml-0.1.4/autom4te.cache/traces.1 +577 -0
  35. data/ext/nutcracker/contrib/yaml-0.1.4/autom4te.cache/traces.2 +2721 -0
  36. data/ext/nutcracker/contrib/yaml-0.1.4/config.h.in +79 -0
  37. data/ext/nutcracker/contrib/yaml-0.1.4/config.h.in~ +80 -0
  38. data/ext/nutcracker/contrib/yaml-0.1.4/config/compile +347 -0
  39. data/ext/nutcracker/contrib/yaml-0.1.4/config/config.guess +1421 -0
  40. data/ext/nutcracker/contrib/yaml-0.1.4/config/config.sub +1807 -0
  41. data/ext/nutcracker/contrib/yaml-0.1.4/config/depcomp +791 -0
  42. data/ext/nutcracker/contrib/yaml-0.1.4/config/install-sh +501 -0
  43. data/ext/nutcracker/contrib/yaml-0.1.4/config/ltmain.sh +11147 -0
  44. data/ext/nutcracker/contrib/yaml-0.1.4/config/missing +215 -0
  45. data/ext/nutcracker/contrib/yaml-0.1.4/config/test-driver +148 -0
  46. data/ext/nutcracker/contrib/yaml-0.1.4/configure +14611 -0
  47. data/ext/nutcracker/contrib/yaml-0.1.4/configure.ac +75 -0
  48. data/ext/nutcracker/contrib/yaml-0.1.4/doc/doxygen.cfg +222 -0
  49. data/ext/nutcracker/contrib/yaml-0.1.4/include/yaml.h +1971 -0
  50. data/ext/nutcracker/contrib/yaml-0.1.4/m4/libtool.m4 +8369 -0
  51. data/ext/nutcracker/contrib/yaml-0.1.4/m4/ltoptions.m4 +437 -0
  52. data/ext/nutcracker/contrib/yaml-0.1.4/m4/ltsugar.m4 +124 -0
  53. data/ext/nutcracker/contrib/yaml-0.1.4/m4/ltversion.m4 +23 -0
  54. data/ext/nutcracker/contrib/yaml-0.1.4/m4/lt~obsolete.m4 +99 -0
  55. data/ext/nutcracker/contrib/yaml-0.1.4/src/Makefile.am +4 -0
  56. data/ext/nutcracker/contrib/yaml-0.1.4/src/Makefile.in +600 -0
  57. data/ext/nutcracker/contrib/yaml-0.1.4/src/api.c +1392 -0
  58. data/ext/nutcracker/contrib/yaml-0.1.4/src/dumper.c +394 -0
  59. data/ext/nutcracker/contrib/yaml-0.1.4/src/emitter.c +2329 -0
  60. data/ext/nutcracker/contrib/yaml-0.1.4/src/loader.c +432 -0
  61. data/ext/nutcracker/contrib/yaml-0.1.4/src/parser.c +1374 -0
  62. data/ext/nutcracker/contrib/yaml-0.1.4/src/reader.c +465 -0
  63. data/ext/nutcracker/contrib/yaml-0.1.4/src/scanner.c +3570 -0
  64. data/ext/nutcracker/contrib/yaml-0.1.4/src/writer.c +141 -0
  65. data/ext/nutcracker/contrib/yaml-0.1.4/src/yaml_private.h +640 -0
  66. data/ext/nutcracker/contrib/yaml-0.1.4/tests/Makefile.am +8 -0
  67. data/ext/nutcracker/contrib/yaml-0.1.4/tests/Makefile.in +1083 -0
  68. data/ext/nutcracker/contrib/yaml-0.1.4/tests/example-deconstructor-alt.c +800 -0
  69. data/ext/nutcracker/contrib/yaml-0.1.4/tests/example-deconstructor.c +1130 -0
  70. data/ext/nutcracker/contrib/yaml-0.1.4/tests/example-reformatter-alt.c +217 -0
  71. data/ext/nutcracker/contrib/yaml-0.1.4/tests/example-reformatter.c +202 -0
  72. data/ext/nutcracker/contrib/yaml-0.1.4/tests/run-dumper.c +311 -0
  73. data/ext/nutcracker/contrib/yaml-0.1.4/tests/run-emitter.c +327 -0
  74. data/ext/nutcracker/contrib/yaml-0.1.4/tests/run-loader.c +63 -0
  75. data/ext/nutcracker/contrib/yaml-0.1.4/tests/run-parser.c +63 -0
  76. data/ext/nutcracker/contrib/yaml-0.1.4/tests/run-scanner.c +63 -0
  77. data/ext/nutcracker/contrib/yaml-0.1.4/tests/test-reader.c +354 -0
  78. data/ext/nutcracker/contrib/yaml-0.1.4/tests/test-version.c +29 -0
  79. data/ext/nutcracker/m4/libtool.m4 +1474 -1087
  80. data/ext/nutcracker/m4/ltoptions.m4 +90 -37
  81. data/ext/nutcracker/m4/ltsugar.m4 +4 -3
  82. data/ext/nutcracker/m4/ltversion.m4 +6 -6
  83. data/ext/nutcracker/m4/lt~obsolete.m4 +4 -3
  84. data/ext/nutcracker/man/nutcracker.8 +1 -1
  85. data/ext/nutcracker/notes/memcache.md +162 -0
  86. data/ext/nutcracker/notes/recommendation.md +10 -5
  87. data/ext/nutcracker/notes/redis.md +23 -9
  88. data/ext/nutcracker/scripts/nutcracker.init +10 -0
  89. data/ext/nutcracker/scripts/nutcracker.init.debian +83 -0
  90. data/ext/nutcracker/scripts/nutcracker.spec +36 -2
  91. data/ext/nutcracker/scripts/redis-check.sh +4 -0
  92. data/ext/nutcracker/src/Makefile.am +6 -1
  93. data/ext/nutcracker/src/Makefile.in +26 -12
  94. data/ext/nutcracker/src/event/Makefile.in +19 -6
  95. data/ext/nutcracker/src/hashkit/Makefile.in +19 -6
  96. data/ext/nutcracker/src/hashkit/nc_jenkins.c +1 -1
  97. data/ext/nutcracker/src/hashkit/nc_ketama.c +3 -3
  98. data/ext/nutcracker/src/nc.c +1 -1
  99. data/ext/nutcracker/src/nc_conf.c +67 -19
  100. data/ext/nutcracker/src/nc_conf.h +9 -4
  101. data/ext/nutcracker/src/nc_connection.c +35 -2
  102. data/ext/nutcracker/src/nc_connection.h +53 -47
  103. data/ext/nutcracker/src/nc_core.c +8 -1
  104. data/ext/nutcracker/src/nc_message.c +23 -7
  105. data/ext/nutcracker/src/nc_message.h +24 -1
  106. data/ext/nutcracker/src/nc_proxy.c +14 -3
  107. data/ext/nutcracker/src/nc_rbtree.c +1 -5
  108. data/ext/nutcracker/src/nc_request.c +58 -10
  109. data/ext/nutcracker/src/nc_response.c +27 -4
  110. data/ext/nutcracker/src/nc_server.c +33 -5
  111. data/ext/nutcracker/src/nc_server.h +10 -9
  112. data/ext/nutcracker/src/nc_string.h +17 -0
  113. data/ext/nutcracker/src/nc_util.c +5 -1
  114. data/ext/nutcracker/src/proto/Makefile.in +19 -6
  115. data/ext/nutcracker/src/proto/nc_memcache.c +76 -12
  116. data/ext/nutcracker/src/proto/nc_proto.h +9 -0
  117. data/ext/nutcracker/src/proto/nc_redis.c +400 -18
  118. data/lib/nutcracker.rb +1 -1
  119. data/lib/nutcracker/version.rb +1 -1
  120. metadata +61 -6
  121. data/ext/nutcracker/notes/memcache.txt +0 -123
@@ -1,7 +1,7 @@
1
1
  # Define the package version numbers and the bug reporting address
2
2
  m4_define([NC_MAJOR], 0)
3
- m4_define([NC_MINOR], 3)
4
- m4_define([NC_PATCH], 0)
3
+ m4_define([NC_MINOR], 4)
4
+ m4_define([NC_PATCH], 1)
5
5
  m4_define([NC_BUGS], [manj@cs.stanford.edu])
6
6
 
7
7
  # Initialize autoconf
@@ -158,6 +158,7 @@ AS_IF([test "x$ac_cv_epoll_works" = "xno" &&
158
158
  AM_CONDITIONAL([OS_LINUX], [test "x$ac_cv_epoll_works" = "xyes"])
159
159
  AM_CONDITIONAL([OS_BSD], [test "x$ac_cv_kqueue_works" = "xyes"])
160
160
  AM_CONDITIONAL([OS_SOLARIS], [test "x$ac_cv_evports_works" = "xyes"])
161
+ AM_CONDITIONAL([OS_FREEBSD], [test "$(uname -v | cut -c 1-10)" == "FreeBSD 10"])
161
162
 
162
163
  # Package options
163
164
  AC_MSG_CHECKING([whether to enable debug logs and asserts])
@@ -1,7 +1,7 @@
1
- # Makefile.in generated by automake 1.14.1 from Makefile.am.
1
+ # Makefile.in generated by automake 1.15 from Makefile.am.
2
2
  # @configure_input@
3
3
 
4
- # Copyright (C) 1994-2013 Free Software Foundation, Inc.
4
+ # Copyright (C) 1994-2014 Free Software Foundation, Inc.
5
5
 
6
6
  # This Makefile.in is free software; the Free Software Foundation
7
7
  # gives unlimited permission to copy and/or distribute it,
@@ -14,7 +14,17 @@
14
14
 
15
15
  @SET_MAKE@
16
16
  VPATH = @srcdir@
17
- am__is_gnu_make = test -n '$(MAKEFILE_LIST)' && test -n '$(MAKELEVEL)'
17
+ am__is_gnu_make = { \
18
+ if test -z '$(MAKELEVEL)'; then \
19
+ false; \
20
+ elif test -n '$(MAKE_HOST)'; then \
21
+ true; \
22
+ elif test -n '$(MAKE_VERSION)' && test -n '$(CURDIR)'; then \
23
+ true; \
24
+ else \
25
+ false; \
26
+ fi; \
27
+ }
18
28
  am__make_running_with_option = \
19
29
  case $${target_option-} in \
20
30
  ?) ;; \
@@ -78,7 +88,6 @@ POST_UNINSTALL = :
78
88
  build_triplet = @build@
79
89
  host_triplet = @host@
80
90
  subdir = contrib
81
- DIST_COMMON = $(srcdir)/Makefile.in $(srcdir)/Makefile.am
82
91
  ACLOCAL_M4 = $(top_srcdir)/aclocal.m4
83
92
  am__aclocal_m4_deps = $(top_srcdir)/m4/libtool.m4 \
84
93
  $(top_srcdir)/m4/ltoptions.m4 $(top_srcdir)/m4/ltsugar.m4 \
@@ -86,6 +95,7 @@ am__aclocal_m4_deps = $(top_srcdir)/m4/libtool.m4 \
86
95
  $(top_srcdir)/configure.ac
87
96
  am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \
88
97
  $(ACLOCAL_M4)
98
+ DIST_COMMON = $(srcdir)/Makefile.am $(am__DIST_COMMON)
89
99
  mkinstalldirs = $(install_sh) -d
90
100
  CONFIG_HEADER = $(top_builddir)/config.h
91
101
  CONFIG_CLEAN_FILES =
@@ -145,6 +155,7 @@ am__define_uniq_tagged_files = \
145
155
  ETAGS = etags
146
156
  CTAGS = ctags
147
157
  DIST_SUBDIRS = $(SUBDIRS)
158
+ am__DIST_COMMON = $(srcdir)/Makefile.in
148
159
  DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST)
149
160
  am__relativize = \
150
161
  dir0=`pwd`; \
@@ -214,6 +225,7 @@ LIBTOOL = @LIBTOOL@
214
225
  LIPO = @LIPO@
215
226
  LN_S = @LN_S@
216
227
  LTLIBOBJS = @LTLIBOBJS@
228
+ LT_SYS_LIBRARY_PATH = @LT_SYS_LIBRARY_PATH@
217
229
  MAKEINFO = @MAKEINFO@
218
230
  MANIFEST_TOOL = @MANIFEST_TOOL@
219
231
  MKDIR_P = @MKDIR_P@
@@ -308,7 +320,6 @@ $(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(am__configure_deps)
308
320
  echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign contrib/Makefile'; \
309
321
  $(am__cd) $(top_srcdir) && \
310
322
  $(AUTOMAKE) --foreign contrib/Makefile
311
- .PRECIOUS: Makefile
312
323
  Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
313
324
  @case '$?' in \
314
325
  *config.status*) \
@@ -603,6 +614,8 @@ uninstall-am:
603
614
  mostlyclean mostlyclean-generic mostlyclean-libtool pdf pdf-am \
604
615
  ps ps-am tags tags-am uninstall uninstall-am
605
616
 
617
+ .PRECIOUS: Makefile
618
+
606
619
 
607
620
  # Tell versions [3.59,3.63) of GNU make to not export all variables.
608
621
  # Otherwise a system limit (for SysV at least) may be exceeded.
@@ -0,0 +1,19 @@
1
+ Copyright (c) 2006 Kirill Simonov
2
+
3
+ Permission is hereby granted, free of charge, to any person obtaining a copy of
4
+ this software and associated documentation files (the "Software"), to deal in
5
+ the Software without restriction, including without limitation the rights to
6
+ use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies
7
+ of the Software, and to permit persons to whom the Software is furnished to do
8
+ so, subject to the following conditions:
9
+
10
+ The above copyright notice and this permission notice shall be included in all
11
+ copies or substantial portions of the Software.
12
+
13
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
14
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
15
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
16
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
17
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
18
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
19
+ SOFTWARE.
@@ -0,0 +1,20 @@
1
+ ## Run `./bootstrap` to generate the "Makefile.in" files in this directory and
2
+ ## the "$SUBDIRS" subdirectories.
3
+
4
+ ACLOCAL_AMFLAGS = -I m4
5
+
6
+ SUBDIRS = src . tests
7
+
8
+ EXTRA_DIST = README LICENSE doc/doxygen.cfg include/yaml.h
9
+
10
+ #pkgconfigdir = $(libdir)/pkgconfig
11
+ #pkgconfig_DATA = yaml-0.1.pc
12
+
13
+ maintainer-clean-local:
14
+ -rm -f aclocal.m4 config.h.in configure config/*
15
+ -find ${builddir} -name Makefile.in -exec rm -f '{}' ';'
16
+
17
+ .PHONY: bootstrap
18
+ bootstrap: maintainer-clean
19
+ ./bootstrap
20
+
@@ -0,0 +1,832 @@
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
+ VPATH = @srcdir@
17
+ am__is_gnu_make = { \
18
+ if test -z '$(MAKELEVEL)'; then \
19
+ false; \
20
+ elif test -n '$(MAKE_HOST)'; then \
21
+ true; \
22
+ elif test -n '$(MAKE_VERSION)' && test -n '$(CURDIR)'; then \
23
+ true; \
24
+ else \
25
+ false; \
26
+ fi; \
27
+ }
28
+ am__make_running_with_option = \
29
+ case $${target_option-} in \
30
+ ?) ;; \
31
+ *) echo "am__make_running_with_option: internal error: invalid" \
32
+ "target option '$${target_option-}' specified" >&2; \
33
+ exit 1;; \
34
+ esac; \
35
+ has_opt=no; \
36
+ sane_makeflags=$$MAKEFLAGS; \
37
+ if $(am__is_gnu_make); then \
38
+ sane_makeflags=$$MFLAGS; \
39
+ else \
40
+ case $$MAKEFLAGS in \
41
+ *\\[\ \ ]*) \
42
+ bs=\\; \
43
+ sane_makeflags=`printf '%s\n' "$$MAKEFLAGS" \
44
+ | sed "s/$$bs$$bs[$$bs $$bs ]*//g"`;; \
45
+ esac; \
46
+ fi; \
47
+ skip_next=no; \
48
+ strip_trailopt () \
49
+ { \
50
+ flg=`printf '%s\n' "$$flg" | sed "s/$$1.*$$//"`; \
51
+ }; \
52
+ for flg in $$sane_makeflags; do \
53
+ test $$skip_next = yes && { skip_next=no; continue; }; \
54
+ case $$flg in \
55
+ *=*|--*) continue;; \
56
+ -*I) strip_trailopt 'I'; skip_next=yes;; \
57
+ -*I?*) strip_trailopt 'I';; \
58
+ -*O) strip_trailopt 'O'; skip_next=yes;; \
59
+ -*O?*) strip_trailopt 'O';; \
60
+ -*l) strip_trailopt 'l'; skip_next=yes;; \
61
+ -*l?*) strip_trailopt 'l';; \
62
+ -[dEDm]) skip_next=yes;; \
63
+ -[JT]) skip_next=yes;; \
64
+ esac; \
65
+ case $$flg in \
66
+ *$$target_option*) has_opt=yes; break;; \
67
+ esac; \
68
+ done; \
69
+ test $$has_opt = yes
70
+ am__make_dryrun = (target_option=n; $(am__make_running_with_option))
71
+ am__make_keepgoing = (target_option=k; $(am__make_running_with_option))
72
+ pkgdatadir = $(datadir)/@PACKAGE@
73
+ pkgincludedir = $(includedir)/@PACKAGE@
74
+ pkglibdir = $(libdir)/@PACKAGE@
75
+ pkglibexecdir = $(libexecdir)/@PACKAGE@
76
+ am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd
77
+ install_sh_DATA = $(install_sh) -c -m 644
78
+ install_sh_PROGRAM = $(install_sh) -c
79
+ install_sh_SCRIPT = $(install_sh) -c
80
+ INSTALL_HEADER = $(INSTALL_DATA)
81
+ transform = $(program_transform_name)
82
+ NORMAL_INSTALL = :
83
+ PRE_INSTALL = :
84
+ POST_INSTALL = :
85
+ NORMAL_UNINSTALL = :
86
+ PRE_UNINSTALL = :
87
+ POST_UNINSTALL = :
88
+ build_triplet = @build@
89
+ host_triplet = @host@
90
+ subdir = .
91
+ ACLOCAL_M4 = $(top_srcdir)/aclocal.m4
92
+ am__aclocal_m4_deps = $(top_srcdir)/m4/libtool.m4 \
93
+ $(top_srcdir)/m4/ltoptions.m4 $(top_srcdir)/m4/ltsugar.m4 \
94
+ $(top_srcdir)/m4/ltversion.m4 $(top_srcdir)/m4/lt~obsolete.m4 \
95
+ $(top_srcdir)/configure.ac
96
+ am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \
97
+ $(ACLOCAL_M4)
98
+ DIST_COMMON = $(srcdir)/Makefile.am $(top_srcdir)/configure \
99
+ $(am__configure_deps) $(am__DIST_COMMON)
100
+ am__CONFIG_DISTCLEAN_FILES = config.status config.cache config.log \
101
+ configure.lineno config.status.lineno
102
+ mkinstalldirs = $(install_sh) -d
103
+ CONFIG_HEADER = config.h
104
+ CONFIG_CLEAN_FILES =
105
+ CONFIG_CLEAN_VPATH_FILES =
106
+ AM_V_P = $(am__v_P_@AM_V@)
107
+ am__v_P_ = $(am__v_P_@AM_DEFAULT_V@)
108
+ am__v_P_0 = false
109
+ am__v_P_1 = :
110
+ AM_V_GEN = $(am__v_GEN_@AM_V@)
111
+ am__v_GEN_ = $(am__v_GEN_@AM_DEFAULT_V@)
112
+ am__v_GEN_0 = @echo " GEN " $@;
113
+ am__v_GEN_1 =
114
+ AM_V_at = $(am__v_at_@AM_V@)
115
+ am__v_at_ = $(am__v_at_@AM_DEFAULT_V@)
116
+ am__v_at_0 = @
117
+ am__v_at_1 =
118
+ SOURCES =
119
+ DIST_SOURCES =
120
+ RECURSIVE_TARGETS = all-recursive check-recursive cscopelist-recursive \
121
+ ctags-recursive dvi-recursive html-recursive info-recursive \
122
+ install-data-recursive install-dvi-recursive \
123
+ install-exec-recursive install-html-recursive \
124
+ install-info-recursive install-pdf-recursive \
125
+ install-ps-recursive install-recursive installcheck-recursive \
126
+ installdirs-recursive pdf-recursive ps-recursive \
127
+ tags-recursive uninstall-recursive
128
+ am__can_run_installinfo = \
129
+ case $$AM_UPDATE_INFO_DIR in \
130
+ n|no|NO) false;; \
131
+ *) (install-info --version) >/dev/null 2>&1;; \
132
+ esac
133
+ RECURSIVE_CLEAN_TARGETS = mostlyclean-recursive clean-recursive \
134
+ distclean-recursive maintainer-clean-recursive
135
+ am__recursive_targets = \
136
+ $(RECURSIVE_TARGETS) \
137
+ $(RECURSIVE_CLEAN_TARGETS) \
138
+ $(am__extra_recursive_targets)
139
+ AM_RECURSIVE_TARGETS = $(am__recursive_targets:-recursive=) TAGS CTAGS \
140
+ cscope distdir dist dist-all distcheck
141
+ am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) \
142
+ $(LISP)config.h.in
143
+ # Read a list of newline-separated strings from the standard input,
144
+ # and print each of them once, without duplicates. Input order is
145
+ # *not* preserved.
146
+ am__uniquify_input = $(AWK) '\
147
+ BEGIN { nonempty = 0; } \
148
+ { items[$$0] = 1; nonempty = 1; } \
149
+ END { if (nonempty) { for (i in items) print i; }; } \
150
+ '
151
+ # Make sure the list of sources is unique. This is necessary because,
152
+ # e.g., the same source file might be shared among _SOURCES variables
153
+ # for different programs/libraries.
154
+ am__define_uniq_tagged_files = \
155
+ list='$(am__tagged_files)'; \
156
+ unique=`for i in $$list; do \
157
+ if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
158
+ done | $(am__uniquify_input)`
159
+ ETAGS = etags
160
+ CTAGS = ctags
161
+ CSCOPE = cscope
162
+ DIST_SUBDIRS = $(SUBDIRS)
163
+ am__DIST_COMMON = $(srcdir)/Makefile.in $(srcdir)/config.h.in \
164
+ $(top_srcdir)/config/compile $(top_srcdir)/config/config.guess \
165
+ $(top_srcdir)/config/config.sub \
166
+ $(top_srcdir)/config/install-sh $(top_srcdir)/config/ltmain.sh \
167
+ $(top_srcdir)/config/missing README config/compile \
168
+ config/config.guess config/config.sub config/install-sh \
169
+ config/ltmain.sh config/missing
170
+ DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST)
171
+ distdir = $(PACKAGE)-$(VERSION)
172
+ top_distdir = $(distdir)
173
+ am__remove_distdir = \
174
+ if test -d "$(distdir)"; then \
175
+ find "$(distdir)" -type d ! -perm -200 -exec chmod u+w {} ';' \
176
+ && rm -rf "$(distdir)" \
177
+ || { sleep 5 && rm -rf "$(distdir)"; }; \
178
+ else :; fi
179
+ am__post_remove_distdir = $(am__remove_distdir)
180
+ am__relativize = \
181
+ dir0=`pwd`; \
182
+ sed_first='s,^\([^/]*\)/.*$$,\1,'; \
183
+ sed_rest='s,^[^/]*/*,,'; \
184
+ sed_last='s,^.*/\([^/]*\)$$,\1,'; \
185
+ sed_butlast='s,/*[^/]*$$,,'; \
186
+ while test -n "$$dir1"; do \
187
+ first=`echo "$$dir1" | sed -e "$$sed_first"`; \
188
+ if test "$$first" != "."; then \
189
+ if test "$$first" = ".."; then \
190
+ dir2=`echo "$$dir0" | sed -e "$$sed_last"`/"$$dir2"; \
191
+ dir0=`echo "$$dir0" | sed -e "$$sed_butlast"`; \
192
+ else \
193
+ first2=`echo "$$dir2" | sed -e "$$sed_first"`; \
194
+ if test "$$first2" = "$$first"; then \
195
+ dir2=`echo "$$dir2" | sed -e "$$sed_rest"`; \
196
+ else \
197
+ dir2="../$$dir2"; \
198
+ fi; \
199
+ dir0="$$dir0"/"$$first"; \
200
+ fi; \
201
+ fi; \
202
+ dir1=`echo "$$dir1" | sed -e "$$sed_rest"`; \
203
+ done; \
204
+ reldir="$$dir2"
205
+ DIST_ARCHIVES = $(distdir).tar.gz
206
+ GZIP_ENV = --best
207
+ DIST_TARGETS = dist-gzip
208
+ distuninstallcheck_listfiles = find . -type f -print
209
+ am__distuninstallcheck_listfiles = $(distuninstallcheck_listfiles) \
210
+ | sed 's|^\./|$(prefix)/|' | grep -v '$(infodir)/dir$$'
211
+ distcleancheck_listfiles = find . -type f -print
212
+ ACLOCAL = @ACLOCAL@
213
+ AMTAR = @AMTAR@
214
+ AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@
215
+ AR = @AR@
216
+ AUTOCONF = @AUTOCONF@
217
+ AUTOHEADER = @AUTOHEADER@
218
+ AUTOMAKE = @AUTOMAKE@
219
+ AWK = @AWK@
220
+ CC = @CC@
221
+ CCDEPMODE = @CCDEPMODE@
222
+ CFLAGS = @CFLAGS@
223
+ CPP = @CPP@
224
+ CPPFLAGS = @CPPFLAGS@
225
+ CYGPATH_W = @CYGPATH_W@
226
+ DEFS = @DEFS@
227
+ DEPDIR = @DEPDIR@
228
+ DLLTOOL = @DLLTOOL@
229
+ DOXYGEN = @DOXYGEN@
230
+ DSYMUTIL = @DSYMUTIL@
231
+ DUMPBIN = @DUMPBIN@
232
+ ECHO_C = @ECHO_C@
233
+ ECHO_N = @ECHO_N@
234
+ ECHO_T = @ECHO_T@
235
+ EGREP = @EGREP@
236
+ EXEEXT = @EXEEXT@
237
+ FGREP = @FGREP@
238
+ GREP = @GREP@
239
+ INSTALL = @INSTALL@
240
+ INSTALL_DATA = @INSTALL_DATA@
241
+ INSTALL_PROGRAM = @INSTALL_PROGRAM@
242
+ INSTALL_SCRIPT = @INSTALL_SCRIPT@
243
+ INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@
244
+ LD = @LD@
245
+ LDFLAGS = @LDFLAGS@
246
+ LIBOBJS = @LIBOBJS@
247
+ LIBS = @LIBS@
248
+ LIBTOOL = @LIBTOOL@
249
+ LIPO = @LIPO@
250
+ LN_S = @LN_S@
251
+ LTLIBOBJS = @LTLIBOBJS@
252
+ LT_SYS_LIBRARY_PATH = @LT_SYS_LIBRARY_PATH@
253
+ MAKEINFO = @MAKEINFO@
254
+ MANIFEST_TOOL = @MANIFEST_TOOL@
255
+ MKDIR_P = @MKDIR_P@
256
+ NM = @NM@
257
+ NMEDIT = @NMEDIT@
258
+ OBJDUMP = @OBJDUMP@
259
+ OBJEXT = @OBJEXT@
260
+ OTOOL = @OTOOL@
261
+ OTOOL64 = @OTOOL64@
262
+ PACKAGE = @PACKAGE@
263
+ PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@
264
+ PACKAGE_NAME = @PACKAGE_NAME@
265
+ PACKAGE_STRING = @PACKAGE_STRING@
266
+ PACKAGE_TARNAME = @PACKAGE_TARNAME@
267
+ PACKAGE_URL = @PACKAGE_URL@
268
+ PACKAGE_VERSION = @PACKAGE_VERSION@
269
+ PATH_SEPARATOR = @PATH_SEPARATOR@
270
+ RANLIB = @RANLIB@
271
+ SED = @SED@
272
+ SET_MAKE = @SET_MAKE@
273
+ SHELL = @SHELL@
274
+ STRIP = @STRIP@
275
+ VERSION = @VERSION@
276
+ YAML_LT_AGE = @YAML_LT_AGE@
277
+ YAML_LT_CURRENT = @YAML_LT_CURRENT@
278
+ YAML_LT_RELEASE = @YAML_LT_RELEASE@
279
+ YAML_LT_REVISION = @YAML_LT_REVISION@
280
+ abs_builddir = @abs_builddir@
281
+ abs_srcdir = @abs_srcdir@
282
+ abs_top_builddir = @abs_top_builddir@
283
+ abs_top_srcdir = @abs_top_srcdir@
284
+ ac_ct_AR = @ac_ct_AR@
285
+ ac_ct_CC = @ac_ct_CC@
286
+ ac_ct_DUMPBIN = @ac_ct_DUMPBIN@
287
+ am__include = @am__include@
288
+ am__leading_dot = @am__leading_dot@
289
+ am__quote = @am__quote@
290
+ am__tar = @am__tar@
291
+ am__untar = @am__untar@
292
+ bindir = @bindir@
293
+ build = @build@
294
+ build_alias = @build_alias@
295
+ build_cpu = @build_cpu@
296
+ build_os = @build_os@
297
+ build_vendor = @build_vendor@
298
+ builddir = @builddir@
299
+ datadir = @datadir@
300
+ datarootdir = @datarootdir@
301
+ docdir = @docdir@
302
+ dvidir = @dvidir@
303
+ exec_prefix = @exec_prefix@
304
+ host = @host@
305
+ host_alias = @host_alias@
306
+ host_cpu = @host_cpu@
307
+ host_os = @host_os@
308
+ host_vendor = @host_vendor@
309
+ htmldir = @htmldir@
310
+ includedir = @includedir@
311
+ infodir = @infodir@
312
+ install_sh = @install_sh@
313
+ libdir = @libdir@
314
+ libexecdir = @libexecdir@
315
+ localedir = @localedir@
316
+ localstatedir = @localstatedir@
317
+ mandir = @mandir@
318
+ mkdir_p = @mkdir_p@
319
+ oldincludedir = @oldincludedir@
320
+ pdfdir = @pdfdir@
321
+ prefix = @prefix@
322
+ program_transform_name = @program_transform_name@
323
+ psdir = @psdir@
324
+ sbindir = @sbindir@
325
+ sharedstatedir = @sharedstatedir@
326
+ srcdir = @srcdir@
327
+ sysconfdir = @sysconfdir@
328
+ target_alias = @target_alias@
329
+ top_build_prefix = @top_build_prefix@
330
+ top_builddir = @top_builddir@
331
+ top_srcdir = @top_srcdir@
332
+ ACLOCAL_AMFLAGS = -I m4
333
+ SUBDIRS = src . tests
334
+ EXTRA_DIST = README LICENSE doc/doxygen.cfg include/yaml.h
335
+ all: config.h
336
+ $(MAKE) $(AM_MAKEFLAGS) all-recursive
337
+
338
+ .SUFFIXES:
339
+ am--refresh: Makefile
340
+ @:
341
+ $(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(am__configure_deps)
342
+ @for dep in $?; do \
343
+ case '$(am__configure_deps)' in \
344
+ *$$dep*) \
345
+ echo ' cd $(srcdir) && $(AUTOMAKE) --foreign'; \
346
+ $(am__cd) $(srcdir) && $(AUTOMAKE) --foreign \
347
+ && exit 0; \
348
+ exit 1;; \
349
+ esac; \
350
+ done; \
351
+ echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign Makefile'; \
352
+ $(am__cd) $(top_srcdir) && \
353
+ $(AUTOMAKE) --foreign Makefile
354
+ Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
355
+ @case '$?' in \
356
+ *config.status*) \
357
+ echo ' $(SHELL) ./config.status'; \
358
+ $(SHELL) ./config.status;; \
359
+ *) \
360
+ echo ' cd $(top_builddir) && $(SHELL) ./config.status $@ $(am__depfiles_maybe)'; \
361
+ cd $(top_builddir) && $(SHELL) ./config.status $@ $(am__depfiles_maybe);; \
362
+ esac;
363
+
364
+ $(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES)
365
+ $(SHELL) ./config.status --recheck
366
+
367
+ $(top_srcdir)/configure: $(am__configure_deps)
368
+ $(am__cd) $(srcdir) && $(AUTOCONF)
369
+ $(ACLOCAL_M4): $(am__aclocal_m4_deps)
370
+ $(am__cd) $(srcdir) && $(ACLOCAL) $(ACLOCAL_AMFLAGS)
371
+ $(am__aclocal_m4_deps):
372
+
373
+ config.h: stamp-h1
374
+ @test -f $@ || rm -f stamp-h1
375
+ @test -f $@ || $(MAKE) $(AM_MAKEFLAGS) stamp-h1
376
+
377
+ stamp-h1: $(srcdir)/config.h.in $(top_builddir)/config.status
378
+ @rm -f stamp-h1
379
+ cd $(top_builddir) && $(SHELL) ./config.status config.h
380
+ $(srcdir)/config.h.in: $(am__configure_deps)
381
+ ($(am__cd) $(top_srcdir) && $(AUTOHEADER))
382
+ rm -f stamp-h1
383
+ touch $@
384
+
385
+ distclean-hdr:
386
+ -rm -f config.h stamp-h1
387
+
388
+ mostlyclean-libtool:
389
+ -rm -f *.lo
390
+
391
+ clean-libtool:
392
+ -rm -rf .libs _libs
393
+
394
+ distclean-libtool:
395
+ -rm -f libtool config.lt
396
+
397
+ # This directory's subdirectories are mostly independent; you can cd
398
+ # into them and run 'make' without going through this Makefile.
399
+ # To change the values of 'make' variables: instead of editing Makefiles,
400
+ # (1) if the variable is set in 'config.status', edit 'config.status'
401
+ # (which will cause the Makefiles to be regenerated when you run 'make');
402
+ # (2) otherwise, pass the desired values on the 'make' command line.
403
+ $(am__recursive_targets):
404
+ @fail=; \
405
+ if $(am__make_keepgoing); then \
406
+ failcom='fail=yes'; \
407
+ else \
408
+ failcom='exit 1'; \
409
+ fi; \
410
+ dot_seen=no; \
411
+ target=`echo $@ | sed s/-recursive//`; \
412
+ case "$@" in \
413
+ distclean-* | maintainer-clean-*) list='$(DIST_SUBDIRS)' ;; \
414
+ *) list='$(SUBDIRS)' ;; \
415
+ esac; \
416
+ for subdir in $$list; do \
417
+ echo "Making $$target in $$subdir"; \
418
+ if test "$$subdir" = "."; then \
419
+ dot_seen=yes; \
420
+ local_target="$$target-am"; \
421
+ else \
422
+ local_target="$$target"; \
423
+ fi; \
424
+ ($(am__cd) $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$local_target) \
425
+ || eval $$failcom; \
426
+ done; \
427
+ if test "$$dot_seen" = "no"; then \
428
+ $(MAKE) $(AM_MAKEFLAGS) "$$target-am" || exit 1; \
429
+ fi; test -z "$$fail"
430
+
431
+ ID: $(am__tagged_files)
432
+ $(am__define_uniq_tagged_files); mkid -fID $$unique
433
+ tags: tags-recursive
434
+ TAGS: tags
435
+
436
+ tags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files)
437
+ set x; \
438
+ here=`pwd`; \
439
+ if ($(ETAGS) --etags-include --version) >/dev/null 2>&1; then \
440
+ include_option=--etags-include; \
441
+ empty_fix=.; \
442
+ else \
443
+ include_option=--include; \
444
+ empty_fix=; \
445
+ fi; \
446
+ list='$(SUBDIRS)'; for subdir in $$list; do \
447
+ if test "$$subdir" = .; then :; else \
448
+ test ! -f $$subdir/TAGS || \
449
+ set "$$@" "$$include_option=$$here/$$subdir/TAGS"; \
450
+ fi; \
451
+ done; \
452
+ $(am__define_uniq_tagged_files); \
453
+ shift; \
454
+ if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \
455
+ test -n "$$unique" || unique=$$empty_fix; \
456
+ if test $$# -gt 0; then \
457
+ $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \
458
+ "$$@" $$unique; \
459
+ else \
460
+ $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \
461
+ $$unique; \
462
+ fi; \
463
+ fi
464
+ ctags: ctags-recursive
465
+
466
+ CTAGS: ctags
467
+ ctags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files)
468
+ $(am__define_uniq_tagged_files); \
469
+ test -z "$(CTAGS_ARGS)$$unique" \
470
+ || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \
471
+ $$unique
472
+
473
+ GTAGS:
474
+ here=`$(am__cd) $(top_builddir) && pwd` \
475
+ && $(am__cd) $(top_srcdir) \
476
+ && gtags -i $(GTAGS_ARGS) "$$here"
477
+ cscope: cscope.files
478
+ test ! -s cscope.files \
479
+ || $(CSCOPE) -b -q $(AM_CSCOPEFLAGS) $(CSCOPEFLAGS) -i cscope.files $(CSCOPE_ARGS)
480
+ clean-cscope:
481
+ -rm -f cscope.files
482
+ cscope.files: clean-cscope cscopelist
483
+ cscopelist: cscopelist-recursive
484
+
485
+ cscopelist-am: $(am__tagged_files)
486
+ list='$(am__tagged_files)'; \
487
+ case "$(srcdir)" in \
488
+ [\\/]* | ?:[\\/]*) sdir="$(srcdir)" ;; \
489
+ *) sdir=$(subdir)/$(srcdir) ;; \
490
+ esac; \
491
+ for i in $$list; do \
492
+ if test -f "$$i"; then \
493
+ echo "$(subdir)/$$i"; \
494
+ else \
495
+ echo "$$sdir/$$i"; \
496
+ fi; \
497
+ done >> $(top_builddir)/cscope.files
498
+
499
+ distclean-tags:
500
+ -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags
501
+ -rm -f cscope.out cscope.in.out cscope.po.out cscope.files
502
+
503
+ distdir: $(DISTFILES)
504
+ $(am__remove_distdir)
505
+ test -d "$(distdir)" || mkdir "$(distdir)"
506
+ @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
507
+ topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
508
+ list='$(DISTFILES)'; \
509
+ dist_files=`for file in $$list; do echo $$file; done | \
510
+ sed -e "s|^$$srcdirstrip/||;t" \
511
+ -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \
512
+ case $$dist_files in \
513
+ */*) $(MKDIR_P) `echo "$$dist_files" | \
514
+ sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \
515
+ sort -u` ;; \
516
+ esac; \
517
+ for file in $$dist_files; do \
518
+ if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \
519
+ if test -d $$d/$$file; then \
520
+ dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \
521
+ if test -d "$(distdir)/$$file"; then \
522
+ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \
523
+ fi; \
524
+ if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \
525
+ cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \
526
+ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \
527
+ fi; \
528
+ cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \
529
+ else \
530
+ test -f "$(distdir)/$$file" \
531
+ || cp -p $$d/$$file "$(distdir)/$$file" \
532
+ || exit 1; \
533
+ fi; \
534
+ done
535
+ @list='$(DIST_SUBDIRS)'; for subdir in $$list; do \
536
+ if test "$$subdir" = .; then :; else \
537
+ $(am__make_dryrun) \
538
+ || test -d "$(distdir)/$$subdir" \
539
+ || $(MKDIR_P) "$(distdir)/$$subdir" \
540
+ || exit 1; \
541
+ dir1=$$subdir; dir2="$(distdir)/$$subdir"; \
542
+ $(am__relativize); \
543
+ new_distdir=$$reldir; \
544
+ dir1=$$subdir; dir2="$(top_distdir)"; \
545
+ $(am__relativize); \
546
+ new_top_distdir=$$reldir; \
547
+ echo " (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) top_distdir="$$new_top_distdir" distdir="$$new_distdir" \\"; \
548
+ echo " am__remove_distdir=: am__skip_length_check=: am__skip_mode_fix=: distdir)"; \
549
+ ($(am__cd) $$subdir && \
550
+ $(MAKE) $(AM_MAKEFLAGS) \
551
+ top_distdir="$$new_top_distdir" \
552
+ distdir="$$new_distdir" \
553
+ am__remove_distdir=: \
554
+ am__skip_length_check=: \
555
+ am__skip_mode_fix=: \
556
+ distdir) \
557
+ || exit 1; \
558
+ fi; \
559
+ done
560
+ -test -n "$(am__skip_mode_fix)" \
561
+ || find "$(distdir)" -type d ! -perm -755 \
562
+ -exec chmod u+rwx,go+rx {} \; -o \
563
+ ! -type d ! -perm -444 -links 1 -exec chmod a+r {} \; -o \
564
+ ! -type d ! -perm -400 -exec chmod a+r {} \; -o \
565
+ ! -type d ! -perm -444 -exec $(install_sh) -c -m a+r {} {} \; \
566
+ || chmod -R a+r "$(distdir)"
567
+ dist-gzip: distdir
568
+ tardir=$(distdir) && $(am__tar) | GZIP=$(GZIP_ENV) gzip -c >$(distdir).tar.gz
569
+ $(am__post_remove_distdir)
570
+
571
+ dist-bzip2: distdir
572
+ tardir=$(distdir) && $(am__tar) | BZIP2=$${BZIP2--9} bzip2 -c >$(distdir).tar.bz2
573
+ $(am__post_remove_distdir)
574
+
575
+ dist-lzip: distdir
576
+ tardir=$(distdir) && $(am__tar) | lzip -c $${LZIP_OPT--9} >$(distdir).tar.lz
577
+ $(am__post_remove_distdir)
578
+
579
+ dist-xz: distdir
580
+ tardir=$(distdir) && $(am__tar) | XZ_OPT=$${XZ_OPT--e} xz -c >$(distdir).tar.xz
581
+ $(am__post_remove_distdir)
582
+
583
+ dist-tarZ: distdir
584
+ @echo WARNING: "Support for distribution archives compressed with" \
585
+ "legacy program 'compress' is deprecated." >&2
586
+ @echo WARNING: "It will be removed altogether in Automake 2.0" >&2
587
+ tardir=$(distdir) && $(am__tar) | compress -c >$(distdir).tar.Z
588
+ $(am__post_remove_distdir)
589
+
590
+ dist-shar: distdir
591
+ @echo WARNING: "Support for shar distribution archives is" \
592
+ "deprecated." >&2
593
+ @echo WARNING: "It will be removed altogether in Automake 2.0" >&2
594
+ shar $(distdir) | GZIP=$(GZIP_ENV) gzip -c >$(distdir).shar.gz
595
+ $(am__post_remove_distdir)
596
+
597
+ dist-zip: distdir
598
+ -rm -f $(distdir).zip
599
+ zip -rq $(distdir).zip $(distdir)
600
+ $(am__post_remove_distdir)
601
+
602
+ dist dist-all:
603
+ $(MAKE) $(AM_MAKEFLAGS) $(DIST_TARGETS) am__post_remove_distdir='@:'
604
+ $(am__post_remove_distdir)
605
+
606
+ # This target untars the dist file and tries a VPATH configuration. Then
607
+ # it guarantees that the distribution is self-contained by making another
608
+ # tarfile.
609
+ distcheck: dist
610
+ case '$(DIST_ARCHIVES)' in \
611
+ *.tar.gz*) \
612
+ GZIP=$(GZIP_ENV) gzip -dc $(distdir).tar.gz | $(am__untar) ;;\
613
+ *.tar.bz2*) \
614
+ bzip2 -dc $(distdir).tar.bz2 | $(am__untar) ;;\
615
+ *.tar.lz*) \
616
+ lzip -dc $(distdir).tar.lz | $(am__untar) ;;\
617
+ *.tar.xz*) \
618
+ xz -dc $(distdir).tar.xz | $(am__untar) ;;\
619
+ *.tar.Z*) \
620
+ uncompress -c $(distdir).tar.Z | $(am__untar) ;;\
621
+ *.shar.gz*) \
622
+ GZIP=$(GZIP_ENV) gzip -dc $(distdir).shar.gz | unshar ;;\
623
+ *.zip*) \
624
+ unzip $(distdir).zip ;;\
625
+ esac
626
+ chmod -R a-w $(distdir)
627
+ chmod u+w $(distdir)
628
+ mkdir $(distdir)/_build $(distdir)/_build/sub $(distdir)/_inst
629
+ chmod a-w $(distdir)
630
+ test -d $(distdir)/_build || exit 0; \
631
+ dc_install_base=`$(am__cd) $(distdir)/_inst && pwd | sed -e 's,^[^:\\/]:[\\/],/,'` \
632
+ && dc_destdir="$${TMPDIR-/tmp}/am-dc-$$$$/" \
633
+ && am__cwd=`pwd` \
634
+ && $(am__cd) $(distdir)/_build/sub \
635
+ && ../../configure \
636
+ $(AM_DISTCHECK_CONFIGURE_FLAGS) \
637
+ $(DISTCHECK_CONFIGURE_FLAGS) \
638
+ --srcdir=../.. --prefix="$$dc_install_base" \
639
+ && $(MAKE) $(AM_MAKEFLAGS) \
640
+ && $(MAKE) $(AM_MAKEFLAGS) dvi \
641
+ && $(MAKE) $(AM_MAKEFLAGS) check \
642
+ && $(MAKE) $(AM_MAKEFLAGS) install \
643
+ && $(MAKE) $(AM_MAKEFLAGS) installcheck \
644
+ && $(MAKE) $(AM_MAKEFLAGS) uninstall \
645
+ && $(MAKE) $(AM_MAKEFLAGS) distuninstallcheck_dir="$$dc_install_base" \
646
+ distuninstallcheck \
647
+ && chmod -R a-w "$$dc_install_base" \
648
+ && ({ \
649
+ (cd ../.. && umask 077 && mkdir "$$dc_destdir") \
650
+ && $(MAKE) $(AM_MAKEFLAGS) DESTDIR="$$dc_destdir" install \
651
+ && $(MAKE) $(AM_MAKEFLAGS) DESTDIR="$$dc_destdir" uninstall \
652
+ && $(MAKE) $(AM_MAKEFLAGS) DESTDIR="$$dc_destdir" \
653
+ distuninstallcheck_dir="$$dc_destdir" distuninstallcheck; \
654
+ } || { rm -rf "$$dc_destdir"; exit 1; }) \
655
+ && rm -rf "$$dc_destdir" \
656
+ && $(MAKE) $(AM_MAKEFLAGS) dist \
657
+ && rm -rf $(DIST_ARCHIVES) \
658
+ && $(MAKE) $(AM_MAKEFLAGS) distcleancheck \
659
+ && cd "$$am__cwd" \
660
+ || exit 1
661
+ $(am__post_remove_distdir)
662
+ @(echo "$(distdir) archives ready for distribution: "; \
663
+ list='$(DIST_ARCHIVES)'; for i in $$list; do echo $$i; done) | \
664
+ sed -e 1h -e 1s/./=/g -e 1p -e 1x -e '$$p' -e '$$x'
665
+ distuninstallcheck:
666
+ @test -n '$(distuninstallcheck_dir)' || { \
667
+ echo 'ERROR: trying to run $@ with an empty' \
668
+ '$$(distuninstallcheck_dir)' >&2; \
669
+ exit 1; \
670
+ }; \
671
+ $(am__cd) '$(distuninstallcheck_dir)' || { \
672
+ echo 'ERROR: cannot chdir into $(distuninstallcheck_dir)' >&2; \
673
+ exit 1; \
674
+ }; \
675
+ test `$(am__distuninstallcheck_listfiles) | wc -l` -eq 0 \
676
+ || { echo "ERROR: files left after uninstall:" ; \
677
+ if test -n "$(DESTDIR)"; then \
678
+ echo " (check DESTDIR support)"; \
679
+ fi ; \
680
+ $(distuninstallcheck_listfiles) ; \
681
+ exit 1; } >&2
682
+ distcleancheck: distclean
683
+ @if test '$(srcdir)' = . ; then \
684
+ echo "ERROR: distcleancheck can only run from a VPATH build" ; \
685
+ exit 1 ; \
686
+ fi
687
+ @test `$(distcleancheck_listfiles) | wc -l` -eq 0 \
688
+ || { echo "ERROR: files left in build directory after distclean:" ; \
689
+ $(distcleancheck_listfiles) ; \
690
+ exit 1; } >&2
691
+ check-am: all-am
692
+ check: check-recursive
693
+ all-am: Makefile config.h
694
+ installdirs: installdirs-recursive
695
+ installdirs-am:
696
+ install: install-recursive
697
+ install-exec: install-exec-recursive
698
+ install-data: install-data-recursive
699
+ uninstall: uninstall-recursive
700
+
701
+ install-am: all-am
702
+ @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am
703
+
704
+ installcheck: installcheck-recursive
705
+ install-strip:
706
+ if test -z '$(STRIP)'; then \
707
+ $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \
708
+ install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \
709
+ install; \
710
+ else \
711
+ $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \
712
+ install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \
713
+ "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'" install; \
714
+ fi
715
+ mostlyclean-generic:
716
+
717
+ clean-generic:
718
+
719
+ distclean-generic:
720
+ -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES)
721
+ -test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES)
722
+
723
+ maintainer-clean-generic:
724
+ @echo "This command is intended for maintainers to use"
725
+ @echo "it deletes files that may require special tools to rebuild."
726
+ clean: clean-recursive
727
+
728
+ clean-am: clean-generic clean-libtool mostlyclean-am
729
+
730
+ distclean: distclean-recursive
731
+ -rm -f $(am__CONFIG_DISTCLEAN_FILES)
732
+ -rm -f Makefile
733
+ distclean-am: clean-am distclean-generic distclean-hdr \
734
+ distclean-libtool distclean-tags
735
+
736
+ dvi: dvi-recursive
737
+
738
+ dvi-am:
739
+
740
+ html: html-recursive
741
+
742
+ html-am:
743
+
744
+ info: info-recursive
745
+
746
+ info-am:
747
+
748
+ install-data-am:
749
+
750
+ install-dvi: install-dvi-recursive
751
+
752
+ install-dvi-am:
753
+
754
+ install-exec-am:
755
+
756
+ install-html: install-html-recursive
757
+
758
+ install-html-am:
759
+
760
+ install-info: install-info-recursive
761
+
762
+ install-info-am:
763
+
764
+ install-man:
765
+
766
+ install-pdf: install-pdf-recursive
767
+
768
+ install-pdf-am:
769
+
770
+ install-ps: install-ps-recursive
771
+
772
+ install-ps-am:
773
+
774
+ installcheck-am:
775
+
776
+ maintainer-clean: maintainer-clean-recursive
777
+ -rm -f $(am__CONFIG_DISTCLEAN_FILES)
778
+ -rm -rf $(top_srcdir)/autom4te.cache
779
+ -rm -f Makefile
780
+ maintainer-clean-am: distclean-am maintainer-clean-generic \
781
+ maintainer-clean-local
782
+
783
+ mostlyclean: mostlyclean-recursive
784
+
785
+ mostlyclean-am: mostlyclean-generic mostlyclean-libtool
786
+
787
+ pdf: pdf-recursive
788
+
789
+ pdf-am:
790
+
791
+ ps: ps-recursive
792
+
793
+ ps-am:
794
+
795
+ uninstall-am:
796
+
797
+ .MAKE: $(am__recursive_targets) all install-am install-strip
798
+
799
+ .PHONY: $(am__recursive_targets) CTAGS GTAGS TAGS all all-am \
800
+ am--refresh check check-am clean clean-cscope clean-generic \
801
+ clean-libtool cscope cscopelist-am ctags ctags-am dist \
802
+ dist-all dist-bzip2 dist-gzip dist-lzip dist-shar dist-tarZ \
803
+ dist-xz dist-zip distcheck distclean distclean-generic \
804
+ distclean-hdr distclean-libtool distclean-tags distcleancheck \
805
+ distdir distuninstallcheck dvi dvi-am html html-am info \
806
+ info-am install install-am install-data install-data-am \
807
+ install-dvi install-dvi-am install-exec install-exec-am \
808
+ install-html install-html-am install-info install-info-am \
809
+ install-man install-pdf install-pdf-am install-ps \
810
+ install-ps-am install-strip installcheck installcheck-am \
811
+ installdirs installdirs-am maintainer-clean \
812
+ maintainer-clean-generic maintainer-clean-local mostlyclean \
813
+ mostlyclean-generic mostlyclean-libtool pdf pdf-am ps ps-am \
814
+ tags tags-am uninstall uninstall-am
815
+
816
+ .PRECIOUS: Makefile
817
+
818
+
819
+ #pkgconfigdir = $(libdir)/pkgconfig
820
+ #pkgconfig_DATA = yaml-0.1.pc
821
+
822
+ maintainer-clean-local:
823
+ -rm -f aclocal.m4 config.h.in configure config/*
824
+ -find ${builddir} -name Makefile.in -exec rm -f '{}' ';'
825
+
826
+ .PHONY: bootstrap
827
+ bootstrap: maintainer-clean
828
+ ./bootstrap
829
+
830
+ # Tell versions [3.59,3.63) of GNU make to not export all variables.
831
+ # Otherwise a system limit (for SysV at least) may be exceeded.
832
+ .NOEXPORT: