rice 3.0.0 → 4.0.0

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 (237) hide show
  1. checksums.yaml +4 -4
  2. data/CHANGELOG.md +121 -0
  3. data/CONTRIBUTORS.md +19 -0
  4. data/Gemfile +3 -0
  5. data/README.md +44 -1025
  6. data/Rakefile +95 -12
  7. data/include/rice/rice.hpp +7766 -0
  8. data/lib/mkmf-rice.rb +127 -0
  9. data/lib/version.rb +3 -0
  10. data/rice/Address_Registration_Guard.ipp +75 -32
  11. data/rice/Address_Registration_Guard_defn.hpp +60 -56
  12. data/rice/Arg.hpp +80 -4
  13. data/rice/Arg.ipp +51 -0
  14. data/rice/Constructor.hpp +12 -14
  15. data/rice/Data_Object.ipp +234 -107
  16. data/rice/Data_Object_defn.hpp +77 -117
  17. data/rice/Data_Type.hpp +1 -2
  18. data/rice/Data_Type.ipp +251 -295
  19. data/rice/Data_Type_defn.hpp +175 -243
  20. data/rice/Director.hpp +11 -6
  21. data/rice/Enum.hpp +54 -104
  22. data/rice/Enum.ipp +104 -230
  23. data/rice/Exception.hpp +2 -8
  24. data/rice/Exception.ipp +65 -0
  25. data/rice/Exception_defn.hpp +46 -47
  26. data/rice/Identifier.hpp +28 -28
  27. data/rice/Identifier.ipp +23 -27
  28. data/rice/Return.hpp +39 -0
  29. data/rice/Return.ipp +33 -0
  30. data/rice/detail/Exception_Handler.ipp +22 -62
  31. data/rice/detail/Exception_Handler_defn.hpp +76 -91
  32. data/rice/detail/Iterator.hpp +18 -88
  33. data/rice/detail/Iterator.ipp +47 -0
  34. data/rice/detail/Jump_Tag.hpp +21 -0
  35. data/rice/detail/MethodInfo.hpp +44 -0
  36. data/rice/detail/MethodInfo.ipp +78 -0
  37. data/rice/detail/NativeAttribute.hpp +53 -0
  38. data/rice/detail/NativeAttribute.ipp +83 -0
  39. data/rice/detail/NativeFunction.hpp +69 -0
  40. data/rice/detail/NativeFunction.ipp +248 -0
  41. data/rice/detail/RubyFunction.hpp +39 -0
  42. data/rice/detail/RubyFunction.ipp +92 -0
  43. data/rice/detail/Type.hpp +29 -0
  44. data/rice/detail/Type.ipp +138 -0
  45. data/rice/detail/TypeRegistry.hpp +50 -0
  46. data/rice/detail/TypeRegistry.ipp +106 -0
  47. data/rice/detail/Wrapper.hpp +51 -0
  48. data/rice/detail/Wrapper.ipp +151 -0
  49. data/rice/detail/default_allocation_func.hpp +8 -19
  50. data/rice/detail/default_allocation_func.ipp +9 -8
  51. data/rice/detail/from_ruby.hpp +2 -37
  52. data/rice/detail/from_ruby.ipp +1020 -46
  53. data/rice/detail/from_ruby_defn.hpp +38 -0
  54. data/rice/detail/function_traits.hpp +124 -0
  55. data/rice/detail/method_data.hpp +23 -15
  56. data/rice/detail/method_data.ipp +53 -0
  57. data/rice/detail/rice_traits.hpp +116 -0
  58. data/rice/detail/ruby.hpp +9 -46
  59. data/rice/detail/to_ruby.hpp +3 -17
  60. data/rice/detail/to_ruby.ipp +409 -31
  61. data/rice/detail/to_ruby_defn.hpp +48 -0
  62. data/rice/forward_declares.ipp +82 -0
  63. data/rice/global_function.hpp +16 -20
  64. data/rice/global_function.ipp +8 -17
  65. data/rice/rice.hpp +59 -0
  66. data/rice/ruby_mark.hpp +5 -3
  67. data/rice/ruby_try_catch.hpp +4 -4
  68. data/rice/stl.hpp +11 -0
  69. data/sample/callbacks/extconf.rb +3 -0
  70. data/sample/callbacks/sample_callbacks.cpp +10 -13
  71. data/sample/enum/extconf.rb +3 -0
  72. data/sample/enum/sample_enum.cpp +3 -17
  73. data/sample/enum/test.rb +2 -2
  74. data/sample/inheritance/animals.cpp +8 -24
  75. data/sample/inheritance/extconf.rb +3 -0
  76. data/sample/inheritance/test.rb +1 -1
  77. data/sample/map/extconf.rb +3 -0
  78. data/sample/map/map.cpp +10 -18
  79. data/sample/map/test.rb +1 -1
  80. data/test/embed_ruby.cpp +18 -5
  81. data/test/ext/t1/extconf.rb +3 -0
  82. data/test/ext/t1/t1.cpp +1 -3
  83. data/test/ext/t2/extconf.rb +3 -0
  84. data/test/ext/t2/t2.cpp +1 -1
  85. data/test/extconf.rb +23 -0
  86. data/test/ruby/test_callbacks_sample.rb +28 -0
  87. data/test/ruby/test_multiple_extensions.rb +18 -0
  88. data/test/ruby/test_multiple_extensions_same_class.rb +14 -0
  89. data/test/ruby/test_multiple_extensions_with_inheritance.rb +20 -0
  90. data/test/test_Address_Registration_Guard.cpp +23 -10
  91. data/test/test_Array.cpp +129 -73
  92. data/test/test_Attribute.cpp +147 -0
  93. data/test/test_Builtin_Object.cpp +34 -14
  94. data/test/test_Class.cpp +149 -275
  95. data/test/test_Constructor.cpp +10 -9
  96. data/test/test_Data_Object.cpp +133 -192
  97. data/test/test_Data_Type.cpp +322 -252
  98. data/test/test_Director.cpp +54 -41
  99. data/test/test_Enum.cpp +228 -103
  100. data/test/test_Exception.cpp +5 -6
  101. data/test/test_Hash.cpp +31 -30
  102. data/test/test_Identifier.cpp +4 -5
  103. data/test/test_Inheritance.cpp +221 -0
  104. data/test/test_Iterator.cpp +161 -0
  105. data/test/test_Jump_Tag.cpp +1 -1
  106. data/test/test_Keep_Alive.cpp +161 -0
  107. data/test/test_Memory_Management.cpp +2 -4
  108. data/test/test_Module.cpp +167 -110
  109. data/test/test_Object.cpp +41 -21
  110. data/test/test_Ownership.cpp +275 -0
  111. data/test/test_Self.cpp +205 -0
  112. data/test/test_Stl_Optional.cpp +90 -0
  113. data/test/test_Stl_Pair.cpp +144 -0
  114. data/test/test_Stl_SmartPointer.cpp +200 -0
  115. data/test/test_Stl_String.cpp +74 -0
  116. data/test/test_Stl_Vector.cpp +652 -0
  117. data/test/test_String.cpp +1 -2
  118. data/test/test_Struct.cpp +29 -39
  119. data/test/test_Symbol.cpp +1 -2
  120. data/test/test_To_From_Ruby.cpp +249 -285
  121. data/test/test_global_functions.cpp +39 -19
  122. data/test/unittest.hpp +0 -4
  123. metadata +63 -139
  124. data/Doxyfile +0 -2268
  125. data/Makefile.am +0 -26
  126. data/Makefile.in +0 -931
  127. data/README.mingw +0 -8
  128. data/aclocal.m4 +0 -1085
  129. data/ax_cxx_compile_stdcxx.m4 +0 -951
  130. data/bootstrap +0 -8
  131. data/config.guess +0 -1421
  132. data/config.sub +0 -1807
  133. data/configure +0 -7792
  134. data/configure.ac +0 -55
  135. data/depcomp +0 -791
  136. data/doxygen.ac +0 -314
  137. data/doxygen.am +0 -186
  138. data/extconf.rb +0 -70
  139. data/install-sh +0 -501
  140. data/missing +0 -215
  141. data/post-autoconf.rb +0 -22
  142. data/post-automake.rb +0 -28
  143. data/rice/Address_Registration_Guard.cpp +0 -22
  144. data/rice/Arg_impl.hpp +0 -129
  145. data/rice/Arg_operators.cpp +0 -21
  146. data/rice/Arg_operators.hpp +0 -19
  147. data/rice/Array.hpp +0 -214
  148. data/rice/Array.ipp +0 -256
  149. data/rice/Builtin_Object.hpp +0 -8
  150. data/rice/Builtin_Object.ipp +0 -50
  151. data/rice/Builtin_Object_defn.hpp +0 -50
  152. data/rice/Class.cpp +0 -57
  153. data/rice/Class.hpp +0 -8
  154. data/rice/Class.ipp +0 -6
  155. data/rice/Class_defn.hpp +0 -84
  156. data/rice/Data_Type.cpp +0 -54
  157. data/rice/Data_Type_fwd.hpp +0 -12
  158. data/rice/Director.cpp +0 -13
  159. data/rice/Exception.cpp +0 -54
  160. data/rice/Exception_Base.hpp +0 -8
  161. data/rice/Exception_Base.ipp +0 -13
  162. data/rice/Exception_Base_defn.hpp +0 -27
  163. data/rice/Hash.hpp +0 -230
  164. data/rice/Hash.ipp +0 -329
  165. data/rice/Identifier.cpp +0 -8
  166. data/rice/Jump_Tag.hpp +0 -24
  167. data/rice/Makefile.am +0 -121
  168. data/rice/Makefile.in +0 -884
  169. data/rice/Module.cpp +0 -84
  170. data/rice/Module.hpp +0 -8
  171. data/rice/Module.ipp +0 -6
  172. data/rice/Module_defn.hpp +0 -88
  173. data/rice/Module_impl.hpp +0 -281
  174. data/rice/Module_impl.ipp +0 -345
  175. data/rice/Object.cpp +0 -169
  176. data/rice/Object.hpp +0 -8
  177. data/rice/Object.ipp +0 -33
  178. data/rice/Object_defn.hpp +0 -214
  179. data/rice/Require_Guard.hpp +0 -21
  180. data/rice/String.cpp +0 -89
  181. data/rice/String.hpp +0 -91
  182. data/rice/Struct.cpp +0 -117
  183. data/rice/Struct.hpp +0 -162
  184. data/rice/Struct.ipp +0 -26
  185. data/rice/Symbol.cpp +0 -25
  186. data/rice/Symbol.hpp +0 -66
  187. data/rice/Symbol.ipp +0 -44
  188. data/rice/config.hpp +0 -47
  189. data/rice/config.hpp.in +0 -46
  190. data/rice/detail/Arguments.hpp +0 -118
  191. data/rice/detail/Auto_Function_Wrapper.hpp +0 -898
  192. data/rice/detail/Auto_Function_Wrapper.ipp +0 -3181
  193. data/rice/detail/Auto_Member_Function_Wrapper.hpp +0 -897
  194. data/rice/detail/Auto_Member_Function_Wrapper.ipp +0 -2501
  195. data/rice/detail/Caster.hpp +0 -103
  196. data/rice/detail/Not_Copyable.hpp +0 -25
  197. data/rice/detail/Wrapped_Function.hpp +0 -33
  198. data/rice/detail/cfp.hpp +0 -24
  199. data/rice/detail/cfp.ipp +0 -51
  200. data/rice/detail/check_ruby_type.cpp +0 -27
  201. data/rice/detail/check_ruby_type.hpp +0 -23
  202. data/rice/detail/creation_funcs.hpp +0 -37
  203. data/rice/detail/creation_funcs.ipp +0 -36
  204. data/rice/detail/define_method_and_auto_wrap.hpp +0 -31
  205. data/rice/detail/define_method_and_auto_wrap.ipp +0 -30
  206. data/rice/detail/demangle.cpp +0 -56
  207. data/rice/detail/demangle.hpp +0 -19
  208. data/rice/detail/env.hpp +0 -11
  209. data/rice/detail/method_data.cpp +0 -92
  210. data/rice/detail/node.hpp +0 -13
  211. data/rice/detail/protect.cpp +0 -29
  212. data/rice/detail/protect.hpp +0 -34
  213. data/rice/detail/ruby_version_code.hpp +0 -6
  214. data/rice/detail/ruby_version_code.hpp.in +0 -6
  215. data/rice/detail/st.hpp +0 -22
  216. data/rice/detail/win32.hpp +0 -16
  217. data/rice/detail/wrap_function.hpp +0 -66
  218. data/rice/protect.hpp +0 -38
  219. data/rice/protect.ipp +0 -1134
  220. data/rice/rubypp.rb +0 -97
  221. data/rice/to_from_ruby.hpp +0 -8
  222. data/rice/to_from_ruby.ipp +0 -418
  223. data/rice/to_from_ruby_defn.hpp +0 -70
  224. data/ruby.ac +0 -135
  225. data/ruby/Makefile.am +0 -1
  226. data/ruby/Makefile.in +0 -628
  227. data/ruby/lib/Makefile.am +0 -3
  228. data/ruby/lib/Makefile.in +0 -506
  229. data/ruby/lib/mkmf-rice.rb.in +0 -217
  230. data/ruby/lib/version.rb +0 -3
  231. data/sample/Makefile.am +0 -53
  232. data/sample/Makefile.in +0 -495
  233. data/test/Makefile.am +0 -73
  234. data/test/Makefile.in +0 -1219
  235. data/test/ext/Makefile.am +0 -41
  236. data/test/ext/Makefile.in +0 -483
  237. data/test/test_rice.rb +0 -45
data/test/Makefile.am DELETED
@@ -1,73 +0,0 @@
1
- noinst_PROGRAMS = unittest
2
-
3
- SUBDIRS = ext
4
-
5
- TESTS = unittest
6
-
7
-
8
- check: run_multiple_extensions_test
9
-
10
- .PHONY: run_multiple_extensions_test
11
-
12
- run_multiple_extensions_test:
13
- $(RUBY) test_multiple_extensions.rb
14
-
15
-
16
- check: run_multiple_extensions_with_inheritance_test
17
-
18
- .PHONY: run_multiple_extensions_with_inheritance_test
19
-
20
- run_multiple_extensions_with_inheritance_test:
21
- $(RUBY) test_multiple_extensions_with_inheritance.rb
22
-
23
-
24
- check: run_multiple_extensions_same_class_test
25
-
26
- .PHONY: run_multiple_extensions_same_class_test
27
-
28
- run_multiple_extensions_same_class_test:
29
- $(RUBY) test_multiple_extensions_same_class.rb
30
-
31
-
32
- unittest_SOURCES = \
33
- embed_ruby.cpp \
34
- unittest.cpp \
35
- test_Address_Registration_Guard.cpp \
36
- test_Array.cpp \
37
- test_Builtin_Object.cpp \
38
- test_Class.cpp \
39
- test_Constructor.cpp \
40
- test_Data_Object.cpp \
41
- test_Data_Type.cpp \
42
- test_Director.cpp \
43
- test_Enum.cpp \
44
- test_Exception.cpp \
45
- test_Hash.cpp \
46
- test_Identifier.cpp \
47
- test_Jump_Tag.cpp \
48
- test_Memory_Management.cpp \
49
- test_Module.cpp \
50
- test_Object.cpp \
51
- test_String.cpp \
52
- test_Struct.cpp \
53
- test_Symbol.cpp \
54
- test_To_From_Ruby.cpp \
55
- test_global_functions.cpp
56
-
57
- AM_CPPFLAGS = \
58
- -I.. \
59
- $(RUBY_CFLAGS)
60
- $(RUBY_CPPFLAGS)
61
-
62
- AM_CXXLAGS = \
63
- $(RUBY_CXXFLAGS)
64
-
65
- AM_LDFLAGS = \
66
- $(RUBY_LDFLAGS) \
67
- -L../rice
68
-
69
- LIBS = \
70
- -lrice \
71
- $(RUBY_LIBS) \
72
- $(RUBY_LIBRUBYARG)
73
-
data/test/Makefile.in DELETED
@@ -1,1219 +0,0 @@
1
- # Makefile.in generated by automake 1.16.3 from Makefile.am.
2
- # @configure_input@
3
-
4
- # Copyright (C) 1994-2020 Free Software Foundation, Inc.
5
-
6
- # This Makefile.in is free software; the Free Software Foundation
7
- # gives unlimited permission to copy and/or distribute it,
8
- # with or without modifications, as long as this notice is preserved.
9
-
10
- # This program is distributed in the hope that it will be useful,
11
- # but WITHOUT ANY WARRANTY, to the extent permitted by law; without
12
- # even the implied warranty of MERCHANTABILITY or FITNESS FOR A
13
- # PARTICULAR PURPOSE.
14
-
15
- @SET_MAKE@
16
-
17
- VPATH = @srcdir@
18
- am__is_gnu_make = { \
19
- if test -z '$(MAKELEVEL)'; then \
20
- false; \
21
- elif test -n '$(MAKE_HOST)'; then \
22
- true; \
23
- elif test -n '$(MAKE_VERSION)' && test -n '$(CURDIR)'; then \
24
- true; \
25
- else \
26
- false; \
27
- fi; \
28
- }
29
- am__make_running_with_option = \
30
- case $${target_option-} in \
31
- ?) ;; \
32
- *) echo "am__make_running_with_option: internal error: invalid" \
33
- "target option '$${target_option-}' specified" >&2; \
34
- exit 1;; \
35
- esac; \
36
- has_opt=no; \
37
- sane_makeflags=$$MAKEFLAGS; \
38
- if $(am__is_gnu_make); then \
39
- sane_makeflags=$$MFLAGS; \
40
- else \
41
- case $$MAKEFLAGS in \
42
- *\\[\ \ ]*) \
43
- bs=\\; \
44
- sane_makeflags=`printf '%s\n' "$$MAKEFLAGS" \
45
- | sed "s/$$bs$$bs[$$bs $$bs ]*//g"`;; \
46
- esac; \
47
- fi; \
48
- skip_next=no; \
49
- strip_trailopt () \
50
- { \
51
- flg=`printf '%s\n' "$$flg" | sed "s/$$1.*$$//"`; \
52
- }; \
53
- for flg in $$sane_makeflags; do \
54
- test $$skip_next = yes && { skip_next=no; continue; }; \
55
- case $$flg in \
56
- *=*|--*) continue;; \
57
- -*I) strip_trailopt 'I'; skip_next=yes;; \
58
- -*I?*) strip_trailopt 'I';; \
59
- -*O) strip_trailopt 'O'; skip_next=yes;; \
60
- -*O?*) strip_trailopt 'O';; \
61
- -*l) strip_trailopt 'l'; skip_next=yes;; \
62
- -*l?*) strip_trailopt 'l';; \
63
- -[dEDm]) skip_next=yes;; \
64
- -[JT]) skip_next=yes;; \
65
- esac; \
66
- case $$flg in \
67
- *$$target_option*) has_opt=yes; break;; \
68
- esac; \
69
- done; \
70
- test $$has_opt = yes
71
- am__make_dryrun = (target_option=n; $(am__make_running_with_option))
72
- am__make_keepgoing = (target_option=k; $(am__make_running_with_option))
73
- pkgdatadir = $(datadir)/@PACKAGE@
74
- pkgincludedir = $(includedir)/@PACKAGE@
75
- pkglibdir = $(libdir)/@PACKAGE@
76
- pkglibexecdir = $(libexecdir)/@PACKAGE@
77
- am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd
78
- install_sh_DATA = $(install_sh) -c -m 644
79
- install_sh_PROGRAM = $(install_sh) -c
80
- install_sh_SCRIPT = $(install_sh) -c
81
- INSTALL_HEADER = $(INSTALL_DATA)
82
- transform = $(program_transform_name)
83
- NORMAL_INSTALL = :
84
- PRE_INSTALL = :
85
- POST_INSTALL = :
86
- NORMAL_UNINSTALL = :
87
- PRE_UNINSTALL = :
88
- POST_UNINSTALL = :
89
- build_triplet = @build@
90
- host_triplet = @host@
91
- noinst_PROGRAMS = unittest$(EXEEXT)
92
- TESTS = unittest$(EXEEXT)
93
- subdir = test
94
- ACLOCAL_M4 = $(top_srcdir)/aclocal.m4
95
- am__aclocal_m4_deps = $(top_srcdir)/ax_cxx_compile_stdcxx.m4 \
96
- $(top_srcdir)/ruby.ac $(top_srcdir)/doxygen.ac \
97
- $(top_srcdir)/configure.ac
98
- am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \
99
- $(ACLOCAL_M4)
100
- DIST_COMMON = $(srcdir)/Makefile.am $(am__DIST_COMMON)
101
- mkinstalldirs = $(install_sh) -d
102
- CONFIG_HEADER = $(top_builddir)/rice/config.hpp
103
- CONFIG_CLEAN_FILES =
104
- CONFIG_CLEAN_VPATH_FILES =
105
- PROGRAMS = $(noinst_PROGRAMS)
106
- am_unittest_OBJECTS = embed_ruby.$(OBJEXT) unittest.$(OBJEXT) \
107
- test_Address_Registration_Guard.$(OBJEXT) test_Array.$(OBJEXT) \
108
- test_Builtin_Object.$(OBJEXT) test_Class.$(OBJEXT) \
109
- test_Constructor.$(OBJEXT) test_Data_Object.$(OBJEXT) \
110
- test_Data_Type.$(OBJEXT) test_Director.$(OBJEXT) \
111
- test_Enum.$(OBJEXT) test_Exception.$(OBJEXT) \
112
- test_Hash.$(OBJEXT) test_Identifier.$(OBJEXT) \
113
- test_Jump_Tag.$(OBJEXT) test_Memory_Management.$(OBJEXT) \
114
- test_Module.$(OBJEXT) test_Object.$(OBJEXT) \
115
- test_String.$(OBJEXT) test_Struct.$(OBJEXT) \
116
- test_Symbol.$(OBJEXT) test_To_From_Ruby.$(OBJEXT) \
117
- test_global_functions.$(OBJEXT)
118
- unittest_OBJECTS = $(am_unittest_OBJECTS)
119
- unittest_LDADD = $(LDADD)
120
- AM_V_P = $(am__v_P_@AM_V@)
121
- am__v_P_ = $(am__v_P_@AM_DEFAULT_V@)
122
- am__v_P_0 = false
123
- am__v_P_1 = :
124
- AM_V_GEN = $(am__v_GEN_@AM_V@)
125
- am__v_GEN_ = $(am__v_GEN_@AM_DEFAULT_V@)
126
- am__v_GEN_0 = @echo " GEN " $@;
127
- am__v_GEN_1 =
128
- AM_V_at = $(am__v_at_@AM_V@)
129
- am__v_at_ = $(am__v_at_@AM_DEFAULT_V@)
130
- am__v_at_0 = @
131
- am__v_at_1 =
132
- DEFAULT_INCLUDES = -I.@am__isrc@ -I$(top_builddir)/rice
133
- depcomp = $(SHELL) $(top_srcdir)/depcomp
134
- am__maybe_remake_depfiles = depfiles
135
- am__depfiles_remade = ./$(DEPDIR)/embed_ruby.Po \
136
- ./$(DEPDIR)/test_Address_Registration_Guard.Po \
137
- ./$(DEPDIR)/test_Array.Po ./$(DEPDIR)/test_Builtin_Object.Po \
138
- ./$(DEPDIR)/test_Class.Po ./$(DEPDIR)/test_Constructor.Po \
139
- ./$(DEPDIR)/test_Data_Object.Po ./$(DEPDIR)/test_Data_Type.Po \
140
- ./$(DEPDIR)/test_Director.Po ./$(DEPDIR)/test_Enum.Po \
141
- ./$(DEPDIR)/test_Exception.Po ./$(DEPDIR)/test_Hash.Po \
142
- ./$(DEPDIR)/test_Identifier.Po ./$(DEPDIR)/test_Jump_Tag.Po \
143
- ./$(DEPDIR)/test_Memory_Management.Po \
144
- ./$(DEPDIR)/test_Module.Po ./$(DEPDIR)/test_Object.Po \
145
- ./$(DEPDIR)/test_String.Po ./$(DEPDIR)/test_Struct.Po \
146
- ./$(DEPDIR)/test_Symbol.Po ./$(DEPDIR)/test_To_From_Ruby.Po \
147
- ./$(DEPDIR)/test_global_functions.Po ./$(DEPDIR)/unittest.Po
148
- am__mv = mv -f
149
- CXXCOMPILE = $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) \
150
- $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS)
151
- AM_V_CXX = $(am__v_CXX_@AM_V@)
152
- am__v_CXX_ = $(am__v_CXX_@AM_DEFAULT_V@)
153
- am__v_CXX_0 = @echo " CXX " $@;
154
- am__v_CXX_1 =
155
- CXXLD = $(CXX)
156
- CXXLINK = $(CXXLD) $(AM_CXXFLAGS) $(CXXFLAGS) $(AM_LDFLAGS) $(LDFLAGS) \
157
- -o $@
158
- AM_V_CXXLD = $(am__v_CXXLD_@AM_V@)
159
- am__v_CXXLD_ = $(am__v_CXXLD_@AM_DEFAULT_V@)
160
- am__v_CXXLD_0 = @echo " CXXLD " $@;
161
- am__v_CXXLD_1 =
162
- SOURCES = $(unittest_SOURCES)
163
- DIST_SOURCES = $(unittest_SOURCES)
164
- RECURSIVE_TARGETS = all-recursive check-recursive cscopelist-recursive \
165
- ctags-recursive dvi-recursive html-recursive info-recursive \
166
- install-data-recursive install-dvi-recursive \
167
- install-exec-recursive install-html-recursive \
168
- install-info-recursive install-pdf-recursive \
169
- install-ps-recursive install-recursive installcheck-recursive \
170
- installdirs-recursive pdf-recursive ps-recursive \
171
- tags-recursive uninstall-recursive
172
- am__can_run_installinfo = \
173
- case $$AM_UPDATE_INFO_DIR in \
174
- n|no|NO) false;; \
175
- *) (install-info --version) >/dev/null 2>&1;; \
176
- esac
177
- RECURSIVE_CLEAN_TARGETS = mostlyclean-recursive clean-recursive \
178
- distclean-recursive maintainer-clean-recursive
179
- am__recursive_targets = \
180
- $(RECURSIVE_TARGETS) \
181
- $(RECURSIVE_CLEAN_TARGETS) \
182
- $(am__extra_recursive_targets)
183
- AM_RECURSIVE_TARGETS = $(am__recursive_targets:-recursive=) TAGS CTAGS \
184
- check recheck distdir distdir-am
185
- am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) $(LISP)
186
- # Read a list of newline-separated strings from the standard input,
187
- # and print each of them once, without duplicates. Input order is
188
- # *not* preserved.
189
- am__uniquify_input = $(AWK) '\
190
- BEGIN { nonempty = 0; } \
191
- { items[$$0] = 1; nonempty = 1; } \
192
- END { if (nonempty) { for (i in items) print i; }; } \
193
- '
194
- # Make sure the list of sources is unique. This is necessary because,
195
- # e.g., the same source file might be shared among _SOURCES variables
196
- # for different programs/libraries.
197
- am__define_uniq_tagged_files = \
198
- list='$(am__tagged_files)'; \
199
- unique=`for i in $$list; do \
200
- if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
201
- done | $(am__uniquify_input)`
202
- ETAGS = etags
203
- CTAGS = ctags
204
- am__tty_colors_dummy = \
205
- mgn= red= grn= lgn= blu= brg= std=; \
206
- am__color_tests=no
207
- am__tty_colors = { \
208
- $(am__tty_colors_dummy); \
209
- if test "X$(AM_COLOR_TESTS)" = Xno; then \
210
- am__color_tests=no; \
211
- elif test "X$(AM_COLOR_TESTS)" = Xalways; then \
212
- am__color_tests=yes; \
213
- elif test "X$$TERM" != Xdumb && { test -t 1; } 2>/dev/null; then \
214
- am__color_tests=yes; \
215
- fi; \
216
- if test $$am__color_tests = yes; then \
217
- red=''; \
218
- grn=''; \
219
- lgn=''; \
220
- blu=''; \
221
- mgn=''; \
222
- brg=''; \
223
- std=''; \
224
- fi; \
225
- }
226
- am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`;
227
- am__vpath_adj = case $$p in \
228
- $(srcdir)/*) f=`echo "$$p" | sed "s|^$$srcdirstrip/||"`;; \
229
- *) f=$$p;; \
230
- esac;
231
- am__strip_dir = f=`echo $$p | sed -e 's|^.*/||'`;
232
- am__install_max = 40
233
- am__nobase_strip_setup = \
234
- srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*|]/\\\\&/g'`
235
- am__nobase_strip = \
236
- for p in $$list; do echo "$$p"; done | sed -e "s|$$srcdirstrip/||"
237
- am__nobase_list = $(am__nobase_strip_setup); \
238
- for p in $$list; do echo "$$p $$p"; done | \
239
- sed "s| $$srcdirstrip/| |;"' / .*\//!s/ .*/ ./; s,\( .*\)/[^/]*$$,\1,' | \
240
- $(AWK) 'BEGIN { files["."] = "" } { files[$$2] = files[$$2] " " $$1; \
241
- if (++n[$$2] == $(am__install_max)) \
242
- { print $$2, files[$$2]; n[$$2] = 0; files[$$2] = "" } } \
243
- END { for (dir in files) print dir, files[dir] }'
244
- am__base_list = \
245
- sed '$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;s/\n/ /g' | \
246
- sed '$$!N;$$!N;$$!N;$$!N;s/\n/ /g'
247
- am__uninstall_files_from_dir = { \
248
- test -z "$$files" \
249
- || { test ! -d "$$dir" && test ! -f "$$dir" && test ! -r "$$dir"; } \
250
- || { echo " ( cd '$$dir' && rm -f" $$files ")"; \
251
- $(am__cd) "$$dir" && rm -f $$files; }; \
252
- }
253
- am__recheck_rx = ^[ ]*:recheck:[ ]*
254
- am__global_test_result_rx = ^[ ]*:global-test-result:[ ]*
255
- am__copy_in_global_log_rx = ^[ ]*:copy-in-global-log:[ ]*
256
- # A command that, given a newline-separated list of test names on the
257
- # standard input, print the name of the tests that are to be re-run
258
- # upon "make recheck".
259
- am__list_recheck_tests = $(AWK) '{ \
260
- recheck = 1; \
261
- while ((rc = (getline line < ($$0 ".trs"))) != 0) \
262
- { \
263
- if (rc < 0) \
264
- { \
265
- if ((getline line2 < ($$0 ".log")) < 0) \
266
- recheck = 0; \
267
- break; \
268
- } \
269
- else if (line ~ /$(am__recheck_rx)[nN][Oo]/) \
270
- { \
271
- recheck = 0; \
272
- break; \
273
- } \
274
- else if (line ~ /$(am__recheck_rx)[yY][eE][sS]/) \
275
- { \
276
- break; \
277
- } \
278
- }; \
279
- if (recheck) \
280
- print $$0; \
281
- close ($$0 ".trs"); \
282
- close ($$0 ".log"); \
283
- }'
284
- # A command that, given a newline-separated list of test names on the
285
- # standard input, create the global log from their .trs and .log files.
286
- am__create_global_log = $(AWK) ' \
287
- function fatal(msg) \
288
- { \
289
- print "fatal: making $@: " msg | "cat >&2"; \
290
- exit 1; \
291
- } \
292
- function rst_section(header) \
293
- { \
294
- print header; \
295
- len = length(header); \
296
- for (i = 1; i <= len; i = i + 1) \
297
- printf "="; \
298
- printf "\n\n"; \
299
- } \
300
- { \
301
- copy_in_global_log = 1; \
302
- global_test_result = "RUN"; \
303
- while ((rc = (getline line < ($$0 ".trs"))) != 0) \
304
- { \
305
- if (rc < 0) \
306
- fatal("failed to read from " $$0 ".trs"); \
307
- if (line ~ /$(am__global_test_result_rx)/) \
308
- { \
309
- sub("$(am__global_test_result_rx)", "", line); \
310
- sub("[ ]*$$", "", line); \
311
- global_test_result = line; \
312
- } \
313
- else if (line ~ /$(am__copy_in_global_log_rx)[nN][oO]/) \
314
- copy_in_global_log = 0; \
315
- }; \
316
- if (copy_in_global_log) \
317
- { \
318
- rst_section(global_test_result ": " $$0); \
319
- while ((rc = (getline line < ($$0 ".log"))) != 0) \
320
- { \
321
- if (rc < 0) \
322
- fatal("failed to read from " $$0 ".log"); \
323
- print line; \
324
- }; \
325
- printf "\n"; \
326
- }; \
327
- close ($$0 ".trs"); \
328
- close ($$0 ".log"); \
329
- }'
330
- # Restructured Text title.
331
- am__rst_title = { sed 's/.*/ & /;h;s/./=/g;p;x;s/ *$$//;p;g' && echo; }
332
- # Solaris 10 'make', and several other traditional 'make' implementations,
333
- # pass "-e" to $(SHELL), and POSIX 2008 even requires this. Work around it
334
- # by disabling -e (using the XSI extension "set +e") if it's set.
335
- am__sh_e_setup = case $$- in *e*) set +e;; esac
336
- # Default flags passed to test drivers.
337
- am__common_driver_flags = \
338
- --color-tests "$$am__color_tests" \
339
- --enable-hard-errors "$$am__enable_hard_errors" \
340
- --expect-failure "$$am__expect_failure"
341
- # To be inserted before the command running the test. Creates the
342
- # directory for the log if needed. Stores in $dir the directory
343
- # containing $f, in $tst the test, in $log the log. Executes the
344
- # developer- defined test setup AM_TESTS_ENVIRONMENT (if any), and
345
- # passes TESTS_ENVIRONMENT. Set up options for the wrapper that
346
- # will run the test scripts (or their associated LOG_COMPILER, if
347
- # thy have one).
348
- am__check_pre = \
349
- $(am__sh_e_setup); \
350
- $(am__vpath_adj_setup) $(am__vpath_adj) \
351
- $(am__tty_colors); \
352
- srcdir=$(srcdir); export srcdir; \
353
- case "$@" in \
354
- */*) am__odir=`echo "./$@" | sed 's|/[^/]*$$||'`;; \
355
- *) am__odir=.;; \
356
- esac; \
357
- test "x$$am__odir" = x"." || test -d "$$am__odir" \
358
- || $(MKDIR_P) "$$am__odir" || exit $$?; \
359
- if test -f "./$$f"; then dir=./; \
360
- elif test -f "$$f"; then dir=; \
361
- else dir="$(srcdir)/"; fi; \
362
- tst=$$dir$$f; log='$@'; \
363
- if test -n '$(DISABLE_HARD_ERRORS)'; then \
364
- am__enable_hard_errors=no; \
365
- else \
366
- am__enable_hard_errors=yes; \
367
- fi; \
368
- case " $(XFAIL_TESTS) " in \
369
- *[\ \ ]$$f[\ \ ]* | *[\ \ ]$$dir$$f[\ \ ]*) \
370
- am__expect_failure=yes;; \
371
- *) \
372
- am__expect_failure=no;; \
373
- esac; \
374
- $(AM_TESTS_ENVIRONMENT) $(TESTS_ENVIRONMENT)
375
- # A shell command to get the names of the tests scripts with any registered
376
- # extension removed (i.e., equivalently, the names of the test logs, with
377
- # the '.log' extension removed). The result is saved in the shell variable
378
- # '$bases'. This honors runtime overriding of TESTS and TEST_LOGS. Sadly,
379
- # we cannot use something simpler, involving e.g., "$(TEST_LOGS:.log=)",
380
- # since that might cause problem with VPATH rewrites for suffix-less tests.
381
- # See also 'test-harness-vpath-rewrite.sh' and 'test-trs-basic.sh'.
382
- am__set_TESTS_bases = \
383
- bases='$(TEST_LOGS)'; \
384
- bases=`for i in $$bases; do echo $$i; done | sed 's/\.log$$//'`; \
385
- bases=`echo $$bases`
386
- AM_TESTSUITE_SUMMARY_HEADER = ' for $(PACKAGE_STRING)'
387
- RECHECK_LOGS = $(TEST_LOGS)
388
- TEST_SUITE_LOG = test-suite.log
389
- TEST_EXTENSIONS = @EXEEXT@ .test
390
- LOG_DRIVER = $(SHELL) $(top_srcdir)/test-driver
391
- LOG_COMPILE = $(LOG_COMPILER) $(AM_LOG_FLAGS) $(LOG_FLAGS)
392
- am__set_b = \
393
- case '$@' in \
394
- */*) \
395
- case '$*' in \
396
- */*) b='$*';; \
397
- *) b=`echo '$@' | sed 's/\.log$$//'`; \
398
- esac;; \
399
- *) \
400
- b='$*';; \
401
- esac
402
- am__test_logs1 = $(TESTS:=.log)
403
- am__test_logs2 = $(am__test_logs1:@EXEEXT@.log=.log)
404
- TEST_LOGS = $(am__test_logs2:.test.log=.log)
405
- TEST_LOG_DRIVER = $(SHELL) $(top_srcdir)/test-driver
406
- TEST_LOG_COMPILE = $(TEST_LOG_COMPILER) $(AM_TEST_LOG_FLAGS) \
407
- $(TEST_LOG_FLAGS)
408
- DIST_SUBDIRS = $(SUBDIRS)
409
- am__DIST_COMMON = $(srcdir)/Makefile.in $(top_srcdir)/depcomp \
410
- $(top_srcdir)/test-driver
411
- DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST)
412
- am__relativize = \
413
- dir0=`pwd`; \
414
- sed_first='s,^\([^/]*\)/.*$$,\1,'; \
415
- sed_rest='s,^[^/]*/*,,'; \
416
- sed_last='s,^.*/\([^/]*\)$$,\1,'; \
417
- sed_butlast='s,/*[^/]*$$,,'; \
418
- while test -n "$$dir1"; do \
419
- first=`echo "$$dir1" | sed -e "$$sed_first"`; \
420
- if test "$$first" != "."; then \
421
- if test "$$first" = ".."; then \
422
- dir2=`echo "$$dir0" | sed -e "$$sed_last"`/"$$dir2"; \
423
- dir0=`echo "$$dir0" | sed -e "$$sed_butlast"`; \
424
- else \
425
- first2=`echo "$$dir2" | sed -e "$$sed_first"`; \
426
- if test "$$first2" = "$$first"; then \
427
- dir2=`echo "$$dir2" | sed -e "$$sed_rest"`; \
428
- else \
429
- dir2="../$$dir2"; \
430
- fi; \
431
- dir0="$$dir0"/"$$first"; \
432
- fi; \
433
- fi; \
434
- dir1=`echo "$$dir1" | sed -e "$$sed_rest"`; \
435
- done; \
436
- reldir="$$dir2"
437
- ACLOCAL = @ACLOCAL@
438
- AMTAR = @AMTAR@
439
- AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@
440
- AUTOCONF = @AUTOCONF@
441
- AUTOHEADER = @AUTOHEADER@
442
- AUTOMAKE = @AUTOMAKE@
443
- AWK = @AWK@
444
- CPPFLAGS = @CPPFLAGS@
445
- CXX = @CXX@
446
- CXXDEPMODE = @CXXDEPMODE@
447
- CXXFLAGS = @CXXFLAGS@
448
- CYGPATH_W = @CYGPATH_W@
449
- DEFS = @DEFS@
450
- DEPDIR = @DEPDIR@
451
- DOXYGEN_PAPER_SIZE = @DOXYGEN_PAPER_SIZE@
452
- DX_CONFIG = @DX_CONFIG@
453
- DX_DOCDIR = @DX_DOCDIR@
454
- DX_DOT = @DX_DOT@
455
- DX_DOXYGEN = @DX_DOXYGEN@
456
- DX_DVIPS = @DX_DVIPS@
457
- DX_EGREP = @DX_EGREP@
458
- DX_ENV = @DX_ENV@
459
- DX_FLAG_chi = @DX_FLAG_chi@
460
- DX_FLAG_chm = @DX_FLAG_chm@
461
- DX_FLAG_doc = @DX_FLAG_doc@
462
- DX_FLAG_dot = @DX_FLAG_dot@
463
- DX_FLAG_html = @DX_FLAG_html@
464
- DX_FLAG_man = @DX_FLAG_man@
465
- DX_FLAG_pdf = @DX_FLAG_pdf@
466
- DX_FLAG_ps = @DX_FLAG_ps@
467
- DX_FLAG_rtf = @DX_FLAG_rtf@
468
- DX_FLAG_xml = @DX_FLAG_xml@
469
- DX_HHC = @DX_HHC@
470
- DX_LATEX = @DX_LATEX@
471
- DX_MAKEINDEX = @DX_MAKEINDEX@
472
- DX_PDFLATEX = @DX_PDFLATEX@
473
- DX_PERL = @DX_PERL@
474
- DX_PROJECT = @DX_PROJECT@
475
- ECHO_C = @ECHO_C@
476
- ECHO_N = @ECHO_N@
477
- ECHO_T = @ECHO_T@
478
- EXEEXT = @EXEEXT@
479
- HAVE_CXX14 = @HAVE_CXX14@
480
- INSTALL = @INSTALL@
481
- INSTALL_DATA = @INSTALL_DATA@
482
- INSTALL_PROGRAM = @INSTALL_PROGRAM@
483
- INSTALL_SCRIPT = @INSTALL_SCRIPT@
484
- INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@
485
- LDFLAGS = @LDFLAGS@
486
- LIBOBJS = @LIBOBJS@
487
- LIBS = \
488
- -lrice \
489
- $(RUBY_LIBS) \
490
- $(RUBY_LIBRUBYARG)
491
-
492
- LTLIBOBJS = @LTLIBOBJS@
493
- MAKEINFO = @MAKEINFO@
494
- MKDIR_P = @MKDIR_P@
495
- OBJEXT = @OBJEXT@
496
- PACKAGE = @PACKAGE@
497
- PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@
498
- PACKAGE_NAME = @PACKAGE_NAME@
499
- PACKAGE_STRING = @PACKAGE_STRING@
500
- PACKAGE_TARNAME = @PACKAGE_TARNAME@
501
- PACKAGE_URL = @PACKAGE_URL@
502
- PACKAGE_VERSION = @PACKAGE_VERSION@
503
- PATH_SEPARATOR = @PATH_SEPARATOR@
504
- RANLIB = @RANLIB@
505
- RICE_CPPFLAGS = @RICE_CPPFLAGS@
506
- RICE_LDFLAGS = @RICE_LDFLAGS@
507
- RICE_ROOT = @RICE_ROOT@
508
- RICE_SAMPLES = @RICE_SAMPLES@
509
- RICE_USING_MINGW32 = @RICE_USING_MINGW32@
510
- RUBY = @RUBY@
511
- RUBY_CFLAGS = @RUBY_CFLAGS@
512
- RUBY_CPPFLAGS = @RUBY_CPPFLAGS@
513
- RUBY_CXXFLAGS = @RUBY_CXXFLAGS@
514
- RUBY_LDFLAGS = @RUBY_LDFLAGS@
515
- RUBY_LIBRUBYARG = @RUBY_LIBRUBYARG@
516
- RUBY_LIBRUBYARG_STATIC = @RUBY_LIBRUBYARG_STATIC@
517
- RUBY_LIBS = @RUBY_LIBS@
518
- RUBY_SITELIBDIR = @RUBY_SITELIBDIR@
519
- RUBY_VERSION_CODE = @RUBY_VERSION_CODE@
520
- SET_MAKE = @SET_MAKE@
521
- SHELL = @SHELL@
522
- STRIP = @STRIP@
523
- VERSION = @VERSION@
524
- abs_builddir = @abs_builddir@
525
- abs_srcdir = @abs_srcdir@
526
- abs_top_builddir = @abs_top_builddir@
527
- abs_top_srcdir = @abs_top_srcdir@
528
- ac_ct_CXX = @ac_ct_CXX@
529
- am__include = @am__include@
530
- am__leading_dot = @am__leading_dot@
531
- am__quote = @am__quote@
532
- am__tar = @am__tar@
533
- am__untar = @am__untar@
534
- bindir = @bindir@
535
- build = @build@
536
- build_alias = @build_alias@
537
- build_cpu = @build_cpu@
538
- build_os = @build_os@
539
- build_vendor = @build_vendor@
540
- builddir = @builddir@
541
- datadir = @datadir@
542
- datarootdir = @datarootdir@
543
- docdir = @docdir@
544
- dvidir = @dvidir@
545
- exec_prefix = @exec_prefix@
546
- host = @host@
547
- host_alias = @host_alias@
548
- host_cpu = @host_cpu@
549
- host_os = @host_os@
550
- host_vendor = @host_vendor@
551
- htmldir = @htmldir@
552
- includedir = @includedir@
553
- infodir = @infodir@
554
- install_sh = @install_sh@
555
- libdir = @libdir@
556
- libexecdir = @libexecdir@
557
- localedir = @localedir@
558
- localstatedir = @localstatedir@
559
- mandir = @mandir@
560
- mkdir_p = @mkdir_p@
561
- oldincludedir = @oldincludedir@
562
- pdfdir = @pdfdir@
563
- prefix = @prefix@
564
- program_transform_name = @program_transform_name@
565
- psdir = @psdir@
566
- sbindir = @sbindir@
567
- sharedstatedir = @sharedstatedir@
568
- srcdir = @srcdir@
569
- sysconfdir = @sysconfdir@
570
- target_alias = @target_alias@
571
- top_build_prefix = @top_build_prefix@
572
- top_builddir = @top_builddir@
573
- top_srcdir = @top_srcdir@
574
- SUBDIRS = ext
575
- unittest_SOURCES = \
576
- embed_ruby.cpp \
577
- unittest.cpp \
578
- test_Address_Registration_Guard.cpp \
579
- test_Array.cpp \
580
- test_Builtin_Object.cpp \
581
- test_Class.cpp \
582
- test_Constructor.cpp \
583
- test_Data_Object.cpp \
584
- test_Data_Type.cpp \
585
- test_Director.cpp \
586
- test_Enum.cpp \
587
- test_Exception.cpp \
588
- test_Hash.cpp \
589
- test_Identifier.cpp \
590
- test_Jump_Tag.cpp \
591
- test_Memory_Management.cpp \
592
- test_Module.cpp \
593
- test_Object.cpp \
594
- test_String.cpp \
595
- test_Struct.cpp \
596
- test_Symbol.cpp \
597
- test_To_From_Ruby.cpp \
598
- test_global_functions.cpp
599
-
600
- AM_CPPFLAGS = \
601
- -I.. \
602
- $(RUBY_CFLAGS)
603
-
604
- AM_CXXLAGS = \
605
- $(RUBY_CXXFLAGS)
606
-
607
- AM_LDFLAGS = \
608
- $(RUBY_LDFLAGS) \
609
- -L../rice
610
-
611
- all: all-recursive
612
-
613
- .SUFFIXES:
614
- .SUFFIXES: .cpp .log .o .obj .test .test$(EXEEXT) .trs
615
- $(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(am__configure_deps)
616
- @for dep in $?; do \
617
- case '$(am__configure_deps)' in \
618
- *$$dep*) \
619
- ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \
620
- && { if test -f $@; then exit 0; else break; fi; }; \
621
- exit 1;; \
622
- esac; \
623
- done; \
624
- echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu test/Makefile'; \
625
- $(am__cd) $(top_srcdir) && \
626
- $(AUTOMAKE) --gnu test/Makefile
627
- Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
628
- @case '$?' in \
629
- *config.status*) \
630
- cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \
631
- *) \
632
- echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__maybe_remake_depfiles)'; \
633
- cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__maybe_remake_depfiles);; \
634
- esac;
635
-
636
- $(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES)
637
- cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
638
-
639
- $(top_srcdir)/configure: $(am__configure_deps)
640
- cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
641
- $(ACLOCAL_M4): $(am__aclocal_m4_deps)
642
- cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
643
- $(am__aclocal_m4_deps):
644
-
645
- clean-noinstPROGRAMS:
646
- -test -z "$(noinst_PROGRAMS)" || rm -f $(noinst_PROGRAMS)
647
-
648
- unittest$(EXEEXT): $(unittest_OBJECTS) $(unittest_DEPENDENCIES) $(EXTRA_unittest_DEPENDENCIES)
649
- @rm -f unittest$(EXEEXT)
650
- $(AM_V_CXXLD)$(CXXLINK) $(unittest_OBJECTS) $(unittest_LDADD) $(LIBS)
651
-
652
- mostlyclean-compile:
653
- -rm -f *.$(OBJEXT)
654
-
655
- distclean-compile:
656
- -rm -f *.tab.c
657
-
658
- @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/embed_ruby.Po@am__quote@ # am--include-marker
659
- @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/test_Address_Registration_Guard.Po@am__quote@ # am--include-marker
660
- @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/test_Array.Po@am__quote@ # am--include-marker
661
- @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/test_Builtin_Object.Po@am__quote@ # am--include-marker
662
- @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/test_Class.Po@am__quote@ # am--include-marker
663
- @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/test_Constructor.Po@am__quote@ # am--include-marker
664
- @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/test_Data_Object.Po@am__quote@ # am--include-marker
665
- @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/test_Data_Type.Po@am__quote@ # am--include-marker
666
- @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/test_Director.Po@am__quote@ # am--include-marker
667
- @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/test_Enum.Po@am__quote@ # am--include-marker
668
- @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/test_Exception.Po@am__quote@ # am--include-marker
669
- @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/test_Hash.Po@am__quote@ # am--include-marker
670
- @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/test_Identifier.Po@am__quote@ # am--include-marker
671
- @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/test_Jump_Tag.Po@am__quote@ # am--include-marker
672
- @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/test_Memory_Management.Po@am__quote@ # am--include-marker
673
- @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/test_Module.Po@am__quote@ # am--include-marker
674
- @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/test_Object.Po@am__quote@ # am--include-marker
675
- @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/test_String.Po@am__quote@ # am--include-marker
676
- @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/test_Struct.Po@am__quote@ # am--include-marker
677
- @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/test_Symbol.Po@am__quote@ # am--include-marker
678
- @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/test_To_From_Ruby.Po@am__quote@ # am--include-marker
679
- @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/test_global_functions.Po@am__quote@ # am--include-marker
680
- @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/unittest.Po@am__quote@ # am--include-marker
681
-
682
- $(am__depfiles_remade):
683
- @$(MKDIR_P) $(@D)
684
- @echo '# dummy' >$@-t && $(am__mv) $@-t $@
685
-
686
- am--depfiles: $(am__depfiles_remade)
687
-
688
- .cpp.o:
689
- @am__fastdepCXX_TRUE@ $(AM_V_CXX)depbase=`echo $@ | sed 's|[^/]*$$|$(DEPDIR)/&|;s|\.o$$||'`;\
690
- @am__fastdepCXX_TRUE@ $(CXXCOMPILE) -MT $@ -MD -MP -MF $$depbase.Tpo -c -o $@ $< &&\
691
- @am__fastdepCXX_TRUE@ $(am__mv) $$depbase.Tpo $$depbase.Po
692
- @AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='$<' object='$@' libtool=no @AMDEPBACKSLASH@
693
- @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
694
- @am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXXCOMPILE) -c -o $@ $<
695
-
696
- .cpp.obj:
697
- @am__fastdepCXX_TRUE@ $(AM_V_CXX)depbase=`echo $@ | sed 's|[^/]*$$|$(DEPDIR)/&|;s|\.obj$$||'`;\
698
- @am__fastdepCXX_TRUE@ $(CXXCOMPILE) -MT $@ -MD -MP -MF $$depbase.Tpo -c -o $@ `$(CYGPATH_W) '$<'` &&\
699
- @am__fastdepCXX_TRUE@ $(am__mv) $$depbase.Tpo $$depbase.Po
700
- @AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='$<' object='$@' libtool=no @AMDEPBACKSLASH@
701
- @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
702
- @am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXXCOMPILE) -c -o $@ `$(CYGPATH_W) '$<'`
703
-
704
- # This directory's subdirectories are mostly independent; you can cd
705
- # into them and run 'make' without going through this Makefile.
706
- # To change the values of 'make' variables: instead of editing Makefiles,
707
- # (1) if the variable is set in 'config.status', edit 'config.status'
708
- # (which will cause the Makefiles to be regenerated when you run 'make');
709
- # (2) otherwise, pass the desired values on the 'make' command line.
710
- $(am__recursive_targets):
711
- @fail=; \
712
- if $(am__make_keepgoing); then \
713
- failcom='fail=yes'; \
714
- else \
715
- failcom='exit 1'; \
716
- fi; \
717
- dot_seen=no; \
718
- target=`echo $@ | sed s/-recursive//`; \
719
- case "$@" in \
720
- distclean-* | maintainer-clean-*) list='$(DIST_SUBDIRS)' ;; \
721
- *) list='$(SUBDIRS)' ;; \
722
- esac; \
723
- for subdir in $$list; do \
724
- echo "Making $$target in $$subdir"; \
725
- if test "$$subdir" = "."; then \
726
- dot_seen=yes; \
727
- local_target="$$target-am"; \
728
- else \
729
- local_target="$$target"; \
730
- fi; \
731
- ($(am__cd) $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$local_target) \
732
- || eval $$failcom; \
733
- done; \
734
- if test "$$dot_seen" = "no"; then \
735
- $(MAKE) $(AM_MAKEFLAGS) "$$target-am" || exit 1; \
736
- fi; test -z "$$fail"
737
-
738
- ID: $(am__tagged_files)
739
- $(am__define_uniq_tagged_files); mkid -fID $$unique
740
- tags: tags-recursive
741
- TAGS: tags
742
-
743
- tags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files)
744
- set x; \
745
- here=`pwd`; \
746
- if ($(ETAGS) --etags-include --version) >/dev/null 2>&1; then \
747
- include_option=--etags-include; \
748
- empty_fix=.; \
749
- else \
750
- include_option=--include; \
751
- empty_fix=; \
752
- fi; \
753
- list='$(SUBDIRS)'; for subdir in $$list; do \
754
- if test "$$subdir" = .; then :; else \
755
- test ! -f $$subdir/TAGS || \
756
- set "$$@" "$$include_option=$$here/$$subdir/TAGS"; \
757
- fi; \
758
- done; \
759
- $(am__define_uniq_tagged_files); \
760
- shift; \
761
- if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \
762
- test -n "$$unique" || unique=$$empty_fix; \
763
- if test $$# -gt 0; then \
764
- $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \
765
- "$$@" $$unique; \
766
- else \
767
- $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \
768
- $$unique; \
769
- fi; \
770
- fi
771
- ctags: ctags-recursive
772
-
773
- CTAGS: ctags
774
- ctags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files)
775
- $(am__define_uniq_tagged_files); \
776
- test -z "$(CTAGS_ARGS)$$unique" \
777
- || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \
778
- $$unique
779
-
780
- GTAGS:
781
- here=`$(am__cd) $(top_builddir) && pwd` \
782
- && $(am__cd) $(top_srcdir) \
783
- && gtags -i $(GTAGS_ARGS) "$$here"
784
- cscopelist: cscopelist-recursive
785
-
786
- cscopelist-am: $(am__tagged_files)
787
- list='$(am__tagged_files)'; \
788
- case "$(srcdir)" in \
789
- [\\/]* | ?:[\\/]*) sdir="$(srcdir)" ;; \
790
- *) sdir=$(subdir)/$(srcdir) ;; \
791
- esac; \
792
- for i in $$list; do \
793
- if test -f "$$i"; then \
794
- echo "$(subdir)/$$i"; \
795
- else \
796
- echo "$$sdir/$$i"; \
797
- fi; \
798
- done >> $(top_builddir)/cscope.files
799
-
800
- distclean-tags:
801
- -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags
802
-
803
- # Recover from deleted '.trs' file; this should ensure that
804
- # "rm -f foo.log; make foo.trs" re-run 'foo.test', and re-create
805
- # both 'foo.log' and 'foo.trs'. Break the recipe in two subshells
806
- # to avoid problems with "make -n".
807
- .log.trs:
808
- rm -f $< $@
809
- $(MAKE) $(AM_MAKEFLAGS) $<
810
-
811
- # Leading 'am--fnord' is there to ensure the list of targets does not
812
- # expand to empty, as could happen e.g. with make check TESTS=''.
813
- am--fnord $(TEST_LOGS) $(TEST_LOGS:.log=.trs): $(am__force_recheck)
814
- am--force-recheck:
815
- @:
816
-
817
- $(TEST_SUITE_LOG): $(TEST_LOGS)
818
- @$(am__set_TESTS_bases); \
819
- am__f_ok () { test -f "$$1" && test -r "$$1"; }; \
820
- redo_bases=`for i in $$bases; do \
821
- am__f_ok $$i.trs && am__f_ok $$i.log || echo $$i; \
822
- done`; \
823
- if test -n "$$redo_bases"; then \
824
- redo_logs=`for i in $$redo_bases; do echo $$i.log; done`; \
825
- redo_results=`for i in $$redo_bases; do echo $$i.trs; done`; \
826
- if $(am__make_dryrun); then :; else \
827
- rm -f $$redo_logs && rm -f $$redo_results || exit 1; \
828
- fi; \
829
- fi; \
830
- if test -n "$$am__remaking_logs"; then \
831
- echo "fatal: making $(TEST_SUITE_LOG): possible infinite" \
832
- "recursion detected" >&2; \
833
- elif test -n "$$redo_logs"; then \
834
- am__remaking_logs=yes $(MAKE) $(AM_MAKEFLAGS) $$redo_logs; \
835
- fi; \
836
- if $(am__make_dryrun); then :; else \
837
- st=0; \
838
- errmsg="fatal: making $(TEST_SUITE_LOG): failed to create"; \
839
- for i in $$redo_bases; do \
840
- test -f $$i.trs && test -r $$i.trs \
841
- || { echo "$$errmsg $$i.trs" >&2; st=1; }; \
842
- test -f $$i.log && test -r $$i.log \
843
- || { echo "$$errmsg $$i.log" >&2; st=1; }; \
844
- done; \
845
- test $$st -eq 0 || exit 1; \
846
- fi
847
- @$(am__sh_e_setup); $(am__tty_colors); $(am__set_TESTS_bases); \
848
- ws='[ ]'; \
849
- results=`for b in $$bases; do echo $$b.trs; done`; \
850
- test -n "$$results" || results=/dev/null; \
851
- all=` grep "^$$ws*:test-result:" $$results | wc -l`; \
852
- pass=` grep "^$$ws*:test-result:$$ws*PASS" $$results | wc -l`; \
853
- fail=` grep "^$$ws*:test-result:$$ws*FAIL" $$results | wc -l`; \
854
- skip=` grep "^$$ws*:test-result:$$ws*SKIP" $$results | wc -l`; \
855
- xfail=`grep "^$$ws*:test-result:$$ws*XFAIL" $$results | wc -l`; \
856
- xpass=`grep "^$$ws*:test-result:$$ws*XPASS" $$results | wc -l`; \
857
- error=`grep "^$$ws*:test-result:$$ws*ERROR" $$results | wc -l`; \
858
- if test `expr $$fail + $$xpass + $$error` -eq 0; then \
859
- success=true; \
860
- else \
861
- success=false; \
862
- fi; \
863
- br='==================='; br=$$br$$br$$br$$br; \
864
- result_count () \
865
- { \
866
- if test x"$$1" = x"--maybe-color"; then \
867
- maybe_colorize=yes; \
868
- elif test x"$$1" = x"--no-color"; then \
869
- maybe_colorize=no; \
870
- else \
871
- echo "$@: invalid 'result_count' usage" >&2; exit 4; \
872
- fi; \
873
- shift; \
874
- desc=$$1 count=$$2; \
875
- if test $$maybe_colorize = yes && test $$count -gt 0; then \
876
- color_start=$$3 color_end=$$std; \
877
- else \
878
- color_start= color_end=; \
879
- fi; \
880
- echo "$${color_start}# $$desc $$count$${color_end}"; \
881
- }; \
882
- create_testsuite_report () \
883
- { \
884
- result_count $$1 "TOTAL:" $$all "$$brg"; \
885
- result_count $$1 "PASS: " $$pass "$$grn"; \
886
- result_count $$1 "SKIP: " $$skip "$$blu"; \
887
- result_count $$1 "XFAIL:" $$xfail "$$lgn"; \
888
- result_count $$1 "FAIL: " $$fail "$$red"; \
889
- result_count $$1 "XPASS:" $$xpass "$$red"; \
890
- result_count $$1 "ERROR:" $$error "$$mgn"; \
891
- }; \
892
- { \
893
- echo "$(PACKAGE_STRING): $(subdir)/$(TEST_SUITE_LOG)" | \
894
- $(am__rst_title); \
895
- create_testsuite_report --no-color; \
896
- echo; \
897
- echo ".. contents:: :depth: 2"; \
898
- echo; \
899
- for b in $$bases; do echo $$b; done \
900
- | $(am__create_global_log); \
901
- } >$(TEST_SUITE_LOG).tmp || exit 1; \
902
- mv $(TEST_SUITE_LOG).tmp $(TEST_SUITE_LOG); \
903
- if $$success; then \
904
- col="$$grn"; \
905
- else \
906
- col="$$red"; \
907
- test x"$$VERBOSE" = x || cat $(TEST_SUITE_LOG); \
908
- fi; \
909
- echo "$${col}$$br$${std}"; \
910
- echo "$${col}Testsuite summary"$(AM_TESTSUITE_SUMMARY_HEADER)"$${std}"; \
911
- echo "$${col}$$br$${std}"; \
912
- create_testsuite_report --maybe-color; \
913
- echo "$$col$$br$$std"; \
914
- if $$success; then :; else \
915
- echo "$${col}See $(subdir)/$(TEST_SUITE_LOG)$${std}"; \
916
- if test -n "$(PACKAGE_BUGREPORT)"; then \
917
- echo "$${col}Please report to $(PACKAGE_BUGREPORT)$${std}"; \
918
- fi; \
919
- echo "$$col$$br$$std"; \
920
- fi; \
921
- $$success || exit 1
922
-
923
- check-TESTS:
924
- @list='$(RECHECK_LOGS)'; test -z "$$list" || rm -f $$list
925
- @list='$(RECHECK_LOGS:.log=.trs)'; test -z "$$list" || rm -f $$list
926
- @test -z "$(TEST_SUITE_LOG)" || rm -f $(TEST_SUITE_LOG)
927
- @set +e; $(am__set_TESTS_bases); \
928
- log_list=`for i in $$bases; do echo $$i.log; done`; \
929
- trs_list=`for i in $$bases; do echo $$i.trs; done`; \
930
- log_list=`echo $$log_list`; trs_list=`echo $$trs_list`; \
931
- $(MAKE) $(AM_MAKEFLAGS) $(TEST_SUITE_LOG) TEST_LOGS="$$log_list"; \
932
- exit $$?;
933
- recheck: all
934
- @test -z "$(TEST_SUITE_LOG)" || rm -f $(TEST_SUITE_LOG)
935
- @set +e; $(am__set_TESTS_bases); \
936
- bases=`for i in $$bases; do echo $$i; done \
937
- | $(am__list_recheck_tests)` || exit 1; \
938
- log_list=`for i in $$bases; do echo $$i.log; done`; \
939
- log_list=`echo $$log_list`; \
940
- $(MAKE) $(AM_MAKEFLAGS) $(TEST_SUITE_LOG) \
941
- am__force_recheck=am--force-recheck \
942
- TEST_LOGS="$$log_list"; \
943
- exit $$?
944
- unittest.log: unittest$(EXEEXT)
945
- @p='unittest$(EXEEXT)'; \
946
- b='unittest'; \
947
- $(am__check_pre) $(LOG_DRIVER) --test-name "$$f" \
948
- --log-file $$b.log --trs-file $$b.trs \
949
- $(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \
950
- "$$tst" $(AM_TESTS_FD_REDIRECT)
951
- .test.log:
952
- @p='$<'; \
953
- $(am__set_b); \
954
- $(am__check_pre) $(TEST_LOG_DRIVER) --test-name "$$f" \
955
- --log-file $$b.log --trs-file $$b.trs \
956
- $(am__common_driver_flags) $(AM_TEST_LOG_DRIVER_FLAGS) $(TEST_LOG_DRIVER_FLAGS) -- $(TEST_LOG_COMPILE) \
957
- "$$tst" $(AM_TESTS_FD_REDIRECT)
958
- @am__EXEEXT_TRUE@.test$(EXEEXT).log:
959
- @am__EXEEXT_TRUE@ @p='$<'; \
960
- @am__EXEEXT_TRUE@ $(am__set_b); \
961
- @am__EXEEXT_TRUE@ $(am__check_pre) $(TEST_LOG_DRIVER) --test-name "$$f" \
962
- @am__EXEEXT_TRUE@ --log-file $$b.log --trs-file $$b.trs \
963
- @am__EXEEXT_TRUE@ $(am__common_driver_flags) $(AM_TEST_LOG_DRIVER_FLAGS) $(TEST_LOG_DRIVER_FLAGS) -- $(TEST_LOG_COMPILE) \
964
- @am__EXEEXT_TRUE@ "$$tst" $(AM_TESTS_FD_REDIRECT)
965
-
966
- distdir: $(BUILT_SOURCES)
967
- $(MAKE) $(AM_MAKEFLAGS) distdir-am
968
-
969
- distdir-am: $(DISTFILES)
970
- @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
971
- topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
972
- list='$(DISTFILES)'; \
973
- dist_files=`for file in $$list; do echo $$file; done | \
974
- sed -e "s|^$$srcdirstrip/||;t" \
975
- -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \
976
- case $$dist_files in \
977
- */*) eval $(MKDIR_P) `echo "$$dist_files" | \
978
- sed '/\//!d;s|^|"$(distdir)"/|;s,/[^/]*$$,,' | \
979
- sort -u` ;; \
980
- esac; \
981
- for file in $$dist_files; do \
982
- if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \
983
- if test -d $$d/$$file; then \
984
- dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \
985
- if test -d "$(distdir)/$$file"; then \
986
- find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \
987
- fi; \
988
- if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \
989
- cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \
990
- find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \
991
- fi; \
992
- cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \
993
- else \
994
- test -f "$(distdir)/$$file" \
995
- || cp -p $$d/$$file "$(distdir)/$$file" \
996
- || exit 1; \
997
- fi; \
998
- done
999
- @list='$(DIST_SUBDIRS)'; for subdir in $$list; do \
1000
- if test "$$subdir" = .; then :; else \
1001
- $(am__make_dryrun) \
1002
- || test -d "$(distdir)/$$subdir" \
1003
- || $(MKDIR_P) "$(distdir)/$$subdir" \
1004
- || exit 1; \
1005
- dir1=$$subdir; dir2="$(distdir)/$$subdir"; \
1006
- $(am__relativize); \
1007
- new_distdir=$$reldir; \
1008
- dir1=$$subdir; dir2="$(top_distdir)"; \
1009
- $(am__relativize); \
1010
- new_top_distdir=$$reldir; \
1011
- echo " (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) top_distdir="$$new_top_distdir" distdir="$$new_distdir" \\"; \
1012
- echo " am__remove_distdir=: am__skip_length_check=: am__skip_mode_fix=: distdir)"; \
1013
- ($(am__cd) $$subdir && \
1014
- $(MAKE) $(AM_MAKEFLAGS) \
1015
- top_distdir="$$new_top_distdir" \
1016
- distdir="$$new_distdir" \
1017
- am__remove_distdir=: \
1018
- am__skip_length_check=: \
1019
- am__skip_mode_fix=: \
1020
- distdir) \
1021
- || exit 1; \
1022
- fi; \
1023
- done
1024
- check-am: all-am
1025
- $(MAKE) $(AM_MAKEFLAGS) check-TESTS
1026
- check: check-recursive
1027
- all-am: Makefile $(PROGRAMS)
1028
- installdirs: installdirs-recursive
1029
- installdirs-am:
1030
- install: install-recursive
1031
- install-exec: install-exec-recursive
1032
- install-data: install-data-recursive
1033
- uninstall: uninstall-recursive
1034
-
1035
- install-am: all-am
1036
- @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am
1037
-
1038
- installcheck: installcheck-recursive
1039
- install-strip:
1040
- if test -z '$(STRIP)'; then \
1041
- $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \
1042
- install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \
1043
- install; \
1044
- else \
1045
- $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \
1046
- install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \
1047
- "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'" install; \
1048
- fi
1049
- mostlyclean-generic:
1050
- -test -z "$(TEST_LOGS)" || rm -f $(TEST_LOGS)
1051
- -test -z "$(TEST_LOGS:.log=.trs)" || rm -f $(TEST_LOGS:.log=.trs)
1052
- -test -z "$(TEST_SUITE_LOG)" || rm -f $(TEST_SUITE_LOG)
1053
-
1054
- clean-generic:
1055
-
1056
- distclean-generic:
1057
- -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES)
1058
- -test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES)
1059
-
1060
- maintainer-clean-generic:
1061
- @echo "This command is intended for maintainers to use"
1062
- @echo "it deletes files that may require special tools to rebuild."
1063
- clean: clean-recursive
1064
-
1065
- clean-am: clean-generic clean-noinstPROGRAMS mostlyclean-am
1066
-
1067
- distclean: distclean-recursive
1068
- -rm -f ./$(DEPDIR)/embed_ruby.Po
1069
- -rm -f ./$(DEPDIR)/test_Address_Registration_Guard.Po
1070
- -rm -f ./$(DEPDIR)/test_Array.Po
1071
- -rm -f ./$(DEPDIR)/test_Builtin_Object.Po
1072
- -rm -f ./$(DEPDIR)/test_Class.Po
1073
- -rm -f ./$(DEPDIR)/test_Constructor.Po
1074
- -rm -f ./$(DEPDIR)/test_Data_Object.Po
1075
- -rm -f ./$(DEPDIR)/test_Data_Type.Po
1076
- -rm -f ./$(DEPDIR)/test_Director.Po
1077
- -rm -f ./$(DEPDIR)/test_Enum.Po
1078
- -rm -f ./$(DEPDIR)/test_Exception.Po
1079
- -rm -f ./$(DEPDIR)/test_Hash.Po
1080
- -rm -f ./$(DEPDIR)/test_Identifier.Po
1081
- -rm -f ./$(DEPDIR)/test_Jump_Tag.Po
1082
- -rm -f ./$(DEPDIR)/test_Memory_Management.Po
1083
- -rm -f ./$(DEPDIR)/test_Module.Po
1084
- -rm -f ./$(DEPDIR)/test_Object.Po
1085
- -rm -f ./$(DEPDIR)/test_String.Po
1086
- -rm -f ./$(DEPDIR)/test_Struct.Po
1087
- -rm -f ./$(DEPDIR)/test_Symbol.Po
1088
- -rm -f ./$(DEPDIR)/test_To_From_Ruby.Po
1089
- -rm -f ./$(DEPDIR)/test_global_functions.Po
1090
- -rm -f ./$(DEPDIR)/unittest.Po
1091
- -rm -f Makefile
1092
- distclean-am: clean-am distclean-compile distclean-generic \
1093
- distclean-tags
1094
-
1095
- dvi: dvi-recursive
1096
-
1097
- dvi-am:
1098
-
1099
- html: html-recursive
1100
-
1101
- html-am:
1102
-
1103
- info: info-recursive
1104
-
1105
- info-am:
1106
-
1107
- install-data-am:
1108
-
1109
- install-dvi: install-dvi-recursive
1110
-
1111
- install-dvi-am:
1112
-
1113
- install-exec-am:
1114
-
1115
- install-html: install-html-recursive
1116
-
1117
- install-html-am:
1118
-
1119
- install-info: install-info-recursive
1120
-
1121
- install-info-am:
1122
-
1123
- install-man:
1124
-
1125
- install-pdf: install-pdf-recursive
1126
-
1127
- install-pdf-am:
1128
-
1129
- install-ps: install-ps-recursive
1130
-
1131
- install-ps-am:
1132
-
1133
- installcheck-am:
1134
-
1135
- maintainer-clean: maintainer-clean-recursive
1136
- -rm -f ./$(DEPDIR)/embed_ruby.Po
1137
- -rm -f ./$(DEPDIR)/test_Address_Registration_Guard.Po
1138
- -rm -f ./$(DEPDIR)/test_Array.Po
1139
- -rm -f ./$(DEPDIR)/test_Builtin_Object.Po
1140
- -rm -f ./$(DEPDIR)/test_Class.Po
1141
- -rm -f ./$(DEPDIR)/test_Constructor.Po
1142
- -rm -f ./$(DEPDIR)/test_Data_Object.Po
1143
- -rm -f ./$(DEPDIR)/test_Data_Type.Po
1144
- -rm -f ./$(DEPDIR)/test_Director.Po
1145
- -rm -f ./$(DEPDIR)/test_Enum.Po
1146
- -rm -f ./$(DEPDIR)/test_Exception.Po
1147
- -rm -f ./$(DEPDIR)/test_Hash.Po
1148
- -rm -f ./$(DEPDIR)/test_Identifier.Po
1149
- -rm -f ./$(DEPDIR)/test_Jump_Tag.Po
1150
- -rm -f ./$(DEPDIR)/test_Memory_Management.Po
1151
- -rm -f ./$(DEPDIR)/test_Module.Po
1152
- -rm -f ./$(DEPDIR)/test_Object.Po
1153
- -rm -f ./$(DEPDIR)/test_String.Po
1154
- -rm -f ./$(DEPDIR)/test_Struct.Po
1155
- -rm -f ./$(DEPDIR)/test_Symbol.Po
1156
- -rm -f ./$(DEPDIR)/test_To_From_Ruby.Po
1157
- -rm -f ./$(DEPDIR)/test_global_functions.Po
1158
- -rm -f ./$(DEPDIR)/unittest.Po
1159
- -rm -f Makefile
1160
- maintainer-clean-am: distclean-am maintainer-clean-generic
1161
-
1162
- mostlyclean: mostlyclean-recursive
1163
-
1164
- mostlyclean-am: mostlyclean-compile mostlyclean-generic
1165
-
1166
- pdf: pdf-recursive
1167
-
1168
- pdf-am:
1169
-
1170
- ps: ps-recursive
1171
-
1172
- ps-am:
1173
-
1174
- uninstall-am:
1175
-
1176
- .MAKE: $(am__recursive_targets) check-am install-am install-strip
1177
-
1178
- .PHONY: $(am__recursive_targets) CTAGS GTAGS TAGS all all-am \
1179
- am--depfiles check check-TESTS check-am clean clean-generic \
1180
- clean-noinstPROGRAMS cscopelist-am ctags ctags-am distclean \
1181
- distclean-compile distclean-generic distclean-tags distdir dvi \
1182
- dvi-am html html-am info info-am install install-am \
1183
- install-data install-data-am install-dvi install-dvi-am \
1184
- install-exec install-exec-am install-html install-html-am \
1185
- install-info install-info-am install-man install-pdf \
1186
- install-pdf-am install-ps install-ps-am install-strip \
1187
- installcheck installcheck-am installdirs installdirs-am \
1188
- maintainer-clean maintainer-clean-generic mostlyclean \
1189
- mostlyclean-compile mostlyclean-generic pdf pdf-am ps ps-am \
1190
- recheck tags tags-am uninstall uninstall-am
1191
-
1192
- .PRECIOUS: Makefile
1193
-
1194
-
1195
- check: run_multiple_extensions_test
1196
-
1197
- .PHONY: run_multiple_extensions_test
1198
-
1199
- run_multiple_extensions_test:
1200
- $(RUBY) test_multiple_extensions.rb
1201
-
1202
- check: run_multiple_extensions_with_inheritance_test
1203
-
1204
- .PHONY: run_multiple_extensions_with_inheritance_test
1205
-
1206
- run_multiple_extensions_with_inheritance_test:
1207
- $(RUBY) test_multiple_extensions_with_inheritance.rb
1208
-
1209
- check: run_multiple_extensions_same_class_test
1210
-
1211
- .PHONY: run_multiple_extensions_same_class_test
1212
-
1213
- run_multiple_extensions_same_class_test:
1214
- $(RUBY) test_multiple_extensions_same_class.rb
1215
- $(RUBY_CPPFLAGS)
1216
-
1217
- # Tell versions [3.59,3.63) of GNU make to not export all variables.
1218
- # Otherwise a system limit (for SysV at least) may be exceeded.
1219
- .NOEXPORT: