keyme-rice 1.5.1.keyme

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (202) hide show
  1. checksums.yaml +15 -0
  2. data/COPYING +23 -0
  3. data/Doxyfile +1253 -0
  4. data/Makefile.am +26 -0
  5. data/Makefile.in +853 -0
  6. data/README +1124 -0
  7. data/README.mingw +8 -0
  8. data/Rakefile +34 -0
  9. data/aclocal.m4 +971 -0
  10. data/bootstrap +8 -0
  11. data/config.guess +1530 -0
  12. data/config.sub +1773 -0
  13. data/configure +7121 -0
  14. data/configure.ac +52 -0
  15. data/depcomp +688 -0
  16. data/doxygen.ac +314 -0
  17. data/doxygen.am +186 -0
  18. data/extconf.rb +51 -0
  19. data/install-sh +527 -0
  20. data/missing +331 -0
  21. data/post-autoconf.rb +22 -0
  22. data/post-automake.rb +28 -0
  23. data/rice/Address_Registration_Guard.cpp +22 -0
  24. data/rice/Address_Registration_Guard.hpp +7 -0
  25. data/rice/Address_Registration_Guard.ipp +37 -0
  26. data/rice/Address_Registration_Guard_defn.hpp +75 -0
  27. data/rice/Arg.hpp +8 -0
  28. data/rice/Arg_impl.hpp +127 -0
  29. data/rice/Arg_operators.cpp +21 -0
  30. data/rice/Arg_operators.hpp +19 -0
  31. data/rice/Array.hpp +220 -0
  32. data/rice/Array.ipp +263 -0
  33. data/rice/Builtin_Object.hpp +8 -0
  34. data/rice/Builtin_Object.ipp +50 -0
  35. data/rice/Builtin_Object_defn.hpp +50 -0
  36. data/rice/Class.cpp +57 -0
  37. data/rice/Class.hpp +8 -0
  38. data/rice/Class.ipp +6 -0
  39. data/rice/Class_defn.hpp +83 -0
  40. data/rice/Constructor.hpp +368 -0
  41. data/rice/Critical_Guard.hpp +40 -0
  42. data/rice/Critical_Guard.ipp +26 -0
  43. data/rice/Data_Object.hpp +8 -0
  44. data/rice/Data_Object.ipp +133 -0
  45. data/rice/Data_Object_defn.hpp +138 -0
  46. data/rice/Data_Type.cpp +54 -0
  47. data/rice/Data_Type.hpp +8 -0
  48. data/rice/Data_Type.ipp +365 -0
  49. data/rice/Data_Type_defn.hpp +261 -0
  50. data/rice/Data_Type_fwd.hpp +12 -0
  51. data/rice/Director.cpp +13 -0
  52. data/rice/Director.hpp +39 -0
  53. data/rice/Enum.hpp +117 -0
  54. data/rice/Enum.ipp +246 -0
  55. data/rice/Exception.cpp +59 -0
  56. data/rice/Exception.hpp +9 -0
  57. data/rice/Exception_Base.hpp +8 -0
  58. data/rice/Exception_Base.ipp +13 -0
  59. data/rice/Exception_Base_defn.hpp +27 -0
  60. data/rice/Exception_defn.hpp +69 -0
  61. data/rice/Hash.hpp +227 -0
  62. data/rice/Hash.ipp +330 -0
  63. data/rice/Identifier.cpp +8 -0
  64. data/rice/Identifier.hpp +50 -0
  65. data/rice/Identifier.ipp +33 -0
  66. data/rice/Jump_Tag.hpp +24 -0
  67. data/rice/Makefile.am +129 -0
  68. data/rice/Makefile.in +769 -0
  69. data/rice/Module.cpp +84 -0
  70. data/rice/Module.hpp +8 -0
  71. data/rice/Module.ipp +6 -0
  72. data/rice/Module_defn.hpp +88 -0
  73. data/rice/Module_impl.hpp +281 -0
  74. data/rice/Module_impl.ipp +348 -0
  75. data/rice/Object.cpp +160 -0
  76. data/rice/Object.hpp +8 -0
  77. data/rice/Object.ipp +19 -0
  78. data/rice/Object_defn.hpp +191 -0
  79. data/rice/Require_Guard.hpp +21 -0
  80. data/rice/String.cpp +94 -0
  81. data/rice/String.hpp +89 -0
  82. data/rice/Struct.cpp +117 -0
  83. data/rice/Struct.hpp +162 -0
  84. data/rice/Struct.ipp +26 -0
  85. data/rice/Symbol.cpp +25 -0
  86. data/rice/Symbol.hpp +66 -0
  87. data/rice/Symbol.ipp +44 -0
  88. data/rice/VM.cpp +82 -0
  89. data/rice/VM.hpp +32 -0
  90. data/rice/config.hpp +44 -0
  91. data/rice/config.hpp.in +43 -0
  92. data/rice/detail/Arguments.hpp +118 -0
  93. data/rice/detail/Auto_Function_Wrapper.hpp +898 -0
  94. data/rice/detail/Auto_Function_Wrapper.ipp +3694 -0
  95. data/rice/detail/Auto_Member_Function_Wrapper.hpp +897 -0
  96. data/rice/detail/Auto_Member_Function_Wrapper.ipp +2774 -0
  97. data/rice/detail/Caster.hpp +103 -0
  98. data/rice/detail/Exception_Handler.hpp +8 -0
  99. data/rice/detail/Exception_Handler.ipp +68 -0
  100. data/rice/detail/Exception_Handler_defn.hpp +96 -0
  101. data/rice/detail/Iterator.hpp +93 -0
  102. data/rice/detail/Not_Copyable.hpp +25 -0
  103. data/rice/detail/Wrapped_Function.hpp +33 -0
  104. data/rice/detail/cfp.hpp +24 -0
  105. data/rice/detail/cfp.ipp +51 -0
  106. data/rice/detail/check_ruby_type.cpp +27 -0
  107. data/rice/detail/check_ruby_type.hpp +23 -0
  108. data/rice/detail/creation_funcs.hpp +37 -0
  109. data/rice/detail/creation_funcs.ipp +36 -0
  110. data/rice/detail/default_allocation_func.hpp +23 -0
  111. data/rice/detail/default_allocation_func.ipp +11 -0
  112. data/rice/detail/define_method_and_auto_wrap.hpp +31 -0
  113. data/rice/detail/define_method_and_auto_wrap.ipp +30 -0
  114. data/rice/detail/demangle.cpp +56 -0
  115. data/rice/detail/demangle.hpp +19 -0
  116. data/rice/detail/env.hpp +19 -0
  117. data/rice/detail/from_ruby.hpp +43 -0
  118. data/rice/detail/from_ruby.ipp +60 -0
  119. data/rice/detail/method_data.cpp +159 -0
  120. data/rice/detail/method_data.hpp +21 -0
  121. data/rice/detail/mininode.cpp +1220 -0
  122. data/rice/detail/mininode.hpp +320 -0
  123. data/rice/detail/node.hpp +13 -0
  124. data/rice/detail/object_call.hpp +69 -0
  125. data/rice/detail/object_call.ipp +131 -0
  126. data/rice/detail/protect.cpp +29 -0
  127. data/rice/detail/protect.hpp +34 -0
  128. data/rice/detail/ruby.hpp +84 -0
  129. data/rice/detail/ruby_version_code.hpp +6 -0
  130. data/rice/detail/ruby_version_code.hpp.in +6 -0
  131. data/rice/detail/rubysig.hpp +19 -0
  132. data/rice/detail/st.hpp +22 -0
  133. data/rice/detail/to_ruby.hpp +22 -0
  134. data/rice/detail/to_ruby.ipp +36 -0
  135. data/rice/detail/traits.hpp +43 -0
  136. data/rice/detail/win32.hpp +16 -0
  137. data/rice/detail/wrap_function.hpp +341 -0
  138. data/rice/detail/wrap_function.ipp +514 -0
  139. data/rice/global_function.hpp +33 -0
  140. data/rice/global_function.ipp +22 -0
  141. data/rice/protect.hpp +92 -0
  142. data/rice/protect.ipp +1134 -0
  143. data/rice/ruby_mark.hpp +13 -0
  144. data/rice/ruby_try_catch.hpp +86 -0
  145. data/rice/rubypp.rb +97 -0
  146. data/rice/to_from_ruby.hpp +8 -0
  147. data/rice/to_from_ruby.ipp +294 -0
  148. data/rice/to_from_ruby_defn.hpp +71 -0
  149. data/ruby/Makefile.am +1 -0
  150. data/ruby/Makefile.in +569 -0
  151. data/ruby/lib/Makefile.am +3 -0
  152. data/ruby/lib/Makefile.in +423 -0
  153. data/ruby/lib/mkmf-rice.rb.in +213 -0
  154. data/ruby/lib/version.rb +3 -0
  155. data/ruby.ac +136 -0
  156. data/sample/Makefile.am +47 -0
  157. data/sample/Makefile.in +408 -0
  158. data/sample/enum/extconf.rb +3 -0
  159. data/sample/enum/sample_enum.cpp +54 -0
  160. data/sample/enum/test.rb +8 -0
  161. data/sample/inheritance/animals.cpp +98 -0
  162. data/sample/inheritance/extconf.rb +3 -0
  163. data/sample/inheritance/test.rb +7 -0
  164. data/sample/map/extconf.rb +3 -0
  165. data/sample/map/map.cpp +81 -0
  166. data/sample/map/test.rb +7 -0
  167. data/test/Makefile.am +77 -0
  168. data/test/Makefile.in +820 -0
  169. data/test/ext/Makefile.am +43 -0
  170. data/test/ext/Makefile.in +404 -0
  171. data/test/ext/t1/Foo.hpp +10 -0
  172. data/test/ext/t1/extconf.rb +2 -0
  173. data/test/ext/t1/t1.cpp +15 -0
  174. data/test/ext/t2/extconf.rb +2 -0
  175. data/test/ext/t2/t2.cpp +11 -0
  176. data/test/test_Address_Registration_Guard.cpp +43 -0
  177. data/test/test_Array.cpp +241 -0
  178. data/test/test_Builtin_Object.cpp +72 -0
  179. data/test/test_Class.cpp +498 -0
  180. data/test/test_Constructor.cpp +128 -0
  181. data/test/test_Critical_Guard.cpp +51 -0
  182. data/test/test_Data_Object.cpp +275 -0
  183. data/test/test_Data_Type.cpp +348 -0
  184. data/test/test_Director.cpp +303 -0
  185. data/test/test_Enum.cpp +195 -0
  186. data/test/test_Exception.cpp +46 -0
  187. data/test/test_Hash.cpp +198 -0
  188. data/test/test_Identifier.cpp +70 -0
  189. data/test/test_Jump_Tag.cpp +17 -0
  190. data/test/test_Memory_Management.cpp +50 -0
  191. data/test/test_Module.cpp +497 -0
  192. data/test/test_Object.cpp +148 -0
  193. data/test/test_String.cpp +94 -0
  194. data/test/test_Struct.cpp +192 -0
  195. data/test/test_Symbol.cpp +63 -0
  196. data/test/test_To_From_Ruby.cpp +321 -0
  197. data/test/test_VM.cpp +26 -0
  198. data/test/test_global_functions.cpp +114 -0
  199. data/test/test_rice.rb +43 -0
  200. data/test/unittest.cpp +136 -0
  201. data/test/unittest.hpp +294 -0
  202. metadata +259 -0
data/Makefile.in ADDED
@@ -0,0 +1,853 @@
1
+ # Makefile.in generated by automake 1.11.3 from Makefile.am.
2
+ # @configure_input@
3
+
4
+ # Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002,
5
+ # 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011 Free Software
6
+ # Foundation, Inc.
7
+ # This Makefile.in is free software; the Free Software Foundation
8
+ # gives unlimited permission to copy and/or distribute it,
9
+ # with or without modifications, as long as this notice is preserved.
10
+
11
+ # This program is distributed in the hope that it will be useful,
12
+ # but WITHOUT ANY WARRANTY, to the extent permitted by law; without
13
+ # even the implied warranty of MERCHANTABILITY or FITNESS FOR A
14
+ # PARTICULAR PURPOSE.
15
+
16
+ @SET_MAKE@
17
+
18
+ # Copyright (C) 2004 Oren Ben-Kiki
19
+ # This file is distributed under the same terms as the Automake macro files.
20
+
21
+ # Generate automatic documentation using Doxygen. Goals and variables values
22
+ # are controlled by the various DX_COND_??? conditionals set by autoconf.
23
+ #
24
+ # The provided goals are:
25
+ # doxygen-doc: Generate all doxygen documentation.
26
+ # doxygen-run: Run doxygen, which will generate some of the documentation
27
+ # (HTML, CHM, CHI, MAN, RTF, XML) but will not do the post
28
+ # processing required for the rest of it (PS, PDF, and some MAN).
29
+ # doxygen-man: Rename some doxygen generated man pages.
30
+ # doxygen-ps: Generate doxygen PostScript documentation.
31
+ # doxygen-pdf: Generate doxygen PDF documentation.
32
+ #
33
+ # Note that by default these are not integrated into the automake goals. If
34
+ # doxygen is used to generate man pages, you can achieve this integration by
35
+ # setting man3_MANS to the list of man pages generated and then adding the
36
+ # dependency:
37
+ #
38
+ # $(man3_MANS): doxygen-doc
39
+ #
40
+ # This will cause make to run doxygen and generate all the documentation.
41
+ #
42
+ # The following variable is intended for use in Makefile.am:
43
+ #
44
+ # DX_CLEANFILES = everything to clean.
45
+ #
46
+ # This is usually added to MOSTLYCLEANFILES.
47
+ VPATH = @srcdir@
48
+ pkgdatadir = $(datadir)/@PACKAGE@
49
+ pkgincludedir = $(includedir)/@PACKAGE@
50
+ pkglibdir = $(libdir)/@PACKAGE@
51
+ pkglibexecdir = $(libexecdir)/@PACKAGE@
52
+ am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd
53
+ install_sh_DATA = $(install_sh) -c -m 644
54
+ install_sh_PROGRAM = $(install_sh) -c
55
+ install_sh_SCRIPT = $(install_sh) -c
56
+ INSTALL_HEADER = $(INSTALL_DATA)
57
+ transform = $(program_transform_name)
58
+ NORMAL_INSTALL = :
59
+ PRE_INSTALL = :
60
+ POST_INSTALL = :
61
+ NORMAL_UNINSTALL = :
62
+ PRE_UNINSTALL = :
63
+ POST_UNINSTALL = :
64
+ build_triplet = @build@
65
+ host_triplet = @host@
66
+ DIST_COMMON = README $(am__configure_deps) $(srcdir)/Makefile.am \
67
+ $(srcdir)/Makefile.in $(srcdir)/doxygen.am \
68
+ $(top_srcdir)/configure \
69
+ $(top_srcdir)/rice/detail/ruby_version_code.hpp.in COPYING \
70
+ TODO config.guess config.sub depcomp install-sh missing
71
+ subdir = .
72
+ ACLOCAL_M4 = $(top_srcdir)/aclocal.m4
73
+ am__aclocal_m4_deps = $(top_srcdir)/ruby.ac $(top_srcdir)/doxygen.ac \
74
+ $(top_srcdir)/configure.ac
75
+ am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \
76
+ $(ACLOCAL_M4)
77
+ am__CONFIG_DISTCLEAN_FILES = config.status config.cache config.log \
78
+ configure.lineno config.status.lineno
79
+ mkinstalldirs = $(install_sh) -d
80
+ CONFIG_HEADER = $(top_builddir)/rice/config.hpp
81
+ CONFIG_CLEAN_FILES = rice/detail/ruby_version_code.hpp
82
+ CONFIG_CLEAN_VPATH_FILES =
83
+ SOURCES =
84
+ DIST_SOURCES =
85
+ RECURSIVE_TARGETS = all-recursive check-recursive dvi-recursive \
86
+ html-recursive info-recursive install-data-recursive \
87
+ install-dvi-recursive install-exec-recursive \
88
+ install-html-recursive install-info-recursive \
89
+ install-pdf-recursive install-ps-recursive install-recursive \
90
+ installcheck-recursive installdirs-recursive pdf-recursive \
91
+ ps-recursive uninstall-recursive
92
+ RECURSIVE_CLEAN_TARGETS = mostlyclean-recursive clean-recursive \
93
+ distclean-recursive maintainer-clean-recursive
94
+ AM_RECURSIVE_TARGETS = $(RECURSIVE_TARGETS:-recursive=) \
95
+ $(RECURSIVE_CLEAN_TARGETS:-recursive=) tags TAGS ctags CTAGS \
96
+ distdir dist dist-all distcheck
97
+ ETAGS = etags
98
+ CTAGS = ctags
99
+ DIST_SUBDIRS = $(SUBDIRS)
100
+ DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST)
101
+ distdir = $(PACKAGE)-$(VERSION)
102
+ top_distdir = "$(distdir)"
103
+ am__remove_distdir = \
104
+ if test -d "$(distdir)"; then \
105
+ find "$(distdir)" -type d ! -perm -200 -exec chmod u+w {} ';' \
106
+ && rm -rf "$(distdir)" \
107
+ || { sleep 5 && rm -rf "$(distdir)"; }; \
108
+ else :; fi
109
+ am__relativize = \
110
+ dir0=`pwd`; \
111
+ sed_first='s,^\([^/]*\)/.*$$,\1,'; \
112
+ sed_rest='s,^[^/]*/*,,'; \
113
+ sed_last='s,^.*/\([^/]*\)$$,\1,'; \
114
+ sed_butlast='s,/*[^/]*$$,,'; \
115
+ while test -n "$$dir1"; do \
116
+ first=`echo "$$dir1" | sed -e "$$sed_first"`; \
117
+ if test "$$first" != "."; then \
118
+ if test "$$first" = ".."; then \
119
+ dir2=`echo "$$dir0" | sed -e "$$sed_last"`/"$$dir2"; \
120
+ dir0=`echo "$$dir0" | sed -e "$$sed_butlast"`; \
121
+ else \
122
+ first2=`echo "$$dir2" | sed -e "$$sed_first"`; \
123
+ if test "$$first2" = "$$first"; then \
124
+ dir2=`echo "$$dir2" | sed -e "$$sed_rest"`; \
125
+ else \
126
+ dir2="../$$dir2"; \
127
+ fi; \
128
+ dir0="$$dir0"/"$$first"; \
129
+ fi; \
130
+ fi; \
131
+ dir1=`echo "$$dir1" | sed -e "$$sed_rest"`; \
132
+ done; \
133
+ reldir="$$dir2"
134
+ DIST_ARCHIVES = "$(distdir)".tar.gz
135
+ GZIP_ENV = --best
136
+ distuninstallcheck_listfiles = find . -type f -print
137
+ am__distuninstallcheck_listfiles = $(distuninstallcheck_listfiles) \
138
+ | sed 's|^\./|$(prefix)/|' | grep -v '$(infodir)/dir$$'
139
+ distcleancheck_listfiles = find . -type f -print
140
+ ACLOCAL = @ACLOCAL@
141
+ AMTAR = @AMTAR@
142
+ AUTOCONF = @AUTOCONF@
143
+ AUTOHEADER = @AUTOHEADER@
144
+ AUTOMAKE = @AUTOMAKE@
145
+ AWK = @AWK@
146
+ CPPFLAGS = @CPPFLAGS@
147
+ CXX = @CXX@
148
+ CXXDEPMODE = @CXXDEPMODE@
149
+ CXXFLAGS = @CXXFLAGS@
150
+ CYGPATH_W = @CYGPATH_W@
151
+ DEFS = @DEFS@
152
+ DEPDIR = @DEPDIR@
153
+ DOXYGEN_PAPER_SIZE = @DOXYGEN_PAPER_SIZE@
154
+ DX_CONFIG = @DX_CONFIG@
155
+ DX_DOCDIR = @DX_DOCDIR@
156
+ DX_DOT = @DX_DOT@
157
+ DX_DOXYGEN = @DX_DOXYGEN@
158
+ DX_DVIPS = @DX_DVIPS@
159
+ DX_EGREP = @DX_EGREP@
160
+ DX_ENV = @DX_ENV@
161
+ DX_FLAG_chi = @DX_FLAG_chi@
162
+ DX_FLAG_chm = @DX_FLAG_chm@
163
+ DX_FLAG_doc = @DX_FLAG_doc@
164
+ DX_FLAG_dot = @DX_FLAG_dot@
165
+ DX_FLAG_html = @DX_FLAG_html@
166
+ DX_FLAG_man = @DX_FLAG_man@
167
+ DX_FLAG_pdf = @DX_FLAG_pdf@
168
+ DX_FLAG_ps = @DX_FLAG_ps@
169
+ DX_FLAG_rtf = @DX_FLAG_rtf@
170
+ DX_FLAG_xml = @DX_FLAG_xml@
171
+ DX_HHC = @DX_HHC@
172
+ DX_LATEX = @DX_LATEX@
173
+ DX_MAKEINDEX = @DX_MAKEINDEX@
174
+ DX_PDFLATEX = @DX_PDFLATEX@
175
+ DX_PERL = @DX_PERL@
176
+ DX_PROJECT = @DX_PROJECT@
177
+ ECHO_C = @ECHO_C@
178
+ ECHO_N = @ECHO_N@
179
+ ECHO_T = @ECHO_T@
180
+ EXEEXT = @EXEEXT@
181
+ INSTALL = @INSTALL@
182
+ INSTALL_DATA = @INSTALL_DATA@
183
+ INSTALL_PROGRAM = @INSTALL_PROGRAM@
184
+ INSTALL_SCRIPT = @INSTALL_SCRIPT@
185
+ INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@
186
+ LDFLAGS = @LDFLAGS@
187
+ LIBOBJS = @LIBOBJS@
188
+ LIBS = @LIBS@
189
+ LTLIBOBJS = @LTLIBOBJS@
190
+ MAKEINFO = @MAKEINFO@
191
+ MKDIR_P = @MKDIR_P@
192
+ OBJEXT = @OBJEXT@
193
+ PACKAGE = @PACKAGE@
194
+ PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@
195
+ PACKAGE_NAME = @PACKAGE_NAME@
196
+ PACKAGE_STRING = @PACKAGE_STRING@
197
+ PACKAGE_TARNAME = @PACKAGE_TARNAME@
198
+ PACKAGE_URL = @PACKAGE_URL@
199
+ PACKAGE_VERSION = @PACKAGE_VERSION@
200
+ PATH_SEPARATOR = @PATH_SEPARATOR@
201
+ RANLIB = @RANLIB@
202
+ RICE_CPPFLAGS = @RICE_CPPFLAGS@
203
+ RICE_LDFLAGS = @RICE_LDFLAGS@
204
+ RICE_ROOT = @RICE_ROOT@
205
+ RICE_SAMPLES = @RICE_SAMPLES@
206
+ RICE_USING_MINGW32 = @RICE_USING_MINGW32@
207
+ RUBY = @RUBY@
208
+ RUBY_CFLAGS = @RUBY_CFLAGS@
209
+ RUBY_CPPFLAGS = @RUBY_CPPFLAGS@
210
+ RUBY_CXXFLAGS = @RUBY_CXXFLAGS@
211
+ RUBY_LDFLAGS = @RUBY_LDFLAGS@
212
+ RUBY_LIBRUBYARG = @RUBY_LIBRUBYARG@
213
+ RUBY_LIBRUBYARG_STATIC = @RUBY_LIBRUBYARG_STATIC@
214
+ RUBY_LIBS = @RUBY_LIBS@
215
+ RUBY_SITELIBDIR = @RUBY_SITELIBDIR@
216
+ RUBY_VERSION_CODE = @RUBY_VERSION_CODE@
217
+ SET_MAKE = @SET_MAKE@
218
+ SHELL = @SHELL@
219
+ STRIP = @STRIP@
220
+ VERSION = @VERSION@
221
+ abs_builddir = @abs_builddir@
222
+ abs_srcdir = @abs_srcdir@
223
+ abs_top_builddir = @abs_top_builddir@
224
+ abs_top_srcdir = @abs_top_srcdir@
225
+ ac_ct_CXX = @ac_ct_CXX@
226
+ am__include = @am__include@
227
+ am__leading_dot = @am__leading_dot@
228
+ am__quote = @am__quote@
229
+ am__tar = @am__tar@
230
+ am__untar = @am__untar@
231
+ bindir = @bindir@
232
+ build = @build@
233
+ build_alias = @build_alias@
234
+ build_cpu = @build_cpu@
235
+ build_os = @build_os@
236
+ build_vendor = @build_vendor@
237
+ builddir = @builddir@
238
+ datadir = @datadir@
239
+ datarootdir = @datarootdir@
240
+ docdir = @docdir@
241
+ dvidir = @dvidir@
242
+ exec_prefix = @exec_prefix@
243
+ host = @host@
244
+ host_alias = @host_alias@
245
+ host_cpu = @host_cpu@
246
+ host_os = @host_os@
247
+ host_vendor = @host_vendor@
248
+ htmldir = @htmldir@
249
+ includedir = @includedir@
250
+ infodir = @infodir@
251
+ install_sh = @install_sh@
252
+ libdir = @libdir@
253
+ libexecdir = @libexecdir@
254
+ localedir = @localedir@
255
+ localstatedir = @localstatedir@
256
+ mandir = @mandir@
257
+ mkdir_p = @mkdir_p@
258
+ oldincludedir = @oldincludedir@
259
+ pdfdir = @pdfdir@
260
+ prefix = @prefix@
261
+ program_transform_name = @program_transform_name@
262
+ psdir = @psdir@
263
+ sbindir = @sbindir@
264
+ sharedstatedir = @sharedstatedir@
265
+ srcdir = @srcdir@
266
+ sysconfdir = @sysconfdir@
267
+ target_alias = @target_alias@
268
+ top_build_prefix = @top_build_prefix@
269
+ top_builddir = @top_builddir@
270
+ top_srcdir = @top_srcdir@
271
+ AUTOMAKE_OPTIONS = foreign 1.5
272
+ SUBDIRS = rice test sample ruby
273
+ @DX_COND_doc_TRUE@@DX_COND_html_TRUE@DX_CLEAN_HTML = @DX_DOCDIR@/html
274
+ @DX_COND_chm_TRUE@@DX_COND_doc_TRUE@DX_CLEAN_CHM = @DX_DOCDIR@/chm
275
+ @DX_COND_chi_TRUE@@DX_COND_chm_TRUE@@DX_COND_doc_TRUE@DX_CLEAN_CHI = @DX_DOCDIR@/@PACKAGE@.chi
276
+ @DX_COND_doc_TRUE@@DX_COND_man_TRUE@DX_CLEAN_MAN = @DX_DOCDIR@/man
277
+ @DX_COND_doc_TRUE@@DX_COND_rtf_TRUE@DX_CLEAN_RTF = @DX_DOCDIR@/rtf
278
+ @DX_COND_doc_TRUE@@DX_COND_xml_TRUE@DX_CLEAN_XML = @DX_DOCDIR@/xml
279
+ @DX_COND_doc_TRUE@@DX_COND_ps_TRUE@DX_CLEAN_PS = @DX_DOCDIR@/@PACKAGE@.ps
280
+ @DX_COND_doc_TRUE@@DX_COND_ps_TRUE@DX_PS_GOAL = doxygen-ps
281
+ @DX_COND_doc_TRUE@@DX_COND_pdf_TRUE@DX_CLEAN_PDF = @DX_DOCDIR@/@PACKAGE@.pdf
282
+ @DX_COND_doc_TRUE@@DX_COND_pdf_TRUE@DX_PDF_GOAL = doxygen-pdf
283
+ @DX_COND_doc_TRUE@@DX_COND_latex_TRUE@DX_CLEAN_LATEX = @DX_DOCDIR@/latex
284
+ @DX_COND_doc_TRUE@DX_CLEANFILES = \
285
+ @DX_COND_doc_TRUE@ @DX_DOCDIR@/@PACKAGE@.tag \
286
+ @DX_COND_doc_TRUE@ -r \
287
+ @DX_COND_doc_TRUE@ $(DX_CLEAN_HTML) \
288
+ @DX_COND_doc_TRUE@ $(DX_CLEAN_CHM) \
289
+ @DX_COND_doc_TRUE@ $(DX_CLEAN_CHI) \
290
+ @DX_COND_doc_TRUE@ $(DX_CLEAN_MAN) \
291
+ @DX_COND_doc_TRUE@ $(DX_CLEAN_RTF) \
292
+ @DX_COND_doc_TRUE@ $(DX_CLEAN_XML) \
293
+ @DX_COND_doc_TRUE@ $(DX_CLEAN_PS) \
294
+ @DX_COND_doc_TRUE@ $(DX_CLEAN_PDF) \
295
+ @DX_COND_doc_TRUE@ $(DX_CLEAN_LATEX)
296
+
297
+ noinst_EXTRA = rice/README.doxygen
298
+ DX_EXTRA_DEPEND = rice/README.doxygen
299
+ EXTRA_DIST = \
300
+ README.mingw \
301
+ post-autoconf.rb \
302
+ post-automake.rb \
303
+ bootstrap \
304
+ Doxyfile \
305
+ ruby.ac \
306
+ doxygen.ac \
307
+ doxygen.am \
308
+ doc
309
+
310
+ all: all-recursive
311
+
312
+ .SUFFIXES:
313
+ am--refresh: Makefile
314
+ @:
315
+ $(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(srcdir)/doxygen.am $(am__configure_deps)
316
+ @for dep in $?; do \
317
+ case '$(am__configure_deps)' in \
318
+ *$$dep*) \
319
+ echo ' cd $(srcdir) && $(AUTOMAKE) --foreign'; \
320
+ $(am__cd) $(srcdir) && $(AUTOMAKE) --foreign \
321
+ && exit 0; \
322
+ exit 1;; \
323
+ esac; \
324
+ done; \
325
+ echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign Makefile'; \
326
+ $(am__cd) $(top_srcdir) && \
327
+ $(AUTOMAKE) --foreign Makefile
328
+ .PRECIOUS: Makefile
329
+ Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
330
+ @case '$?' in \
331
+ *config.status*) \
332
+ echo ' $(SHELL) ./config.status'; \
333
+ $(SHELL) ./config.status;; \
334
+ *) \
335
+ echo ' cd $(top_builddir) && $(SHELL) ./config.status $@ $(am__depfiles_maybe)'; \
336
+ cd $(top_builddir) && $(SHELL) ./config.status $@ $(am__depfiles_maybe);; \
337
+ esac;
338
+ $(srcdir)/doxygen.am:
339
+
340
+ $(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES)
341
+ $(SHELL) ./config.status --recheck
342
+
343
+ $(top_srcdir)/configure: $(am__configure_deps)
344
+ $(am__cd) $(srcdir) && $(AUTOCONF)
345
+ $(ACLOCAL_M4): $(am__aclocal_m4_deps)
346
+ $(am__cd) $(srcdir) && $(ACLOCAL) $(ACLOCAL_AMFLAGS)
347
+ $(am__aclocal_m4_deps):
348
+ rice/detail/ruby_version_code.hpp: $(top_builddir)/config.status $(top_srcdir)/rice/detail/ruby_version_code.hpp.in
349
+ cd $(top_builddir) && $(SHELL) ./config.status $@
350
+
351
+ # This directory's subdirectories are mostly independent; you can cd
352
+ # into them and run `make' without going through this Makefile.
353
+ # To change the values of `make' variables: instead of editing Makefiles,
354
+ # (1) if the variable is set in `config.status', edit `config.status'
355
+ # (which will cause the Makefiles to be regenerated when you run `make');
356
+ # (2) otherwise, pass the desired values on the `make' command line.
357
+ $(RECURSIVE_TARGETS):
358
+ @fail= failcom='exit 1'; \
359
+ for f in x $$MAKEFLAGS; do \
360
+ case $$f in \
361
+ *=* | --[!k]*);; \
362
+ *k*) failcom='fail=yes';; \
363
+ esac; \
364
+ done; \
365
+ dot_seen=no; \
366
+ target=`echo $@ | sed s/-recursive//`; \
367
+ list='$(SUBDIRS)'; for subdir in $$list; do \
368
+ echo "Making $$target in $$subdir"; \
369
+ if test "$$subdir" = "."; then \
370
+ dot_seen=yes; \
371
+ local_target="$$target-am"; \
372
+ else \
373
+ local_target="$$target"; \
374
+ fi; \
375
+ ($(am__cd) $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$local_target) \
376
+ || eval $$failcom; \
377
+ done; \
378
+ if test "$$dot_seen" = "no"; then \
379
+ $(MAKE) $(AM_MAKEFLAGS) "$$target-am" || exit 1; \
380
+ fi; test -z "$$fail"
381
+
382
+ $(RECURSIVE_CLEAN_TARGETS):
383
+ @fail= failcom='exit 1'; \
384
+ for f in x $$MAKEFLAGS; do \
385
+ case $$f in \
386
+ *=* | --[!k]*);; \
387
+ *k*) failcom='fail=yes';; \
388
+ esac; \
389
+ done; \
390
+ dot_seen=no; \
391
+ case "$@" in \
392
+ distclean-* | maintainer-clean-*) list='$(DIST_SUBDIRS)' ;; \
393
+ *) list='$(SUBDIRS)' ;; \
394
+ esac; \
395
+ rev=''; for subdir in $$list; do \
396
+ if test "$$subdir" = "."; then :; else \
397
+ rev="$$subdir $$rev"; \
398
+ fi; \
399
+ done; \
400
+ rev="$$rev ."; \
401
+ target=`echo $@ | sed s/-recursive//`; \
402
+ for subdir in $$rev; do \
403
+ echo "Making $$target in $$subdir"; \
404
+ if test "$$subdir" = "."; then \
405
+ local_target="$$target-am"; \
406
+ else \
407
+ local_target="$$target"; \
408
+ fi; \
409
+ ($(am__cd) $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$local_target) \
410
+ || eval $$failcom; \
411
+ done && test -z "$$fail"
412
+ tags-recursive:
413
+ list='$(SUBDIRS)'; for subdir in $$list; do \
414
+ test "$$subdir" = . || ($(am__cd) $$subdir && $(MAKE) $(AM_MAKEFLAGS) tags); \
415
+ done
416
+ ctags-recursive:
417
+ list='$(SUBDIRS)'; for subdir in $$list; do \
418
+ test "$$subdir" = . || ($(am__cd) $$subdir && $(MAKE) $(AM_MAKEFLAGS) ctags); \
419
+ done
420
+
421
+ ID: $(HEADERS) $(SOURCES) $(LISP) $(TAGS_FILES)
422
+ list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \
423
+ unique=`for i in $$list; do \
424
+ if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
425
+ done | \
426
+ $(AWK) '{ files[$$0] = 1; nonempty = 1; } \
427
+ END { if (nonempty) { for (i in files) print i; }; }'`; \
428
+ mkid -fID $$unique
429
+ tags: TAGS
430
+
431
+ TAGS: tags-recursive $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \
432
+ $(TAGS_FILES) $(LISP)
433
+ set x; \
434
+ here=`pwd`; \
435
+ if ($(ETAGS) --etags-include --version) >/dev/null 2>&1; then \
436
+ include_option=--etags-include; \
437
+ empty_fix=.; \
438
+ else \
439
+ include_option=--include; \
440
+ empty_fix=; \
441
+ fi; \
442
+ list='$(SUBDIRS)'; for subdir in $$list; do \
443
+ if test "$$subdir" = .; then :; else \
444
+ test ! -f $$subdir/TAGS || \
445
+ set "$$@" "$$include_option=$$here/$$subdir/TAGS"; \
446
+ fi; \
447
+ done; \
448
+ list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \
449
+ unique=`for i in $$list; do \
450
+ if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
451
+ done | \
452
+ $(AWK) '{ files[$$0] = 1; nonempty = 1; } \
453
+ END { if (nonempty) { for (i in files) print i; }; }'`; \
454
+ shift; \
455
+ if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \
456
+ test -n "$$unique" || unique=$$empty_fix; \
457
+ if test $$# -gt 0; then \
458
+ $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \
459
+ "$$@" $$unique; \
460
+ else \
461
+ $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \
462
+ $$unique; \
463
+ fi; \
464
+ fi
465
+ ctags: CTAGS
466
+ CTAGS: ctags-recursive $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \
467
+ $(TAGS_FILES) $(LISP)
468
+ list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \
469
+ unique=`for i in $$list; do \
470
+ if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
471
+ done | \
472
+ $(AWK) '{ files[$$0] = 1; nonempty = 1; } \
473
+ END { if (nonempty) { for (i in files) print i; }; }'`; \
474
+ test -z "$(CTAGS_ARGS)$$unique" \
475
+ || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \
476
+ $$unique
477
+
478
+ GTAGS:
479
+ here=`$(am__cd) $(top_builddir) && pwd` \
480
+ && $(am__cd) $(top_srcdir) \
481
+ && gtags -i $(GTAGS_ARGS) "$$here"
482
+
483
+ distclean-tags:
484
+ -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags
485
+
486
+ distdir: $(DISTFILES)
487
+ $(am__remove_distdir)
488
+ test -d "$(distdir)" || mkdir "$(distdir)"
489
+ @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
490
+ topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
491
+ list='$(DISTFILES)'; \
492
+ dist_files=`for file in $$list; do echo $$file; done | \
493
+ sed -e "s|^$$srcdirstrip/||;t" \
494
+ -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \
495
+ case $$dist_files in \
496
+ */*) eval $(MKDIR_P) `echo "$$dist_files" | \
497
+ sed '/\//!d;s|^|"$(distdir)"/|;s,/[^/]*$$,,' | \
498
+ sort -u` ;; \
499
+ esac; \
500
+ for file in $$dist_files; do \
501
+ if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \
502
+ if test -d $$d/$$file; then \
503
+ dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \
504
+ if test -d "$(distdir)/$$file"; then \
505
+ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \
506
+ fi; \
507
+ if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \
508
+ cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \
509
+ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \
510
+ fi; \
511
+ cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \
512
+ else \
513
+ test -f "$(distdir)/$$file" \
514
+ || cp -p $$d/$$file "$(distdir)/$$file" \
515
+ || exit 1; \
516
+ fi; \
517
+ done
518
+ @list='$(DIST_SUBDIRS)'; for subdir in $$list; do \
519
+ if test "$$subdir" = .; then :; else \
520
+ test -d "$(distdir)/$$subdir" \
521
+ || $(MKDIR_P) "$(distdir)/$$subdir" \
522
+ || exit 1; \
523
+ fi; \
524
+ done
525
+ @list='$(DIST_SUBDIRS)'; for subdir in $$list; do \
526
+ if test "$$subdir" = .; then :; else \
527
+ dir1=$$subdir; dir2="$(distdir)/$$subdir"; \
528
+ $(am__relativize); \
529
+ new_distdir=$$reldir; \
530
+ dir1=$$subdir; dir2="$(top_distdir)"; \
531
+ $(am__relativize); \
532
+ new_top_distdir=$$reldir; \
533
+ echo " (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) top_distdir="$$new_top_distdir" distdir="$$new_distdir" \\"; \
534
+ echo " am__remove_distdir=: am__skip_length_check=: am__skip_mode_fix=: distdir)"; \
535
+ ($(am__cd) $$subdir && \
536
+ $(MAKE) $(AM_MAKEFLAGS) \
537
+ top_distdir="$$new_top_distdir" \
538
+ distdir="$$new_distdir" \
539
+ am__remove_distdir=: \
540
+ am__skip_length_check=: \
541
+ am__skip_mode_fix=: \
542
+ distdir) \
543
+ || exit 1; \
544
+ fi; \
545
+ done
546
+ -test -n "$(am__skip_mode_fix)" \
547
+ || find "$(distdir)" -type d ! -perm -755 \
548
+ -exec chmod u+rwx,go+rx {} \; -o \
549
+ ! -type d ! -perm -444 -links 1 -exec chmod a+r {} \; -o \
550
+ ! -type d ! -perm -400 -exec chmod a+r {} \; -o \
551
+ ! -type d ! -perm -444 -exec $(install_sh) -c -m a+r {} {} \; \
552
+ || chmod -R a+r "$(distdir)"
553
+ dist-gzip: distdir
554
+ tardir="$(distdir)" && $(am__tar) | GZIP=$(GZIP_ENV) gzip -c >"$(distdir)".tar.gz
555
+ $(am__remove_distdir)
556
+
557
+ dist-bzip2: distdir
558
+ tardir="$(distdir)" && $(am__tar) | BZIP2=$${BZIP2--9} bzip2 -c >"$(distdir)".tar.bz2
559
+ $(am__remove_distdir)
560
+
561
+ dist-lzip: distdir
562
+ tardir="$(distdir)" && $(am__tar) | lzip -c $${LZIP_OPT--9} >"$(distdir)".tar.lz
563
+ $(am__remove_distdir)
564
+
565
+ dist-lzma: distdir
566
+ tardir="$(distdir)" && $(am__tar) | lzma -9 -c >"$(distdir)".tar.lzma
567
+ $(am__remove_distdir)
568
+
569
+ dist-xz: distdir
570
+ tardir="$(distdir)" && $(am__tar) | XZ_OPT=$${XZ_OPT--e} xz -c >"$(distdir)".tar.xz
571
+ $(am__remove_distdir)
572
+
573
+ dist-tarZ: distdir
574
+ tardir="$(distdir)" && $(am__tar) | compress -c >"$(distdir)".tar.Z
575
+ $(am__remove_distdir)
576
+
577
+ dist-shar: distdir
578
+ shar "$(distdir)" | GZIP=$(GZIP_ENV) gzip -c >"$(distdir)".shar.gz
579
+ $(am__remove_distdir)
580
+
581
+ dist-zip: distdir
582
+ -rm -f "$(distdir)".zip
583
+ zip -rq "$(distdir)".zip "$(distdir)"
584
+ $(am__remove_distdir)
585
+
586
+ dist dist-all: distdir
587
+ tardir="$(distdir)" && $(am__tar) | GZIP=$(GZIP_ENV) gzip -c >"$(distdir)".tar.gz
588
+ $(am__remove_distdir)
589
+
590
+ # This target untars the dist file and tries a VPATH configuration. Then
591
+ # it guarantees that the distribution is self-contained by making another
592
+ # tarfile.
593
+ distcheck: dist
594
+ case '$(DIST_ARCHIVES)' in \
595
+ *.tar.gz*) \
596
+ GZIP=$(GZIP_ENV) gzip -dc "$(distdir)".tar.gz | $(am__untar) ;;\
597
+ *.tar.bz2*) \
598
+ bzip2 -dc "$(distdir)".tar.bz2 | $(am__untar) ;;\
599
+ *.tar.lzma*) \
600
+ lzma -dc "$(distdir)".tar.lzma | $(am__untar) ;;\
601
+ *.tar.lz*) \
602
+ lzip -dc "$(distdir)".tar.lz | $(am__untar) ;;\
603
+ *.tar.xz*) \
604
+ xz -dc "$(distdir)".tar.xz | $(am__untar) ;;\
605
+ *.tar.Z*) \
606
+ uncompress -c "$(distdir)".tar.Z | $(am__untar) ;;\
607
+ *.shar.gz*) \
608
+ GZIP=$(GZIP_ENV) gzip -dc "$(distdir)".shar.gz | unshar ;;\
609
+ *.zip*) \
610
+ unzip "$(distdir)".zip ;;\
611
+ esac
612
+ chmod -R a-w "$(distdir)"; chmod a+w "$(distdir)"
613
+ mkdir "$(distdir)"/_build
614
+ mkdir "$(distdir)"/_inst
615
+ chmod a-w "$(distdir)"
616
+ test -d "$(distdir)"/_build || exit 0; \
617
+ dc_install_base=`$(am__cd) "$(distdir)"/_inst && pwd | sed -e 's,^[^:\\/]:[\\/],/,'` \
618
+ && dc_destdir="$${TMPDIR-/tmp}/am-dc-$$$$/" \
619
+ && am__cwd=`pwd` \
620
+ && $(am__cd) "$(distdir)"/_build \
621
+ && ../configure --srcdir=.. --prefix="$$dc_install_base" \
622
+ $(AM_DISTCHECK_CONFIGURE_FLAGS) \
623
+ $(DISTCHECK_CONFIGURE_FLAGS) \
624
+ && $(MAKE) $(AM_MAKEFLAGS) \
625
+ && $(MAKE) $(AM_MAKEFLAGS) dvi \
626
+ && $(MAKE) $(AM_MAKEFLAGS) check \
627
+ && $(MAKE) $(AM_MAKEFLAGS) install \
628
+ && $(MAKE) $(AM_MAKEFLAGS) installcheck \
629
+ && $(MAKE) $(AM_MAKEFLAGS) uninstall \
630
+ && $(MAKE) $(AM_MAKEFLAGS) distuninstallcheck_dir="$$dc_install_base" \
631
+ distuninstallcheck \
632
+ && chmod -R a-w "$$dc_install_base" \
633
+ && ({ \
634
+ (cd ../.. && umask 077 && mkdir "$$dc_destdir") \
635
+ && $(MAKE) $(AM_MAKEFLAGS) DESTDIR="$$dc_destdir" install \
636
+ && $(MAKE) $(AM_MAKEFLAGS) DESTDIR="$$dc_destdir" uninstall \
637
+ && $(MAKE) $(AM_MAKEFLAGS) DESTDIR="$$dc_destdir" \
638
+ distuninstallcheck_dir="$$dc_destdir" distuninstallcheck; \
639
+ } || { rm -rf "$$dc_destdir"; exit 1; }) \
640
+ && rm -rf "$$dc_destdir" \
641
+ && $(MAKE) $(AM_MAKEFLAGS) dist \
642
+ && rm -rf $(DIST_ARCHIVES) \
643
+ && $(MAKE) $(AM_MAKEFLAGS) distcleancheck \
644
+ && cd "$$am__cwd" \
645
+ || exit 1
646
+ $(am__remove_distdir)
647
+ @(echo "$(distdir) archives ready for distribution: "; \
648
+ list='$(DIST_ARCHIVES)'; for i in $$list; do echo $$i; done) | \
649
+ sed -e 1h -e 1s/./=/g -e 1p -e 1x -e '$$p' -e '$$x'
650
+ distuninstallcheck:
651
+ @test -n '$(distuninstallcheck_dir)' || { \
652
+ echo 'ERROR: trying to run $@ with an empty' \
653
+ '$$(distuninstallcheck_dir)' >&2; \
654
+ exit 1; \
655
+ }; \
656
+ $(am__cd) '$(distuninstallcheck_dir)' || { \
657
+ echo 'ERROR: cannot chdir into $(distuninstallcheck_dir)' >&2; \
658
+ exit 1; \
659
+ }; \
660
+ test `$(am__distuninstallcheck_listfiles) | wc -l` -eq 0 \
661
+ || { echo "ERROR: files left after uninstall:" ; \
662
+ if test -n "$(DESTDIR)"; then \
663
+ echo " (check DESTDIR support)"; \
664
+ fi ; \
665
+ $(distuninstallcheck_listfiles) ; \
666
+ exit 1; } >&2
667
+ distcleancheck: distclean
668
+ @if test '$(srcdir)' = . ; then \
669
+ echo "ERROR: distcleancheck can only run from a VPATH build" ; \
670
+ exit 1 ; \
671
+ fi
672
+ @test `$(distcleancheck_listfiles) | wc -l` -eq 0 \
673
+ || { echo "ERROR: files left in build directory after distclean:" ; \
674
+ $(distcleancheck_listfiles) ; \
675
+ exit 1; } >&2
676
+ check-am: all-am
677
+ check: check-recursive
678
+ all-am: Makefile
679
+ installdirs: installdirs-recursive
680
+ installdirs-am:
681
+ install: install-recursive
682
+ install-exec: install-exec-recursive
683
+ install-data: install-data-recursive
684
+ uninstall: uninstall-recursive
685
+
686
+ install-am: all-am
687
+ @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am
688
+
689
+ installcheck: installcheck-recursive
690
+ install-strip:
691
+ if test -z '$(STRIP)'; then \
692
+ $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \
693
+ install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \
694
+ install; \
695
+ else \
696
+ $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \
697
+ install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \
698
+ "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'" install; \
699
+ fi
700
+ mostlyclean-generic:
701
+
702
+ clean-generic:
703
+
704
+ distclean-generic:
705
+ -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES)
706
+ -test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES)
707
+
708
+ maintainer-clean-generic:
709
+ @echo "This command is intended for maintainers to use"
710
+ @echo "it deletes files that may require special tools to rebuild."
711
+ clean: clean-recursive
712
+
713
+ clean-am: clean-generic mostlyclean-am
714
+
715
+ distclean: distclean-recursive
716
+ -rm -f $(am__CONFIG_DISTCLEAN_FILES)
717
+ -rm -f Makefile
718
+ distclean-am: clean-am distclean-generic distclean-tags
719
+
720
+ dvi: dvi-recursive
721
+
722
+ dvi-am:
723
+
724
+ html: html-recursive
725
+
726
+ html-am:
727
+
728
+ info: info-recursive
729
+
730
+ info-am:
731
+
732
+ install-data-am:
733
+
734
+ install-dvi: install-dvi-recursive
735
+
736
+ install-dvi-am:
737
+
738
+ install-exec-am:
739
+
740
+ install-html: install-html-recursive
741
+
742
+ install-html-am:
743
+
744
+ install-info: install-info-recursive
745
+
746
+ install-info-am:
747
+
748
+ install-man:
749
+
750
+ install-pdf: install-pdf-recursive
751
+
752
+ install-pdf-am:
753
+
754
+ install-ps: install-ps-recursive
755
+
756
+ install-ps-am:
757
+
758
+ installcheck-am:
759
+
760
+ maintainer-clean: maintainer-clean-recursive
761
+ -rm -f $(am__CONFIG_DISTCLEAN_FILES)
762
+ -rm -rf $(top_srcdir)/autom4te.cache
763
+ -rm -f Makefile
764
+ maintainer-clean-am: distclean-am maintainer-clean-generic
765
+
766
+ mostlyclean: mostlyclean-recursive
767
+
768
+ mostlyclean-am: mostlyclean-generic
769
+
770
+ pdf: pdf-recursive
771
+
772
+ pdf-am:
773
+
774
+ ps: ps-recursive
775
+
776
+ ps-am:
777
+
778
+ uninstall-am:
779
+
780
+ .MAKE: $(RECURSIVE_CLEAN_TARGETS) $(RECURSIVE_TARGETS) ctags-recursive \
781
+ install-am install-strip tags-recursive
782
+
783
+ .PHONY: $(RECURSIVE_CLEAN_TARGETS) $(RECURSIVE_TARGETS) CTAGS GTAGS \
784
+ all all-am am--refresh check check-am clean clean-generic \
785
+ ctags ctags-recursive dist dist-all dist-bzip2 dist-gzip \
786
+ dist-lzip dist-lzma dist-shar dist-tarZ dist-xz dist-zip \
787
+ distcheck distclean distclean-generic distclean-tags \
788
+ distcleancheck distdir distuninstallcheck dvi dvi-am html \
789
+ html-am info info-am install install-am install-data \
790
+ install-data-am install-dvi install-dvi-am install-exec \
791
+ install-exec-am install-html install-html-am install-info \
792
+ install-info-am install-man install-pdf install-pdf-am \
793
+ install-ps install-ps-am install-strip installcheck \
794
+ installcheck-am installdirs installdirs-am maintainer-clean \
795
+ maintainer-clean-generic mostlyclean mostlyclean-generic pdf \
796
+ pdf-am ps ps-am tags tags-recursive uninstall uninstall-am
797
+
798
+
799
+ @DX_COND_doc_TRUE@@DX_COND_ps_TRUE@doxygen-ps: @DX_DOCDIR@/@PACKAGE@.ps
800
+
801
+ @DX_COND_doc_TRUE@@DX_COND_ps_TRUE@@DX_DOCDIR@/@PACKAGE@.ps: @DX_DOCDIR@/@PACKAGE@.tag $(DX_EXTRA_DEPEND)
802
+ @DX_COND_doc_TRUE@@DX_COND_ps_TRUE@ cd @DX_DOCDIR@/latex; \
803
+ @DX_COND_doc_TRUE@@DX_COND_ps_TRUE@ rm -f *.aux *.toc *.idx *.ind *.ilg *.log *.out; \
804
+ @DX_COND_doc_TRUE@@DX_COND_ps_TRUE@ $(DX_LATEX) refman.tex; \
805
+ @DX_COND_doc_TRUE@@DX_COND_ps_TRUE@ $(MAKEINDEX_PATH) refman.idx; \
806
+ @DX_COND_doc_TRUE@@DX_COND_ps_TRUE@ $(DX_LATEX) refman.tex; \
807
+ @DX_COND_doc_TRUE@@DX_COND_ps_TRUE@ countdown=5; \
808
+ @DX_COND_doc_TRUE@@DX_COND_ps_TRUE@ while $(DX_EGREP) 'Rerun (LaTeX|to get cross-references right)' \
809
+ @DX_COND_doc_TRUE@@DX_COND_ps_TRUE@ refman.log > /dev/null 2>&1 \
810
+ @DX_COND_doc_TRUE@@DX_COND_ps_TRUE@ && test $$countdown -gt 0; do \
811
+ @DX_COND_doc_TRUE@@DX_COND_ps_TRUE@ $(DX_LATEX) refman.tex; \
812
+ @DX_COND_doc_TRUE@@DX_COND_ps_TRUE@ countdown=`expr $$countdown - 1`; \
813
+ @DX_COND_doc_TRUE@@DX_COND_ps_TRUE@ done; \
814
+ @DX_COND_doc_TRUE@@DX_COND_ps_TRUE@ $(DX_DVIPS) -o ../@PACKAGE@.ps refman.dvi
815
+
816
+ @DX_COND_doc_TRUE@@DX_COND_pdf_TRUE@doxygen-pdf: @DX_DOCDIR@/@PACKAGE@.pdf
817
+
818
+ @DX_COND_doc_TRUE@@DX_COND_pdf_TRUE@@DX_DOCDIR@/@PACKAGE@.pdf: @DX_DOCDIR@/@PACKAGE@.tag $(DX_EXTRA_DEPEND)
819
+ @DX_COND_doc_TRUE@@DX_COND_pdf_TRUE@ cd @DX_DOCDIR@/latex; \
820
+ @DX_COND_doc_TRUE@@DX_COND_pdf_TRUE@ rm -f *.aux *.toc *.idx *.ind *.ilg *.log *.out; \
821
+ @DX_COND_doc_TRUE@@DX_COND_pdf_TRUE@ $(DX_PDFLATEX) refman.tex; \
822
+ @DX_COND_doc_TRUE@@DX_COND_pdf_TRUE@ $(DX_MAKEINDEX) refman.idx; \
823
+ @DX_COND_doc_TRUE@@DX_COND_pdf_TRUE@ $(DX_PDFLATEX) refman.tex; \
824
+ @DX_COND_doc_TRUE@@DX_COND_pdf_TRUE@ countdown=5; \
825
+ @DX_COND_doc_TRUE@@DX_COND_pdf_TRUE@ while $(DX_EGREP) 'Rerun (LaTeX|to get cross-references right)' \
826
+ @DX_COND_doc_TRUE@@DX_COND_pdf_TRUE@ refman.log > /dev/null 2>&1 \
827
+ @DX_COND_doc_TRUE@@DX_COND_pdf_TRUE@ && test $$countdown -gt 0; do \
828
+ @DX_COND_doc_TRUE@@DX_COND_pdf_TRUE@ $(DX_PDFLATEX) refman.tex; \
829
+ @DX_COND_doc_TRUE@@DX_COND_pdf_TRUE@ countdown=`expr $$countdown - 1`; \
830
+ @DX_COND_doc_TRUE@@DX_COND_pdf_TRUE@ done; \
831
+ @DX_COND_doc_TRUE@@DX_COND_pdf_TRUE@ mv refman.pdf ../@PACKAGE@.pdf
832
+
833
+ @DX_COND_doc_TRUE@.PHONY: doxygen-run doxygen-doc $(DX_PS_GOAL) $(DX_PDF_GOAL)
834
+
835
+ @DX_COND_doc_TRUE@.INTERMEDIATE: doxygen-run $(DX_PS_GOAL) $(DX_PDF_GOAL)
836
+
837
+ @DX_COND_doc_TRUE@doxygen-run: @DX_DOCDIR@/@PACKAGE@.tag
838
+
839
+ @DX_COND_doc_TRUE@doxygen-doc: doxygen-run $(DX_PS_GOAL) $(DX_PDF_GOAL)
840
+
841
+ @DX_COND_doc_TRUE@@DX_DOCDIR@/@PACKAGE@.tag: $(DX_CONFIG) $(pkginclude_HEADERS) $(DX_EXTRA_DEPEND)
842
+ @DX_COND_doc_TRUE@ rm -rf @DX_DOCDIR@
843
+ @DX_COND_doc_TRUE@ $(DX_ENV) $(DX_DOXYGEN) $(srcdir)/$(DX_CONFIG)
844
+
845
+ doc: doxygen-doc
846
+
847
+ rice/README.doxygen: README
848
+ @echo Generating documentation
849
+ @$(RUBY) -e 'File.open("README") { |i| File.open("rice/README.doxygen", "w") { |o| o.puts "/*! #{i.gets}"; i.each_line { |l| o.puts " * #{l}" if l !~ /^\\comment/ and l !~ /^vim:/ }; o.puts " */" } }'
850
+
851
+ # Tell versions [3.59,3.63) of GNU make to not export all variables.
852
+ # Otherwise a system limit (for SysV at least) may be exceeded.
853
+ .NOEXPORT: