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