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/test/Makefile.in ADDED
@@ -0,0 +1,820 @@
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
+ VPATH = @srcdir@
19
+ pkgdatadir = $(datadir)/@PACKAGE@
20
+ pkgincludedir = $(includedir)/@PACKAGE@
21
+ pkglibdir = $(libdir)/@PACKAGE@
22
+ pkglibexecdir = $(libexecdir)/@PACKAGE@
23
+ am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd
24
+ install_sh_DATA = $(install_sh) -c -m 644
25
+ install_sh_PROGRAM = $(install_sh) -c
26
+ install_sh_SCRIPT = $(install_sh) -c
27
+ INSTALL_HEADER = $(INSTALL_DATA)
28
+ transform = $(program_transform_name)
29
+ NORMAL_INSTALL = :
30
+ PRE_INSTALL = :
31
+ POST_INSTALL = :
32
+ NORMAL_UNINSTALL = :
33
+ PRE_UNINSTALL = :
34
+ POST_UNINSTALL = :
35
+ build_triplet = @build@
36
+ host_triplet = @host@
37
+ noinst_PROGRAMS = unittest$(EXEEXT) vm_unittest$(EXEEXT)
38
+ TESTS = unittest$(EXEEXT) vm_unittest$(EXEEXT)
39
+ subdir = test
40
+ DIST_COMMON = $(srcdir)/Makefile.am $(srcdir)/Makefile.in
41
+ ACLOCAL_M4 = $(top_srcdir)/aclocal.m4
42
+ am__aclocal_m4_deps = $(top_srcdir)/ruby.ac $(top_srcdir)/doxygen.ac \
43
+ $(top_srcdir)/configure.ac
44
+ am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \
45
+ $(ACLOCAL_M4)
46
+ mkinstalldirs = $(install_sh) -d
47
+ CONFIG_HEADER = $(top_builddir)/rice/config.hpp
48
+ CONFIG_CLEAN_FILES =
49
+ CONFIG_CLEAN_VPATH_FILES =
50
+ PROGRAMS = $(noinst_PROGRAMS)
51
+ am_unittest_OBJECTS = unittest.$(OBJEXT) \
52
+ test_Address_Registration_Guard.$(OBJEXT) test_Array.$(OBJEXT) \
53
+ test_Builtin_Object.$(OBJEXT) test_Class.$(OBJEXT) \
54
+ test_Constructor.$(OBJEXT) test_Critical_Guard.$(OBJEXT) \
55
+ test_Data_Object.$(OBJEXT) test_Data_Type.$(OBJEXT) \
56
+ test_Director.$(OBJEXT) test_Enum.$(OBJEXT) \
57
+ test_Exception.$(OBJEXT) test_Hash.$(OBJEXT) \
58
+ test_Identifier.$(OBJEXT) test_Jump_Tag.$(OBJEXT) \
59
+ test_Memory_Management.$(OBJEXT) test_Module.$(OBJEXT) \
60
+ test_Object.$(OBJEXT) test_String.$(OBJEXT) \
61
+ test_Struct.$(OBJEXT) test_Symbol.$(OBJEXT) \
62
+ test_To_From_Ruby.$(OBJEXT) test_global_functions.$(OBJEXT)
63
+ unittest_OBJECTS = $(am_unittest_OBJECTS)
64
+ unittest_LDADD = $(LDADD)
65
+ am_vm_unittest_OBJECTS = unittest.$(OBJEXT) test_VM.$(OBJEXT)
66
+ vm_unittest_OBJECTS = $(am_vm_unittest_OBJECTS)
67
+ vm_unittest_LDADD = $(LDADD)
68
+ DEFAULT_INCLUDES = -I.@am__isrc@ -I$(top_builddir)/rice
69
+ depcomp = $(SHELL) $(top_srcdir)/depcomp
70
+ am__depfiles_maybe = depfiles
71
+ am__mv = mv -f
72
+ CXXCOMPILE = $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) \
73
+ $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS)
74
+ CXXLD = $(CXX)
75
+ CXXLINK = $(CXXLD) $(AM_CXXFLAGS) $(CXXFLAGS) $(AM_LDFLAGS) $(LDFLAGS) \
76
+ -o $@
77
+ SOURCES = $(unittest_SOURCES) $(vm_unittest_SOURCES)
78
+ DIST_SOURCES = $(unittest_SOURCES) $(vm_unittest_SOURCES)
79
+ RECURSIVE_TARGETS = all-recursive check-recursive dvi-recursive \
80
+ html-recursive info-recursive install-data-recursive \
81
+ install-dvi-recursive install-exec-recursive \
82
+ install-html-recursive install-info-recursive \
83
+ install-pdf-recursive install-ps-recursive install-recursive \
84
+ installcheck-recursive installdirs-recursive pdf-recursive \
85
+ ps-recursive uninstall-recursive
86
+ RECURSIVE_CLEAN_TARGETS = mostlyclean-recursive clean-recursive \
87
+ distclean-recursive maintainer-clean-recursive
88
+ AM_RECURSIVE_TARGETS = $(RECURSIVE_TARGETS:-recursive=) \
89
+ $(RECURSIVE_CLEAN_TARGETS:-recursive=) tags TAGS ctags CTAGS \
90
+ distdir
91
+ ETAGS = etags
92
+ CTAGS = ctags
93
+ am__tty_colors = \
94
+ red=; grn=; lgn=; blu=; std=
95
+ DIST_SUBDIRS = $(SUBDIRS)
96
+ DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST)
97
+ am__relativize = \
98
+ dir0=`pwd`; \
99
+ sed_first='s,^\([^/]*\)/.*$$,\1,'; \
100
+ sed_rest='s,^[^/]*/*,,'; \
101
+ sed_last='s,^.*/\([^/]*\)$$,\1,'; \
102
+ sed_butlast='s,/*[^/]*$$,,'; \
103
+ while test -n "$$dir1"; do \
104
+ first=`echo "$$dir1" | sed -e "$$sed_first"`; \
105
+ if test "$$first" != "."; then \
106
+ if test "$$first" = ".."; then \
107
+ dir2=`echo "$$dir0" | sed -e "$$sed_last"`/"$$dir2"; \
108
+ dir0=`echo "$$dir0" | sed -e "$$sed_butlast"`; \
109
+ else \
110
+ first2=`echo "$$dir2" | sed -e "$$sed_first"`; \
111
+ if test "$$first2" = "$$first"; then \
112
+ dir2=`echo "$$dir2" | sed -e "$$sed_rest"`; \
113
+ else \
114
+ dir2="../$$dir2"; \
115
+ fi; \
116
+ dir0="$$dir0"/"$$first"; \
117
+ fi; \
118
+ fi; \
119
+ dir1=`echo "$$dir1" | sed -e "$$sed_rest"`; \
120
+ done; \
121
+ reldir="$$dir2"
122
+ ACLOCAL = @ACLOCAL@
123
+ AMTAR = @AMTAR@
124
+ AUTOCONF = @AUTOCONF@
125
+ AUTOHEADER = @AUTOHEADER@
126
+ AUTOMAKE = @AUTOMAKE@
127
+ AWK = @AWK@
128
+ CPPFLAGS = @CPPFLAGS@
129
+ CXX = @CXX@
130
+ CXXDEPMODE = @CXXDEPMODE@
131
+ CXXFLAGS = @CXXFLAGS@
132
+ CYGPATH_W = @CYGPATH_W@
133
+ DEFS = @DEFS@
134
+ DEPDIR = @DEPDIR@
135
+ DOXYGEN_PAPER_SIZE = @DOXYGEN_PAPER_SIZE@
136
+ DX_CONFIG = @DX_CONFIG@
137
+ DX_DOCDIR = @DX_DOCDIR@
138
+ DX_DOT = @DX_DOT@
139
+ DX_DOXYGEN = @DX_DOXYGEN@
140
+ DX_DVIPS = @DX_DVIPS@
141
+ DX_EGREP = @DX_EGREP@
142
+ DX_ENV = @DX_ENV@
143
+ DX_FLAG_chi = @DX_FLAG_chi@
144
+ DX_FLAG_chm = @DX_FLAG_chm@
145
+ DX_FLAG_doc = @DX_FLAG_doc@
146
+ DX_FLAG_dot = @DX_FLAG_dot@
147
+ DX_FLAG_html = @DX_FLAG_html@
148
+ DX_FLAG_man = @DX_FLAG_man@
149
+ DX_FLAG_pdf = @DX_FLAG_pdf@
150
+ DX_FLAG_ps = @DX_FLAG_ps@
151
+ DX_FLAG_rtf = @DX_FLAG_rtf@
152
+ DX_FLAG_xml = @DX_FLAG_xml@
153
+ DX_HHC = @DX_HHC@
154
+ DX_LATEX = @DX_LATEX@
155
+ DX_MAKEINDEX = @DX_MAKEINDEX@
156
+ DX_PDFLATEX = @DX_PDFLATEX@
157
+ DX_PERL = @DX_PERL@
158
+ DX_PROJECT = @DX_PROJECT@
159
+ ECHO_C = @ECHO_C@
160
+ ECHO_N = @ECHO_N@
161
+ ECHO_T = @ECHO_T@
162
+ EXEEXT = @EXEEXT@
163
+ INSTALL = @INSTALL@
164
+ INSTALL_DATA = @INSTALL_DATA@
165
+ INSTALL_PROGRAM = @INSTALL_PROGRAM@
166
+ INSTALL_SCRIPT = @INSTALL_SCRIPT@
167
+ INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@
168
+ LDFLAGS = @LDFLAGS@
169
+ LIBOBJS = @LIBOBJS@
170
+ LIBS = \
171
+ -lrice \
172
+ $(RUBY_LIBS) \
173
+ $(RUBY_LIBRUBYARG)
174
+
175
+ LTLIBOBJS = @LTLIBOBJS@
176
+ MAKEINFO = @MAKEINFO@
177
+ MKDIR_P = @MKDIR_P@
178
+ OBJEXT = @OBJEXT@
179
+ PACKAGE = @PACKAGE@
180
+ PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@
181
+ PACKAGE_NAME = @PACKAGE_NAME@
182
+ PACKAGE_STRING = @PACKAGE_STRING@
183
+ PACKAGE_TARNAME = @PACKAGE_TARNAME@
184
+ PACKAGE_URL = @PACKAGE_URL@
185
+ PACKAGE_VERSION = @PACKAGE_VERSION@
186
+ PATH_SEPARATOR = @PATH_SEPARATOR@
187
+ RANLIB = @RANLIB@
188
+ RICE_CPPFLAGS = @RICE_CPPFLAGS@
189
+ RICE_LDFLAGS = @RICE_LDFLAGS@
190
+ RICE_ROOT = @RICE_ROOT@
191
+ RICE_SAMPLES = @RICE_SAMPLES@
192
+ RICE_USING_MINGW32 = @RICE_USING_MINGW32@
193
+ RUBY = @RUBY@
194
+ RUBY_CFLAGS = @RUBY_CFLAGS@
195
+ RUBY_CPPFLAGS = @RUBY_CPPFLAGS@
196
+ RUBY_CXXFLAGS = @RUBY_CXXFLAGS@
197
+ RUBY_LDFLAGS = @RUBY_LDFLAGS@
198
+ RUBY_LIBRUBYARG = @RUBY_LIBRUBYARG@
199
+ RUBY_LIBRUBYARG_STATIC = @RUBY_LIBRUBYARG_STATIC@
200
+ RUBY_LIBS = @RUBY_LIBS@
201
+ RUBY_SITELIBDIR = @RUBY_SITELIBDIR@
202
+ RUBY_VERSION_CODE = @RUBY_VERSION_CODE@
203
+ SET_MAKE = @SET_MAKE@
204
+ SHELL = @SHELL@
205
+ STRIP = @STRIP@
206
+ VERSION = @VERSION@
207
+ abs_builddir = @abs_builddir@
208
+ abs_srcdir = @abs_srcdir@
209
+ abs_top_builddir = @abs_top_builddir@
210
+ abs_top_srcdir = @abs_top_srcdir@
211
+ ac_ct_CXX = @ac_ct_CXX@
212
+ am__include = @am__include@
213
+ am__leading_dot = @am__leading_dot@
214
+ am__quote = @am__quote@
215
+ am__tar = @am__tar@
216
+ am__untar = @am__untar@
217
+ bindir = @bindir@
218
+ build = @build@
219
+ build_alias = @build_alias@
220
+ build_cpu = @build_cpu@
221
+ build_os = @build_os@
222
+ build_vendor = @build_vendor@
223
+ builddir = @builddir@
224
+ datadir = @datadir@
225
+ datarootdir = @datarootdir@
226
+ docdir = @docdir@
227
+ dvidir = @dvidir@
228
+ exec_prefix = @exec_prefix@
229
+ host = @host@
230
+ host_alias = @host_alias@
231
+ host_cpu = @host_cpu@
232
+ host_os = @host_os@
233
+ host_vendor = @host_vendor@
234
+ htmldir = @htmldir@
235
+ includedir = @includedir@
236
+ infodir = @infodir@
237
+ install_sh = @install_sh@
238
+ libdir = @libdir@
239
+ libexecdir = @libexecdir@
240
+ localedir = @localedir@
241
+ localstatedir = @localstatedir@
242
+ mandir = @mandir@
243
+ mkdir_p = @mkdir_p@
244
+ oldincludedir = @oldincludedir@
245
+ pdfdir = @pdfdir@
246
+ prefix = @prefix@
247
+ program_transform_name = @program_transform_name@
248
+ psdir = @psdir@
249
+ sbindir = @sbindir@
250
+ sharedstatedir = @sharedstatedir@
251
+ srcdir = @srcdir@
252
+ sysconfdir = @sysconfdir@
253
+ target_alias = @target_alias@
254
+ top_build_prefix = @top_build_prefix@
255
+ top_builddir = @top_builddir@
256
+ top_srcdir = @top_srcdir@
257
+ SUBDIRS = ext
258
+ unittest_SOURCES = \
259
+ unittest.cpp \
260
+ test_Address_Registration_Guard.cpp \
261
+ test_Array.cpp \
262
+ test_Builtin_Object.cpp \
263
+ test_Class.cpp \
264
+ test_Constructor.cpp \
265
+ test_Critical_Guard.cpp \
266
+ test_Data_Object.cpp \
267
+ test_Data_Type.cpp \
268
+ test_Director.cpp \
269
+ test_Enum.cpp \
270
+ test_Exception.cpp \
271
+ test_Hash.cpp \
272
+ test_Identifier.cpp \
273
+ test_Jump_Tag.cpp \
274
+ test_Memory_Management.cpp \
275
+ test_Module.cpp \
276
+ test_Object.cpp \
277
+ test_String.cpp \
278
+ test_Struct.cpp \
279
+ test_Symbol.cpp \
280
+ test_To_From_Ruby.cpp \
281
+ test_global_functions.cpp
282
+
283
+ vm_unittest_SOURCES = \
284
+ unittest.cpp \
285
+ test_VM.cpp
286
+
287
+ AM_CPPFLAGS = \
288
+ -I.. \
289
+ $(RUBY_CFLAGS)
290
+
291
+ AM_CXXLAGS = \
292
+ $(RUBY_CXXFLAGS)
293
+
294
+ AM_LDFLAGS = \
295
+ $(RUBY_LDFLAGS) \
296
+ -L../rice
297
+
298
+ all: all-recursive
299
+
300
+ .SUFFIXES:
301
+ .SUFFIXES: .cpp .o .obj
302
+ $(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(am__configure_deps)
303
+ @for dep in $?; do \
304
+ case '$(am__configure_deps)' in \
305
+ *$$dep*) \
306
+ ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \
307
+ && { if test -f $@; then exit 0; else break; fi; }; \
308
+ exit 1;; \
309
+ esac; \
310
+ done; \
311
+ echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu test/Makefile'; \
312
+ $(am__cd) $(top_srcdir) && \
313
+ $(AUTOMAKE) --gnu test/Makefile
314
+ .PRECIOUS: Makefile
315
+ Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
316
+ @case '$?' in \
317
+ *config.status*) \
318
+ cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \
319
+ *) \
320
+ echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \
321
+ cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \
322
+ esac;
323
+
324
+ $(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES)
325
+ cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
326
+
327
+ $(top_srcdir)/configure: $(am__configure_deps)
328
+ cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
329
+ $(ACLOCAL_M4): $(am__aclocal_m4_deps)
330
+ cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
331
+ $(am__aclocal_m4_deps):
332
+
333
+ clean-noinstPROGRAMS:
334
+ -test -z "$(noinst_PROGRAMS)" || rm -f $(noinst_PROGRAMS)
335
+ unittest$(EXEEXT): $(unittest_OBJECTS) $(unittest_DEPENDENCIES) $(EXTRA_unittest_DEPENDENCIES)
336
+ @rm -f unittest$(EXEEXT)
337
+ $(CXXLINK) $(unittest_OBJECTS) $(unittest_LDADD) $(LIBS)
338
+ vm_unittest$(EXEEXT): $(vm_unittest_OBJECTS) $(vm_unittest_DEPENDENCIES) $(EXTRA_vm_unittest_DEPENDENCIES)
339
+ @rm -f vm_unittest$(EXEEXT)
340
+ $(CXXLINK) $(vm_unittest_OBJECTS) $(vm_unittest_LDADD) $(LIBS)
341
+
342
+ mostlyclean-compile:
343
+ -rm -f *.$(OBJEXT)
344
+
345
+ distclean-compile:
346
+ -rm -f *.tab.c
347
+
348
+ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/test_Address_Registration_Guard.Po@am__quote@
349
+ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/test_Array.Po@am__quote@
350
+ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/test_Builtin_Object.Po@am__quote@
351
+ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/test_Class.Po@am__quote@
352
+ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/test_Constructor.Po@am__quote@
353
+ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/test_Critical_Guard.Po@am__quote@
354
+ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/test_Data_Object.Po@am__quote@
355
+ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/test_Data_Type.Po@am__quote@
356
+ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/test_Director.Po@am__quote@
357
+ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/test_Enum.Po@am__quote@
358
+ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/test_Exception.Po@am__quote@
359
+ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/test_Hash.Po@am__quote@
360
+ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/test_Identifier.Po@am__quote@
361
+ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/test_Jump_Tag.Po@am__quote@
362
+ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/test_Memory_Management.Po@am__quote@
363
+ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/test_Module.Po@am__quote@
364
+ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/test_Object.Po@am__quote@
365
+ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/test_String.Po@am__quote@
366
+ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/test_Struct.Po@am__quote@
367
+ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/test_Symbol.Po@am__quote@
368
+ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/test_To_From_Ruby.Po@am__quote@
369
+ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/test_VM.Po@am__quote@
370
+ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/test_global_functions.Po@am__quote@
371
+ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/unittest.Po@am__quote@
372
+
373
+ .cpp.o:
374
+ @am__fastdepCXX_TRUE@ $(CXXCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $<
375
+ @am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po
376
+ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@
377
+ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
378
+ @am__fastdepCXX_FALSE@ $(CXXCOMPILE) -c -o $@ $<
379
+
380
+ .cpp.obj:
381
+ @am__fastdepCXX_TRUE@ $(CXXCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ `$(CYGPATH_W) '$<'`
382
+ @am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po
383
+ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@
384
+ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
385
+ @am__fastdepCXX_FALSE@ $(CXXCOMPILE) -c -o $@ `$(CYGPATH_W) '$<'`
386
+
387
+ # This directory's subdirectories are mostly independent; you can cd
388
+ # into them and run `make' without going through this Makefile.
389
+ # To change the values of `make' variables: instead of editing Makefiles,
390
+ # (1) if the variable is set in `config.status', edit `config.status'
391
+ # (which will cause the Makefiles to be regenerated when you run `make');
392
+ # (2) otherwise, pass the desired values on the `make' command line.
393
+ $(RECURSIVE_TARGETS):
394
+ @fail= failcom='exit 1'; \
395
+ for f in x $$MAKEFLAGS; do \
396
+ case $$f in \
397
+ *=* | --[!k]*);; \
398
+ *k*) failcom='fail=yes';; \
399
+ esac; \
400
+ done; \
401
+ dot_seen=no; \
402
+ target=`echo $@ | sed s/-recursive//`; \
403
+ list='$(SUBDIRS)'; for subdir in $$list; do \
404
+ echo "Making $$target in $$subdir"; \
405
+ if test "$$subdir" = "."; then \
406
+ dot_seen=yes; \
407
+ local_target="$$target-am"; \
408
+ else \
409
+ local_target="$$target"; \
410
+ fi; \
411
+ ($(am__cd) $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$local_target) \
412
+ || eval $$failcom; \
413
+ done; \
414
+ if test "$$dot_seen" = "no"; then \
415
+ $(MAKE) $(AM_MAKEFLAGS) "$$target-am" || exit 1; \
416
+ fi; test -z "$$fail"
417
+
418
+ $(RECURSIVE_CLEAN_TARGETS):
419
+ @fail= failcom='exit 1'; \
420
+ for f in x $$MAKEFLAGS; do \
421
+ case $$f in \
422
+ *=* | --[!k]*);; \
423
+ *k*) failcom='fail=yes';; \
424
+ esac; \
425
+ done; \
426
+ dot_seen=no; \
427
+ case "$@" in \
428
+ distclean-* | maintainer-clean-*) list='$(DIST_SUBDIRS)' ;; \
429
+ *) list='$(SUBDIRS)' ;; \
430
+ esac; \
431
+ rev=''; for subdir in $$list; do \
432
+ if test "$$subdir" = "."; then :; else \
433
+ rev="$$subdir $$rev"; \
434
+ fi; \
435
+ done; \
436
+ rev="$$rev ."; \
437
+ target=`echo $@ | sed s/-recursive//`; \
438
+ for subdir in $$rev; do \
439
+ echo "Making $$target in $$subdir"; \
440
+ if test "$$subdir" = "."; then \
441
+ local_target="$$target-am"; \
442
+ else \
443
+ local_target="$$target"; \
444
+ fi; \
445
+ ($(am__cd) $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$local_target) \
446
+ || eval $$failcom; \
447
+ done && test -z "$$fail"
448
+ tags-recursive:
449
+ list='$(SUBDIRS)'; for subdir in $$list; do \
450
+ test "$$subdir" = . || ($(am__cd) $$subdir && $(MAKE) $(AM_MAKEFLAGS) tags); \
451
+ done
452
+ ctags-recursive:
453
+ list='$(SUBDIRS)'; for subdir in $$list; do \
454
+ test "$$subdir" = . || ($(am__cd) $$subdir && $(MAKE) $(AM_MAKEFLAGS) ctags); \
455
+ done
456
+
457
+ ID: $(HEADERS) $(SOURCES) $(LISP) $(TAGS_FILES)
458
+ list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \
459
+ unique=`for i in $$list; do \
460
+ if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
461
+ done | \
462
+ $(AWK) '{ files[$$0] = 1; nonempty = 1; } \
463
+ END { if (nonempty) { for (i in files) print i; }; }'`; \
464
+ mkid -fID $$unique
465
+ tags: TAGS
466
+
467
+ TAGS: tags-recursive $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \
468
+ $(TAGS_FILES) $(LISP)
469
+ set x; \
470
+ here=`pwd`; \
471
+ if ($(ETAGS) --etags-include --version) >/dev/null 2>&1; then \
472
+ include_option=--etags-include; \
473
+ empty_fix=.; \
474
+ else \
475
+ include_option=--include; \
476
+ empty_fix=; \
477
+ fi; \
478
+ list='$(SUBDIRS)'; for subdir in $$list; do \
479
+ if test "$$subdir" = .; then :; else \
480
+ test ! -f $$subdir/TAGS || \
481
+ set "$$@" "$$include_option=$$here/$$subdir/TAGS"; \
482
+ fi; \
483
+ done; \
484
+ list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \
485
+ unique=`for i in $$list; do \
486
+ if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
487
+ done | \
488
+ $(AWK) '{ files[$$0] = 1; nonempty = 1; } \
489
+ END { if (nonempty) { for (i in files) print i; }; }'`; \
490
+ shift; \
491
+ if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \
492
+ test -n "$$unique" || unique=$$empty_fix; \
493
+ if test $$# -gt 0; then \
494
+ $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \
495
+ "$$@" $$unique; \
496
+ else \
497
+ $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \
498
+ $$unique; \
499
+ fi; \
500
+ fi
501
+ ctags: CTAGS
502
+ CTAGS: ctags-recursive $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \
503
+ $(TAGS_FILES) $(LISP)
504
+ list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \
505
+ unique=`for i in $$list; do \
506
+ if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
507
+ done | \
508
+ $(AWK) '{ files[$$0] = 1; nonempty = 1; } \
509
+ END { if (nonempty) { for (i in files) print i; }; }'`; \
510
+ test -z "$(CTAGS_ARGS)$$unique" \
511
+ || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \
512
+ $$unique
513
+
514
+ GTAGS:
515
+ here=`$(am__cd) $(top_builddir) && pwd` \
516
+ && $(am__cd) $(top_srcdir) \
517
+ && gtags -i $(GTAGS_ARGS) "$$here"
518
+
519
+ distclean-tags:
520
+ -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags
521
+
522
+ check-TESTS: $(TESTS)
523
+ @failed=0; all=0; xfail=0; xpass=0; skip=0; \
524
+ srcdir=$(srcdir); export srcdir; \
525
+ list=' $(TESTS) '; \
526
+ $(am__tty_colors); \
527
+ if test -n "$$list"; then \
528
+ for tst in $$list; do \
529
+ if test -f ./$$tst; then dir=./; \
530
+ elif test -f $$tst; then dir=; \
531
+ else dir="$(srcdir)/"; fi; \
532
+ if $(TESTS_ENVIRONMENT) $${dir}$$tst; then \
533
+ all=`expr $$all + 1`; \
534
+ case " $(XFAIL_TESTS) " in \
535
+ *[\ \ ]$$tst[\ \ ]*) \
536
+ xpass=`expr $$xpass + 1`; \
537
+ failed=`expr $$failed + 1`; \
538
+ col=$$red; res=XPASS; \
539
+ ;; \
540
+ *) \
541
+ col=$$grn; res=PASS; \
542
+ ;; \
543
+ esac; \
544
+ elif test $$? -ne 77; then \
545
+ all=`expr $$all + 1`; \
546
+ case " $(XFAIL_TESTS) " in \
547
+ *[\ \ ]$$tst[\ \ ]*) \
548
+ xfail=`expr $$xfail + 1`; \
549
+ col=$$lgn; res=XFAIL; \
550
+ ;; \
551
+ *) \
552
+ failed=`expr $$failed + 1`; \
553
+ col=$$red; res=FAIL; \
554
+ ;; \
555
+ esac; \
556
+ else \
557
+ skip=`expr $$skip + 1`; \
558
+ col=$$blu; res=SKIP; \
559
+ fi; \
560
+ echo "$${col}$$res$${std}: $$tst"; \
561
+ done; \
562
+ if test "$$all" -eq 1; then \
563
+ tests="test"; \
564
+ All=""; \
565
+ else \
566
+ tests="tests"; \
567
+ All="All "; \
568
+ fi; \
569
+ if test "$$failed" -eq 0; then \
570
+ if test "$$xfail" -eq 0; then \
571
+ banner="$$All$$all $$tests passed"; \
572
+ else \
573
+ if test "$$xfail" -eq 1; then failures=failure; else failures=failures; fi; \
574
+ banner="$$All$$all $$tests behaved as expected ($$xfail expected $$failures)"; \
575
+ fi; \
576
+ else \
577
+ if test "$$xpass" -eq 0; then \
578
+ banner="$$failed of $$all $$tests failed"; \
579
+ else \
580
+ if test "$$xpass" -eq 1; then passes=pass; else passes=passes; fi; \
581
+ banner="$$failed of $$all $$tests did not behave as expected ($$xpass unexpected $$passes)"; \
582
+ fi; \
583
+ fi; \
584
+ dashes="$$banner"; \
585
+ skipped=""; \
586
+ if test "$$skip" -ne 0; then \
587
+ if test "$$skip" -eq 1; then \
588
+ skipped="($$skip test was not run)"; \
589
+ else \
590
+ skipped="($$skip tests were not run)"; \
591
+ fi; \
592
+ test `echo "$$skipped" | wc -c` -le `echo "$$banner" | wc -c` || \
593
+ dashes="$$skipped"; \
594
+ fi; \
595
+ report=""; \
596
+ if test "$$failed" -ne 0 && test -n "$(PACKAGE_BUGREPORT)"; then \
597
+ report="Please report to $(PACKAGE_BUGREPORT)"; \
598
+ test `echo "$$report" | wc -c` -le `echo "$$banner" | wc -c` || \
599
+ dashes="$$report"; \
600
+ fi; \
601
+ dashes=`echo "$$dashes" | sed s/./=/g`; \
602
+ if test "$$failed" -eq 0; then \
603
+ col="$$grn"; \
604
+ else \
605
+ col="$$red"; \
606
+ fi; \
607
+ echo "$${col}$$dashes$${std}"; \
608
+ echo "$${col}$$banner$${std}"; \
609
+ test -z "$$skipped" || echo "$${col}$$skipped$${std}"; \
610
+ test -z "$$report" || echo "$${col}$$report$${std}"; \
611
+ echo "$${col}$$dashes$${std}"; \
612
+ test "$$failed" -eq 0; \
613
+ else :; fi
614
+
615
+ distdir: $(DISTFILES)
616
+ @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
617
+ topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
618
+ list='$(DISTFILES)'; \
619
+ dist_files=`for file in $$list; do echo $$file; done | \
620
+ sed -e "s|^$$srcdirstrip/||;t" \
621
+ -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \
622
+ case $$dist_files in \
623
+ */*) eval $(MKDIR_P) `echo "$$dist_files" | \
624
+ sed '/\//!d;s|^|"$(distdir)"/|;s,/[^/]*$$,,' | \
625
+ sort -u` ;; \
626
+ esac; \
627
+ for file in $$dist_files; do \
628
+ if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \
629
+ if test -d $$d/$$file; then \
630
+ dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \
631
+ if test -d "$(distdir)/$$file"; then \
632
+ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \
633
+ fi; \
634
+ if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \
635
+ cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \
636
+ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \
637
+ fi; \
638
+ cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \
639
+ else \
640
+ test -f "$(distdir)/$$file" \
641
+ || cp -p $$d/$$file "$(distdir)/$$file" \
642
+ || exit 1; \
643
+ fi; \
644
+ done
645
+ @list='$(DIST_SUBDIRS)'; for subdir in $$list; do \
646
+ if test "$$subdir" = .; then :; else \
647
+ test -d "$(distdir)/$$subdir" \
648
+ || $(MKDIR_P) "$(distdir)/$$subdir" \
649
+ || exit 1; \
650
+ fi; \
651
+ done
652
+ @list='$(DIST_SUBDIRS)'; for subdir in $$list; do \
653
+ if test "$$subdir" = .; then :; else \
654
+ dir1=$$subdir; dir2="$(distdir)/$$subdir"; \
655
+ $(am__relativize); \
656
+ new_distdir=$$reldir; \
657
+ dir1=$$subdir; dir2="$(top_distdir)"; \
658
+ $(am__relativize); \
659
+ new_top_distdir=$$reldir; \
660
+ echo " (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) top_distdir="$$new_top_distdir" distdir="$$new_distdir" \\"; \
661
+ echo " am__remove_distdir=: am__skip_length_check=: am__skip_mode_fix=: distdir)"; \
662
+ ($(am__cd) $$subdir && \
663
+ $(MAKE) $(AM_MAKEFLAGS) \
664
+ top_distdir="$$new_top_distdir" \
665
+ distdir="$$new_distdir" \
666
+ am__remove_distdir=: \
667
+ am__skip_length_check=: \
668
+ am__skip_mode_fix=: \
669
+ distdir) \
670
+ || exit 1; \
671
+ fi; \
672
+ done
673
+ check-am: all-am
674
+ $(MAKE) $(AM_MAKEFLAGS) check-TESTS
675
+ check: check-recursive
676
+ all-am: Makefile $(PROGRAMS)
677
+ installdirs: installdirs-recursive
678
+ installdirs-am:
679
+ install: install-recursive
680
+ install-exec: install-exec-recursive
681
+ install-data: install-data-recursive
682
+ uninstall: uninstall-recursive
683
+
684
+ install-am: all-am
685
+ @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am
686
+
687
+ installcheck: installcheck-recursive
688
+ install-strip:
689
+ if test -z '$(STRIP)'; then \
690
+ $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \
691
+ install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \
692
+ install; \
693
+ else \
694
+ $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \
695
+ install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \
696
+ "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'" install; \
697
+ fi
698
+ mostlyclean-generic:
699
+
700
+ clean-generic:
701
+
702
+ distclean-generic:
703
+ -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES)
704
+ -test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES)
705
+
706
+ maintainer-clean-generic:
707
+ @echo "This command is intended for maintainers to use"
708
+ @echo "it deletes files that may require special tools to rebuild."
709
+ clean: clean-recursive
710
+
711
+ clean-am: clean-generic clean-noinstPROGRAMS mostlyclean-am
712
+
713
+ distclean: distclean-recursive
714
+ -rm -rf ./$(DEPDIR)
715
+ -rm -f Makefile
716
+ distclean-am: clean-am distclean-compile distclean-generic \
717
+ distclean-tags
718
+
719
+ dvi: dvi-recursive
720
+
721
+ dvi-am:
722
+
723
+ html: html-recursive
724
+
725
+ html-am:
726
+
727
+ info: info-recursive
728
+
729
+ info-am:
730
+
731
+ install-data-am:
732
+
733
+ install-dvi: install-dvi-recursive
734
+
735
+ install-dvi-am:
736
+
737
+ install-exec-am:
738
+
739
+ install-html: install-html-recursive
740
+
741
+ install-html-am:
742
+
743
+ install-info: install-info-recursive
744
+
745
+ install-info-am:
746
+
747
+ install-man:
748
+
749
+ install-pdf: install-pdf-recursive
750
+
751
+ install-pdf-am:
752
+
753
+ install-ps: install-ps-recursive
754
+
755
+ install-ps-am:
756
+
757
+ installcheck-am:
758
+
759
+ maintainer-clean: maintainer-clean-recursive
760
+ -rm -rf ./$(DEPDIR)
761
+ -rm -f Makefile
762
+ maintainer-clean-am: distclean-am maintainer-clean-generic
763
+
764
+ mostlyclean: mostlyclean-recursive
765
+
766
+ mostlyclean-am: mostlyclean-compile mostlyclean-generic
767
+
768
+ pdf: pdf-recursive
769
+
770
+ pdf-am:
771
+
772
+ ps: ps-recursive
773
+
774
+ ps-am:
775
+
776
+ uninstall-am:
777
+
778
+ .MAKE: $(RECURSIVE_CLEAN_TARGETS) $(RECURSIVE_TARGETS) check-am \
779
+ ctags-recursive install-am install-strip tags-recursive
780
+
781
+ .PHONY: $(RECURSIVE_CLEAN_TARGETS) $(RECURSIVE_TARGETS) CTAGS GTAGS \
782
+ all all-am check check-TESTS check-am clean clean-generic \
783
+ clean-noinstPROGRAMS ctags ctags-recursive distclean \
784
+ distclean-compile distclean-generic distclean-tags distdir dvi \
785
+ dvi-am html html-am info info-am install install-am \
786
+ install-data install-data-am install-dvi install-dvi-am \
787
+ install-exec install-exec-am install-html install-html-am \
788
+ install-info install-info-am install-man install-pdf \
789
+ install-pdf-am install-ps install-ps-am install-strip \
790
+ installcheck installcheck-am installdirs installdirs-am \
791
+ maintainer-clean maintainer-clean-generic mostlyclean \
792
+ mostlyclean-compile mostlyclean-generic pdf pdf-am ps ps-am \
793
+ tags tags-recursive uninstall uninstall-am
794
+
795
+
796
+ check: run_multiple_extensions_test
797
+
798
+ .PHONY: run_multiple_extensions_test
799
+
800
+ run_multiple_extensions_test:
801
+ $(RUBY) test_multiple_extensions.rb
802
+
803
+ check: run_multiple_extensions_with_inheritance_test
804
+
805
+ .PHONY: run_multiple_extensions_with_inheritance_test
806
+
807
+ run_multiple_extensions_with_inheritance_test:
808
+ $(RUBY) test_multiple_extensions_with_inheritance.rb
809
+
810
+ check: run_multiple_extensions_same_class_test
811
+
812
+ .PHONY: run_multiple_extensions_same_class_test
813
+
814
+ run_multiple_extensions_same_class_test:
815
+ $(RUBY) test_multiple_extensions_same_class.rb
816
+ $(RUBY_CPPFLAGS)
817
+
818
+ # Tell versions [3.59,3.63) of GNU make to not export all variables.
819
+ # Otherwise a system limit (for SysV at least) may be exceeded.
820
+ .NOEXPORT: