rice 2.1.3 → 4.0.2

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