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/ruby/Makefile.in ADDED
@@ -0,0 +1,569 @@
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
+ VPATH = @srcdir@
18
+ pkgdatadir = $(datadir)/@PACKAGE@
19
+ pkgincludedir = $(includedir)/@PACKAGE@
20
+ pkglibdir = $(libdir)/@PACKAGE@
21
+ pkglibexecdir = $(libexecdir)/@PACKAGE@
22
+ am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd
23
+ install_sh_DATA = $(install_sh) -c -m 644
24
+ install_sh_PROGRAM = $(install_sh) -c
25
+ install_sh_SCRIPT = $(install_sh) -c
26
+ INSTALL_HEADER = $(INSTALL_DATA)
27
+ transform = $(program_transform_name)
28
+ NORMAL_INSTALL = :
29
+ PRE_INSTALL = :
30
+ POST_INSTALL = :
31
+ NORMAL_UNINSTALL = :
32
+ PRE_UNINSTALL = :
33
+ POST_UNINSTALL = :
34
+ build_triplet = @build@
35
+ host_triplet = @host@
36
+ subdir = ruby
37
+ DIST_COMMON = $(srcdir)/Makefile.am $(srcdir)/Makefile.in
38
+ ACLOCAL_M4 = $(top_srcdir)/aclocal.m4
39
+ am__aclocal_m4_deps = $(top_srcdir)/ruby.ac $(top_srcdir)/doxygen.ac \
40
+ $(top_srcdir)/configure.ac
41
+ am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \
42
+ $(ACLOCAL_M4)
43
+ mkinstalldirs = $(install_sh) -d
44
+ CONFIG_HEADER = $(top_builddir)/rice/config.hpp
45
+ CONFIG_CLEAN_FILES =
46
+ CONFIG_CLEAN_VPATH_FILES =
47
+ SOURCES =
48
+ DIST_SOURCES =
49
+ RECURSIVE_TARGETS = all-recursive check-recursive dvi-recursive \
50
+ html-recursive info-recursive install-data-recursive \
51
+ install-dvi-recursive install-exec-recursive \
52
+ install-html-recursive install-info-recursive \
53
+ install-pdf-recursive install-ps-recursive install-recursive \
54
+ installcheck-recursive installdirs-recursive pdf-recursive \
55
+ ps-recursive uninstall-recursive
56
+ RECURSIVE_CLEAN_TARGETS = mostlyclean-recursive clean-recursive \
57
+ distclean-recursive maintainer-clean-recursive
58
+ AM_RECURSIVE_TARGETS = $(RECURSIVE_TARGETS:-recursive=) \
59
+ $(RECURSIVE_CLEAN_TARGETS:-recursive=) tags TAGS ctags CTAGS \
60
+ distdir
61
+ ETAGS = etags
62
+ CTAGS = ctags
63
+ DIST_SUBDIRS = $(SUBDIRS)
64
+ DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST)
65
+ am__relativize = \
66
+ dir0=`pwd`; \
67
+ sed_first='s,^\([^/]*\)/.*$$,\1,'; \
68
+ sed_rest='s,^[^/]*/*,,'; \
69
+ sed_last='s,^.*/\([^/]*\)$$,\1,'; \
70
+ sed_butlast='s,/*[^/]*$$,,'; \
71
+ while test -n "$$dir1"; do \
72
+ first=`echo "$$dir1" | sed -e "$$sed_first"`; \
73
+ if test "$$first" != "."; then \
74
+ if test "$$first" = ".."; then \
75
+ dir2=`echo "$$dir0" | sed -e "$$sed_last"`/"$$dir2"; \
76
+ dir0=`echo "$$dir0" | sed -e "$$sed_butlast"`; \
77
+ else \
78
+ first2=`echo "$$dir2" | sed -e "$$sed_first"`; \
79
+ if test "$$first2" = "$$first"; then \
80
+ dir2=`echo "$$dir2" | sed -e "$$sed_rest"`; \
81
+ else \
82
+ dir2="../$$dir2"; \
83
+ fi; \
84
+ dir0="$$dir0"/"$$first"; \
85
+ fi; \
86
+ fi; \
87
+ dir1=`echo "$$dir1" | sed -e "$$sed_rest"`; \
88
+ done; \
89
+ reldir="$$dir2"
90
+ ACLOCAL = @ACLOCAL@
91
+ AMTAR = @AMTAR@
92
+ AUTOCONF = @AUTOCONF@
93
+ AUTOHEADER = @AUTOHEADER@
94
+ AUTOMAKE = @AUTOMAKE@
95
+ AWK = @AWK@
96
+ CPPFLAGS = @CPPFLAGS@
97
+ CXX = @CXX@
98
+ CXXDEPMODE = @CXXDEPMODE@
99
+ CXXFLAGS = @CXXFLAGS@
100
+ CYGPATH_W = @CYGPATH_W@
101
+ DEFS = @DEFS@
102
+ DEPDIR = @DEPDIR@
103
+ DOXYGEN_PAPER_SIZE = @DOXYGEN_PAPER_SIZE@
104
+ DX_CONFIG = @DX_CONFIG@
105
+ DX_DOCDIR = @DX_DOCDIR@
106
+ DX_DOT = @DX_DOT@
107
+ DX_DOXYGEN = @DX_DOXYGEN@
108
+ DX_DVIPS = @DX_DVIPS@
109
+ DX_EGREP = @DX_EGREP@
110
+ DX_ENV = @DX_ENV@
111
+ DX_FLAG_chi = @DX_FLAG_chi@
112
+ DX_FLAG_chm = @DX_FLAG_chm@
113
+ DX_FLAG_doc = @DX_FLAG_doc@
114
+ DX_FLAG_dot = @DX_FLAG_dot@
115
+ DX_FLAG_html = @DX_FLAG_html@
116
+ DX_FLAG_man = @DX_FLAG_man@
117
+ DX_FLAG_pdf = @DX_FLAG_pdf@
118
+ DX_FLAG_ps = @DX_FLAG_ps@
119
+ DX_FLAG_rtf = @DX_FLAG_rtf@
120
+ DX_FLAG_xml = @DX_FLAG_xml@
121
+ DX_HHC = @DX_HHC@
122
+ DX_LATEX = @DX_LATEX@
123
+ DX_MAKEINDEX = @DX_MAKEINDEX@
124
+ DX_PDFLATEX = @DX_PDFLATEX@
125
+ DX_PERL = @DX_PERL@
126
+ DX_PROJECT = @DX_PROJECT@
127
+ ECHO_C = @ECHO_C@
128
+ ECHO_N = @ECHO_N@
129
+ ECHO_T = @ECHO_T@
130
+ EXEEXT = @EXEEXT@
131
+ INSTALL = @INSTALL@
132
+ INSTALL_DATA = @INSTALL_DATA@
133
+ INSTALL_PROGRAM = @INSTALL_PROGRAM@
134
+ INSTALL_SCRIPT = @INSTALL_SCRIPT@
135
+ INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@
136
+ LDFLAGS = @LDFLAGS@
137
+ LIBOBJS = @LIBOBJS@
138
+ LIBS = @LIBS@
139
+ LTLIBOBJS = @LTLIBOBJS@
140
+ MAKEINFO = @MAKEINFO@
141
+ MKDIR_P = @MKDIR_P@
142
+ OBJEXT = @OBJEXT@
143
+ PACKAGE = @PACKAGE@
144
+ PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@
145
+ PACKAGE_NAME = @PACKAGE_NAME@
146
+ PACKAGE_STRING = @PACKAGE_STRING@
147
+ PACKAGE_TARNAME = @PACKAGE_TARNAME@
148
+ PACKAGE_URL = @PACKAGE_URL@
149
+ PACKAGE_VERSION = @PACKAGE_VERSION@
150
+ PATH_SEPARATOR = @PATH_SEPARATOR@
151
+ RANLIB = @RANLIB@
152
+ RICE_CPPFLAGS = @RICE_CPPFLAGS@
153
+ RICE_LDFLAGS = @RICE_LDFLAGS@
154
+ RICE_ROOT = @RICE_ROOT@
155
+ RICE_SAMPLES = @RICE_SAMPLES@
156
+ RICE_USING_MINGW32 = @RICE_USING_MINGW32@
157
+ RUBY = @RUBY@
158
+ RUBY_CFLAGS = @RUBY_CFLAGS@
159
+ RUBY_CPPFLAGS = @RUBY_CPPFLAGS@
160
+ RUBY_CXXFLAGS = @RUBY_CXXFLAGS@
161
+ RUBY_LDFLAGS = @RUBY_LDFLAGS@
162
+ RUBY_LIBRUBYARG = @RUBY_LIBRUBYARG@
163
+ RUBY_LIBRUBYARG_STATIC = @RUBY_LIBRUBYARG_STATIC@
164
+ RUBY_LIBS = @RUBY_LIBS@
165
+ RUBY_SITELIBDIR = @RUBY_SITELIBDIR@
166
+ RUBY_VERSION_CODE = @RUBY_VERSION_CODE@
167
+ SET_MAKE = @SET_MAKE@
168
+ SHELL = @SHELL@
169
+ STRIP = @STRIP@
170
+ VERSION = @VERSION@
171
+ abs_builddir = @abs_builddir@
172
+ abs_srcdir = @abs_srcdir@
173
+ abs_top_builddir = @abs_top_builddir@
174
+ abs_top_srcdir = @abs_top_srcdir@
175
+ ac_ct_CXX = @ac_ct_CXX@
176
+ am__include = @am__include@
177
+ am__leading_dot = @am__leading_dot@
178
+ am__quote = @am__quote@
179
+ am__tar = @am__tar@
180
+ am__untar = @am__untar@
181
+ bindir = @bindir@
182
+ build = @build@
183
+ build_alias = @build_alias@
184
+ build_cpu = @build_cpu@
185
+ build_os = @build_os@
186
+ build_vendor = @build_vendor@
187
+ builddir = @builddir@
188
+ datadir = @datadir@
189
+ datarootdir = @datarootdir@
190
+ docdir = @docdir@
191
+ dvidir = @dvidir@
192
+ exec_prefix = @exec_prefix@
193
+ host = @host@
194
+ host_alias = @host_alias@
195
+ host_cpu = @host_cpu@
196
+ host_os = @host_os@
197
+ host_vendor = @host_vendor@
198
+ htmldir = @htmldir@
199
+ includedir = @includedir@
200
+ infodir = @infodir@
201
+ install_sh = @install_sh@
202
+ libdir = @libdir@
203
+ libexecdir = @libexecdir@
204
+ localedir = @localedir@
205
+ localstatedir = @localstatedir@
206
+ mandir = @mandir@
207
+ mkdir_p = @mkdir_p@
208
+ oldincludedir = @oldincludedir@
209
+ pdfdir = @pdfdir@
210
+ prefix = @prefix@
211
+ program_transform_name = @program_transform_name@
212
+ psdir = @psdir@
213
+ sbindir = @sbindir@
214
+ sharedstatedir = @sharedstatedir@
215
+ srcdir = @srcdir@
216
+ sysconfdir = @sysconfdir@
217
+ target_alias = @target_alias@
218
+ top_build_prefix = @top_build_prefix@
219
+ top_builddir = @top_builddir@
220
+ top_srcdir = @top_srcdir@
221
+ SUBDIRS = lib
222
+ all: all-recursive
223
+
224
+ .SUFFIXES:
225
+ $(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(am__configure_deps)
226
+ @for dep in $?; do \
227
+ case '$(am__configure_deps)' in \
228
+ *$$dep*) \
229
+ ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \
230
+ && { if test -f $@; then exit 0; else break; fi; }; \
231
+ exit 1;; \
232
+ esac; \
233
+ done; \
234
+ echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu ruby/Makefile'; \
235
+ $(am__cd) $(top_srcdir) && \
236
+ $(AUTOMAKE) --gnu ruby/Makefile
237
+ .PRECIOUS: Makefile
238
+ Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
239
+ @case '$?' in \
240
+ *config.status*) \
241
+ cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \
242
+ *) \
243
+ echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \
244
+ cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \
245
+ esac;
246
+
247
+ $(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES)
248
+ cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
249
+
250
+ $(top_srcdir)/configure: $(am__configure_deps)
251
+ cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
252
+ $(ACLOCAL_M4): $(am__aclocal_m4_deps)
253
+ cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
254
+ $(am__aclocal_m4_deps):
255
+
256
+ # This directory's subdirectories are mostly independent; you can cd
257
+ # into them and run `make' without going through this Makefile.
258
+ # To change the values of `make' variables: instead of editing Makefiles,
259
+ # (1) if the variable is set in `config.status', edit `config.status'
260
+ # (which will cause the Makefiles to be regenerated when you run `make');
261
+ # (2) otherwise, pass the desired values on the `make' command line.
262
+ $(RECURSIVE_TARGETS):
263
+ @fail= failcom='exit 1'; \
264
+ for f in x $$MAKEFLAGS; do \
265
+ case $$f in \
266
+ *=* | --[!k]*);; \
267
+ *k*) failcom='fail=yes';; \
268
+ esac; \
269
+ done; \
270
+ dot_seen=no; \
271
+ target=`echo $@ | sed s/-recursive//`; \
272
+ list='$(SUBDIRS)'; for subdir in $$list; do \
273
+ echo "Making $$target in $$subdir"; \
274
+ if test "$$subdir" = "."; then \
275
+ dot_seen=yes; \
276
+ local_target="$$target-am"; \
277
+ else \
278
+ local_target="$$target"; \
279
+ fi; \
280
+ ($(am__cd) $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$local_target) \
281
+ || eval $$failcom; \
282
+ done; \
283
+ if test "$$dot_seen" = "no"; then \
284
+ $(MAKE) $(AM_MAKEFLAGS) "$$target-am" || exit 1; \
285
+ fi; test -z "$$fail"
286
+
287
+ $(RECURSIVE_CLEAN_TARGETS):
288
+ @fail= failcom='exit 1'; \
289
+ for f in x $$MAKEFLAGS; do \
290
+ case $$f in \
291
+ *=* | --[!k]*);; \
292
+ *k*) failcom='fail=yes';; \
293
+ esac; \
294
+ done; \
295
+ dot_seen=no; \
296
+ case "$@" in \
297
+ distclean-* | maintainer-clean-*) list='$(DIST_SUBDIRS)' ;; \
298
+ *) list='$(SUBDIRS)' ;; \
299
+ esac; \
300
+ rev=''; for subdir in $$list; do \
301
+ if test "$$subdir" = "."; then :; else \
302
+ rev="$$subdir $$rev"; \
303
+ fi; \
304
+ done; \
305
+ rev="$$rev ."; \
306
+ target=`echo $@ | sed s/-recursive//`; \
307
+ for subdir in $$rev; do \
308
+ echo "Making $$target in $$subdir"; \
309
+ if test "$$subdir" = "."; then \
310
+ local_target="$$target-am"; \
311
+ else \
312
+ local_target="$$target"; \
313
+ fi; \
314
+ ($(am__cd) $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$local_target) \
315
+ || eval $$failcom; \
316
+ done && test -z "$$fail"
317
+ tags-recursive:
318
+ list='$(SUBDIRS)'; for subdir in $$list; do \
319
+ test "$$subdir" = . || ($(am__cd) $$subdir && $(MAKE) $(AM_MAKEFLAGS) tags); \
320
+ done
321
+ ctags-recursive:
322
+ list='$(SUBDIRS)'; for subdir in $$list; do \
323
+ test "$$subdir" = . || ($(am__cd) $$subdir && $(MAKE) $(AM_MAKEFLAGS) ctags); \
324
+ done
325
+
326
+ ID: $(HEADERS) $(SOURCES) $(LISP) $(TAGS_FILES)
327
+ list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \
328
+ unique=`for i in $$list; do \
329
+ if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
330
+ done | \
331
+ $(AWK) '{ files[$$0] = 1; nonempty = 1; } \
332
+ END { if (nonempty) { for (i in files) print i; }; }'`; \
333
+ mkid -fID $$unique
334
+ tags: TAGS
335
+
336
+ TAGS: tags-recursive $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \
337
+ $(TAGS_FILES) $(LISP)
338
+ set x; \
339
+ here=`pwd`; \
340
+ if ($(ETAGS) --etags-include --version) >/dev/null 2>&1; then \
341
+ include_option=--etags-include; \
342
+ empty_fix=.; \
343
+ else \
344
+ include_option=--include; \
345
+ empty_fix=; \
346
+ fi; \
347
+ list='$(SUBDIRS)'; for subdir in $$list; do \
348
+ if test "$$subdir" = .; then :; else \
349
+ test ! -f $$subdir/TAGS || \
350
+ set "$$@" "$$include_option=$$here/$$subdir/TAGS"; \
351
+ fi; \
352
+ done; \
353
+ list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \
354
+ unique=`for i in $$list; do \
355
+ if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
356
+ done | \
357
+ $(AWK) '{ files[$$0] = 1; nonempty = 1; } \
358
+ END { if (nonempty) { for (i in files) print i; }; }'`; \
359
+ shift; \
360
+ if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \
361
+ test -n "$$unique" || unique=$$empty_fix; \
362
+ if test $$# -gt 0; then \
363
+ $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \
364
+ "$$@" $$unique; \
365
+ else \
366
+ $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \
367
+ $$unique; \
368
+ fi; \
369
+ fi
370
+ ctags: CTAGS
371
+ CTAGS: ctags-recursive $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \
372
+ $(TAGS_FILES) $(LISP)
373
+ list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \
374
+ unique=`for i in $$list; do \
375
+ if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
376
+ done | \
377
+ $(AWK) '{ files[$$0] = 1; nonempty = 1; } \
378
+ END { if (nonempty) { for (i in files) print i; }; }'`; \
379
+ test -z "$(CTAGS_ARGS)$$unique" \
380
+ || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \
381
+ $$unique
382
+
383
+ GTAGS:
384
+ here=`$(am__cd) $(top_builddir) && pwd` \
385
+ && $(am__cd) $(top_srcdir) \
386
+ && gtags -i $(GTAGS_ARGS) "$$here"
387
+
388
+ distclean-tags:
389
+ -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags
390
+
391
+ distdir: $(DISTFILES)
392
+ @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
393
+ topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
394
+ list='$(DISTFILES)'; \
395
+ dist_files=`for file in $$list; do echo $$file; done | \
396
+ sed -e "s|^$$srcdirstrip/||;t" \
397
+ -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \
398
+ case $$dist_files in \
399
+ */*) eval $(MKDIR_P) `echo "$$dist_files" | \
400
+ sed '/\//!d;s|^|"$(distdir)"/|;s,/[^/]*$$,,' | \
401
+ sort -u` ;; \
402
+ esac; \
403
+ for file in $$dist_files; do \
404
+ if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \
405
+ if test -d $$d/$$file; then \
406
+ dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \
407
+ if test -d "$(distdir)/$$file"; then \
408
+ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \
409
+ fi; \
410
+ if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \
411
+ cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \
412
+ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \
413
+ fi; \
414
+ cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \
415
+ else \
416
+ test -f "$(distdir)/$$file" \
417
+ || cp -p $$d/$$file "$(distdir)/$$file" \
418
+ || exit 1; \
419
+ fi; \
420
+ done
421
+ @list='$(DIST_SUBDIRS)'; for subdir in $$list; do \
422
+ if test "$$subdir" = .; then :; else \
423
+ test -d "$(distdir)/$$subdir" \
424
+ || $(MKDIR_P) "$(distdir)/$$subdir" \
425
+ || exit 1; \
426
+ fi; \
427
+ done
428
+ @list='$(DIST_SUBDIRS)'; for subdir in $$list; do \
429
+ if test "$$subdir" = .; then :; else \
430
+ dir1=$$subdir; dir2="$(distdir)/$$subdir"; \
431
+ $(am__relativize); \
432
+ new_distdir=$$reldir; \
433
+ dir1=$$subdir; dir2="$(top_distdir)"; \
434
+ $(am__relativize); \
435
+ new_top_distdir=$$reldir; \
436
+ echo " (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) top_distdir="$$new_top_distdir" distdir="$$new_distdir" \\"; \
437
+ echo " am__remove_distdir=: am__skip_length_check=: am__skip_mode_fix=: distdir)"; \
438
+ ($(am__cd) $$subdir && \
439
+ $(MAKE) $(AM_MAKEFLAGS) \
440
+ top_distdir="$$new_top_distdir" \
441
+ distdir="$$new_distdir" \
442
+ am__remove_distdir=: \
443
+ am__skip_length_check=: \
444
+ am__skip_mode_fix=: \
445
+ distdir) \
446
+ || exit 1; \
447
+ fi; \
448
+ done
449
+ check-am: all-am
450
+ check: check-recursive
451
+ all-am: Makefile
452
+ installdirs: installdirs-recursive
453
+ installdirs-am:
454
+ install: install-recursive
455
+ install-exec: install-exec-recursive
456
+ install-data: install-data-recursive
457
+ uninstall: uninstall-recursive
458
+
459
+ install-am: all-am
460
+ @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am
461
+
462
+ installcheck: installcheck-recursive
463
+ install-strip:
464
+ if test -z '$(STRIP)'; then \
465
+ $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \
466
+ install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \
467
+ install; \
468
+ else \
469
+ $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \
470
+ install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \
471
+ "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'" install; \
472
+ fi
473
+ mostlyclean-generic:
474
+
475
+ clean-generic:
476
+
477
+ distclean-generic:
478
+ -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES)
479
+ -test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES)
480
+
481
+ maintainer-clean-generic:
482
+ @echo "This command is intended for maintainers to use"
483
+ @echo "it deletes files that may require special tools to rebuild."
484
+ clean: clean-recursive
485
+
486
+ clean-am: clean-generic mostlyclean-am
487
+
488
+ distclean: distclean-recursive
489
+ -rm -f Makefile
490
+ distclean-am: clean-am distclean-generic distclean-tags
491
+
492
+ dvi: dvi-recursive
493
+
494
+ dvi-am:
495
+
496
+ html: html-recursive
497
+
498
+ html-am:
499
+
500
+ info: info-recursive
501
+
502
+ info-am:
503
+
504
+ install-data-am:
505
+
506
+ install-dvi: install-dvi-recursive
507
+
508
+ install-dvi-am:
509
+
510
+ install-exec-am:
511
+
512
+ install-html: install-html-recursive
513
+
514
+ install-html-am:
515
+
516
+ install-info: install-info-recursive
517
+
518
+ install-info-am:
519
+
520
+ install-man:
521
+
522
+ install-pdf: install-pdf-recursive
523
+
524
+ install-pdf-am:
525
+
526
+ install-ps: install-ps-recursive
527
+
528
+ install-ps-am:
529
+
530
+ installcheck-am:
531
+
532
+ maintainer-clean: maintainer-clean-recursive
533
+ -rm -f Makefile
534
+ maintainer-clean-am: distclean-am maintainer-clean-generic
535
+
536
+ mostlyclean: mostlyclean-recursive
537
+
538
+ mostlyclean-am: mostlyclean-generic
539
+
540
+ pdf: pdf-recursive
541
+
542
+ pdf-am:
543
+
544
+ ps: ps-recursive
545
+
546
+ ps-am:
547
+
548
+ uninstall-am:
549
+
550
+ .MAKE: $(RECURSIVE_CLEAN_TARGETS) $(RECURSIVE_TARGETS) ctags-recursive \
551
+ install-am install-strip tags-recursive
552
+
553
+ .PHONY: $(RECURSIVE_CLEAN_TARGETS) $(RECURSIVE_TARGETS) CTAGS GTAGS \
554
+ all all-am check check-am clean clean-generic ctags \
555
+ ctags-recursive distclean distclean-generic distclean-tags \
556
+ distdir dvi dvi-am html html-am info info-am install \
557
+ install-am install-data install-data-am install-dvi \
558
+ install-dvi-am install-exec install-exec-am install-html \
559
+ install-html-am install-info install-info-am install-man \
560
+ install-pdf install-pdf-am install-ps install-ps-am \
561
+ install-strip installcheck installcheck-am installdirs \
562
+ installdirs-am maintainer-clean maintainer-clean-generic \
563
+ mostlyclean mostlyclean-generic pdf pdf-am ps ps-am tags \
564
+ tags-recursive uninstall uninstall-am
565
+
566
+
567
+ # Tell versions [3.59,3.63) of GNU make to not export all variables.
568
+ # Otherwise a system limit (for SysV at least) may be exceeded.
569
+ .NOEXPORT:
@@ -0,0 +1,3 @@
1
+ rubydir = @RUBY_SITELIBDIR@
2
+
3
+ ruby_DATA = mkmf-rice.rb