rice 3.0.0 → 4.0.3

Sign up to get free protection for your applications and to get access to all the features.
Files changed (238) hide show
  1. checksums.yaml +4 -4
  2. data/CHANGELOG.md +121 -0
  3. data/CONTRIBUTORS.md +19 -0
  4. data/Gemfile +3 -0
  5. data/README.md +44 -1025
  6. data/Rakefile +95 -12
  7. data/include/rice/rice.hpp +7766 -0
  8. data/include/rice/stl.hpp +1113 -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 +12 -14
  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 +11 -6
  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 -46
  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 +3 -0
  71. data/sample/callbacks/sample_callbacks.cpp +10 -13
  72. data/sample/enum/extconf.rb +3 -0
  73. data/sample/enum/sample_enum.cpp +3 -17
  74. data/sample/enum/test.rb +2 -2
  75. data/sample/inheritance/animals.cpp +8 -24
  76. data/sample/inheritance/extconf.rb +3 -0
  77. data/sample/inheritance/test.rb +1 -1
  78. data/sample/map/extconf.rb +3 -0
  79. data/sample/map/map.cpp +10 -18
  80. data/sample/map/test.rb +1 -1
  81. data/test/embed_ruby.cpp +18 -5
  82. data/test/ext/t1/extconf.rb +3 -0
  83. data/test/ext/t1/t1.cpp +1 -3
  84. data/test/ext/t2/extconf.rb +3 -0
  85. data/test/ext/t2/t2.cpp +1 -1
  86. data/test/extconf.rb +23 -0
  87. data/test/ruby/test_callbacks_sample.rb +28 -0
  88. data/test/ruby/test_multiple_extensions.rb +18 -0
  89. data/test/ruby/test_multiple_extensions_same_class.rb +14 -0
  90. data/test/ruby/test_multiple_extensions_with_inheritance.rb +20 -0
  91. data/test/test_Address_Registration_Guard.cpp +23 -10
  92. data/test/test_Array.cpp +129 -73
  93. data/test/test_Attribute.cpp +147 -0
  94. data/test/test_Builtin_Object.cpp +34 -14
  95. data/test/test_Class.cpp +149 -275
  96. data/test/test_Constructor.cpp +10 -9
  97. data/test/test_Data_Object.cpp +133 -192
  98. data/test/test_Data_Type.cpp +322 -252
  99. data/test/test_Director.cpp +54 -41
  100. data/test/test_Enum.cpp +228 -103
  101. data/test/test_Exception.cpp +5 -6
  102. data/test/test_Hash.cpp +31 -30
  103. data/test/test_Identifier.cpp +4 -5
  104. data/test/test_Inheritance.cpp +221 -0
  105. data/test/test_Iterator.cpp +161 -0
  106. data/test/test_Jump_Tag.cpp +1 -1
  107. data/test/test_Keep_Alive.cpp +161 -0
  108. data/test/test_Memory_Management.cpp +2 -4
  109. data/test/test_Module.cpp +167 -110
  110. data/test/test_Object.cpp +41 -21
  111. data/test/test_Ownership.cpp +275 -0
  112. data/test/test_Self.cpp +205 -0
  113. data/test/test_Stl_Optional.cpp +90 -0
  114. data/test/test_Stl_Pair.cpp +144 -0
  115. data/test/test_Stl_SmartPointer.cpp +200 -0
  116. data/test/test_Stl_String.cpp +74 -0
  117. data/test/test_Stl_Vector.cpp +652 -0
  118. data/test/test_String.cpp +1 -2
  119. data/test/test_Struct.cpp +29 -39
  120. data/test/test_Symbol.cpp +1 -2
  121. data/test/test_To_From_Ruby.cpp +249 -285
  122. data/test/test_global_functions.cpp +39 -19
  123. data/test/unittest.hpp +0 -4
  124. metadata +70 -141
  125. data/Doxyfile +0 -2268
  126. data/Makefile.am +0 -26
  127. data/Makefile.in +0 -931
  128. data/README.mingw +0 -8
  129. data/aclocal.m4 +0 -1085
  130. data/ax_cxx_compile_stdcxx.m4 +0 -951
  131. data/bootstrap +0 -8
  132. data/config.guess +0 -1421
  133. data/config.sub +0 -1807
  134. data/configure +0 -7792
  135. data/configure.ac +0 -55
  136. data/depcomp +0 -791
  137. data/doxygen.ac +0 -314
  138. data/doxygen.am +0 -186
  139. data/extconf.rb +0 -70
  140. data/install-sh +0 -501
  141. data/missing +0 -215
  142. data/post-autoconf.rb +0 -22
  143. data/post-automake.rb +0 -28
  144. data/rice/Address_Registration_Guard.cpp +0 -22
  145. data/rice/Arg_impl.hpp +0 -129
  146. data/rice/Arg_operators.cpp +0 -21
  147. data/rice/Arg_operators.hpp +0 -19
  148. data/rice/Array.hpp +0 -214
  149. data/rice/Array.ipp +0 -256
  150. data/rice/Builtin_Object.hpp +0 -8
  151. data/rice/Builtin_Object.ipp +0 -50
  152. data/rice/Builtin_Object_defn.hpp +0 -50
  153. data/rice/Class.cpp +0 -57
  154. data/rice/Class.hpp +0 -8
  155. data/rice/Class.ipp +0 -6
  156. data/rice/Class_defn.hpp +0 -84
  157. data/rice/Data_Type.cpp +0 -54
  158. data/rice/Data_Type_fwd.hpp +0 -12
  159. data/rice/Director.cpp +0 -13
  160. data/rice/Exception.cpp +0 -54
  161. data/rice/Exception_Base.hpp +0 -8
  162. data/rice/Exception_Base.ipp +0 -13
  163. data/rice/Exception_Base_defn.hpp +0 -27
  164. data/rice/Hash.hpp +0 -230
  165. data/rice/Hash.ipp +0 -329
  166. data/rice/Identifier.cpp +0 -8
  167. data/rice/Jump_Tag.hpp +0 -24
  168. data/rice/Makefile.am +0 -121
  169. data/rice/Makefile.in +0 -884
  170. data/rice/Module.cpp +0 -84
  171. data/rice/Module.hpp +0 -8
  172. data/rice/Module.ipp +0 -6
  173. data/rice/Module_defn.hpp +0 -88
  174. data/rice/Module_impl.hpp +0 -281
  175. data/rice/Module_impl.ipp +0 -345
  176. data/rice/Object.cpp +0 -169
  177. data/rice/Object.hpp +0 -8
  178. data/rice/Object.ipp +0 -33
  179. data/rice/Object_defn.hpp +0 -214
  180. data/rice/Require_Guard.hpp +0 -21
  181. data/rice/String.cpp +0 -89
  182. data/rice/String.hpp +0 -91
  183. data/rice/Struct.cpp +0 -117
  184. data/rice/Struct.hpp +0 -162
  185. data/rice/Struct.ipp +0 -26
  186. data/rice/Symbol.cpp +0 -25
  187. data/rice/Symbol.hpp +0 -66
  188. data/rice/Symbol.ipp +0 -44
  189. data/rice/config.hpp +0 -47
  190. data/rice/config.hpp.in +0 -46
  191. data/rice/detail/Arguments.hpp +0 -118
  192. data/rice/detail/Auto_Function_Wrapper.hpp +0 -898
  193. data/rice/detail/Auto_Function_Wrapper.ipp +0 -3181
  194. data/rice/detail/Auto_Member_Function_Wrapper.hpp +0 -897
  195. data/rice/detail/Auto_Member_Function_Wrapper.ipp +0 -2501
  196. data/rice/detail/Caster.hpp +0 -103
  197. data/rice/detail/Not_Copyable.hpp +0 -25
  198. data/rice/detail/Wrapped_Function.hpp +0 -33
  199. data/rice/detail/cfp.hpp +0 -24
  200. data/rice/detail/cfp.ipp +0 -51
  201. data/rice/detail/check_ruby_type.cpp +0 -27
  202. data/rice/detail/check_ruby_type.hpp +0 -23
  203. data/rice/detail/creation_funcs.hpp +0 -37
  204. data/rice/detail/creation_funcs.ipp +0 -36
  205. data/rice/detail/define_method_and_auto_wrap.hpp +0 -31
  206. data/rice/detail/define_method_and_auto_wrap.ipp +0 -30
  207. data/rice/detail/demangle.cpp +0 -56
  208. data/rice/detail/demangle.hpp +0 -19
  209. data/rice/detail/env.hpp +0 -11
  210. data/rice/detail/method_data.cpp +0 -92
  211. data/rice/detail/node.hpp +0 -13
  212. data/rice/detail/protect.cpp +0 -29
  213. data/rice/detail/protect.hpp +0 -34
  214. data/rice/detail/ruby_version_code.hpp +0 -6
  215. data/rice/detail/ruby_version_code.hpp.in +0 -6
  216. data/rice/detail/st.hpp +0 -22
  217. data/rice/detail/win32.hpp +0 -16
  218. data/rice/detail/wrap_function.hpp +0 -66
  219. data/rice/protect.hpp +0 -38
  220. data/rice/protect.ipp +0 -1134
  221. data/rice/rubypp.rb +0 -97
  222. data/rice/to_from_ruby.hpp +0 -8
  223. data/rice/to_from_ruby.ipp +0 -418
  224. data/rice/to_from_ruby_defn.hpp +0 -70
  225. data/ruby/Makefile.am +0 -1
  226. data/ruby/Makefile.in +0 -628
  227. data/ruby/lib/Makefile.am +0 -3
  228. data/ruby/lib/Makefile.in +0 -506
  229. data/ruby/lib/mkmf-rice.rb.in +0 -217
  230. data/ruby/lib/version.rb +0 -3
  231. data/ruby.ac +0 -135
  232. data/sample/Makefile.am +0 -53
  233. data/sample/Makefile.in +0 -495
  234. data/test/Makefile.am +0 -73
  235. data/test/Makefile.in +0 -1219
  236. data/test/ext/Makefile.am +0 -41
  237. data/test/ext/Makefile.in +0 -483
  238. data/test/test_rice.rb +0 -45
data/Makefile.in DELETED
@@ -1,931 +0,0 @@
1
- # Makefile.in generated by automake 1.16.3 from Makefile.am.
2
- # @configure_input@
3
-
4
- # Copyright (C) 1994-2020 Free Software Foundation, Inc.
5
-
6
- # This Makefile.in is free software; the Free Software Foundation
7
- # gives unlimited permission to copy and/or distribute it,
8
- # with or without modifications, as long as this notice is preserved.
9
-
10
- # This program is distributed in the hope that it will be useful,
11
- # but WITHOUT ANY WARRANTY, to the extent permitted by law; without
12
- # even the implied warranty of MERCHANTABILITY or FITNESS FOR A
13
- # PARTICULAR PURPOSE.
14
-
15
- @SET_MAKE@
16
-
17
- # Copyright (C) 2004 Oren Ben-Kiki
18
- # This file is distributed under the same terms as the Automake macro files.
19
-
20
- # Generate automatic documentation using Doxygen. Goals and variables values
21
- # are controlled by the various DX_COND_??? conditionals set by autoconf.
22
- #
23
- # The provided goals are:
24
- # doxygen-doc: Generate all doxygen documentation.
25
- # doxygen-run: Run doxygen, which will generate some of the documentation
26
- # (HTML, CHM, CHI, MAN, RTF, XML) but will not do the post
27
- # processing required for the rest of it (PS, PDF, and some MAN).
28
- # doxygen-man: Rename some doxygen generated man pages.
29
- # doxygen-ps: Generate doxygen PostScript documentation.
30
- # doxygen-pdf: Generate doxygen PDF documentation.
31
- #
32
- # Note that by default these are not integrated into the automake goals. If
33
- # doxygen is used to generate man pages, you can achieve this integration by
34
- # setting man3_MANS to the list of man pages generated and then adding the
35
- # dependency:
36
- #
37
- # $(man3_MANS): doxygen-doc
38
- #
39
- # This will cause make to run doxygen and generate all the documentation.
40
- #
41
- # The following variable is intended for use in Makefile.am:
42
- #
43
- # DX_CLEANFILES = everything to clean.
44
- #
45
- # This is usually added to MOSTLYCLEANFILES.
46
- VPATH = @srcdir@
47
- am__is_gnu_make = { \
48
- if test -z '$(MAKELEVEL)'; then \
49
- false; \
50
- elif test -n '$(MAKE_HOST)'; then \
51
- true; \
52
- elif test -n '$(MAKE_VERSION)' && test -n '$(CURDIR)'; then \
53
- true; \
54
- else \
55
- false; \
56
- fi; \
57
- }
58
- am__make_running_with_option = \
59
- case $${target_option-} in \
60
- ?) ;; \
61
- *) echo "am__make_running_with_option: internal error: invalid" \
62
- "target option '$${target_option-}' specified" >&2; \
63
- exit 1;; \
64
- esac; \
65
- has_opt=no; \
66
- sane_makeflags=$$MAKEFLAGS; \
67
- if $(am__is_gnu_make); then \
68
- sane_makeflags=$$MFLAGS; \
69
- else \
70
- case $$MAKEFLAGS in \
71
- *\\[\ \ ]*) \
72
- bs=\\; \
73
- sane_makeflags=`printf '%s\n' "$$MAKEFLAGS" \
74
- | sed "s/$$bs$$bs[$$bs $$bs ]*//g"`;; \
75
- esac; \
76
- fi; \
77
- skip_next=no; \
78
- strip_trailopt () \
79
- { \
80
- flg=`printf '%s\n' "$$flg" | sed "s/$$1.*$$//"`; \
81
- }; \
82
- for flg in $$sane_makeflags; do \
83
- test $$skip_next = yes && { skip_next=no; continue; }; \
84
- case $$flg in \
85
- *=*|--*) continue;; \
86
- -*I) strip_trailopt 'I'; skip_next=yes;; \
87
- -*I?*) strip_trailopt 'I';; \
88
- -*O) strip_trailopt 'O'; skip_next=yes;; \
89
- -*O?*) strip_trailopt 'O';; \
90
- -*l) strip_trailopt 'l'; skip_next=yes;; \
91
- -*l?*) strip_trailopt 'l';; \
92
- -[dEDm]) skip_next=yes;; \
93
- -[JT]) skip_next=yes;; \
94
- esac; \
95
- case $$flg in \
96
- *$$target_option*) has_opt=yes; break;; \
97
- esac; \
98
- done; \
99
- test $$has_opt = yes
100
- am__make_dryrun = (target_option=n; $(am__make_running_with_option))
101
- am__make_keepgoing = (target_option=k; $(am__make_running_with_option))
102
- pkgdatadir = $(datadir)/@PACKAGE@
103
- pkgincludedir = $(includedir)/@PACKAGE@
104
- pkglibdir = $(libdir)/@PACKAGE@
105
- pkglibexecdir = $(libexecdir)/@PACKAGE@
106
- am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd
107
- install_sh_DATA = $(install_sh) -c -m 644
108
- install_sh_PROGRAM = $(install_sh) -c
109
- install_sh_SCRIPT = $(install_sh) -c
110
- INSTALL_HEADER = $(INSTALL_DATA)
111
- transform = $(program_transform_name)
112
- NORMAL_INSTALL = :
113
- PRE_INSTALL = :
114
- POST_INSTALL = :
115
- NORMAL_UNINSTALL = :
116
- PRE_UNINSTALL = :
117
- POST_UNINSTALL = :
118
- build_triplet = @build@
119
- host_triplet = @host@
120
- subdir = .
121
- ACLOCAL_M4 = $(top_srcdir)/aclocal.m4
122
- am__aclocal_m4_deps = $(top_srcdir)/ax_cxx_compile_stdcxx.m4 \
123
- $(top_srcdir)/ruby.ac $(top_srcdir)/doxygen.ac \
124
- $(top_srcdir)/configure.ac
125
- am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \
126
- $(ACLOCAL_M4)
127
- DIST_COMMON = $(srcdir)/Makefile.am $(top_srcdir)/configure \
128
- $(am__configure_deps) $(am__DIST_COMMON)
129
- am__CONFIG_DISTCLEAN_FILES = config.status config.cache config.log \
130
- configure.lineno config.status.lineno
131
- mkinstalldirs = $(install_sh) -d
132
- CONFIG_HEADER = $(top_builddir)/rice/config.hpp
133
- CONFIG_CLEAN_FILES = rice/detail/ruby_version_code.hpp
134
- CONFIG_CLEAN_VPATH_FILES =
135
- AM_V_P = $(am__v_P_@AM_V@)
136
- am__v_P_ = $(am__v_P_@AM_DEFAULT_V@)
137
- am__v_P_0 = false
138
- am__v_P_1 = :
139
- AM_V_GEN = $(am__v_GEN_@AM_V@)
140
- am__v_GEN_ = $(am__v_GEN_@AM_DEFAULT_V@)
141
- am__v_GEN_0 = @echo " GEN " $@;
142
- am__v_GEN_1 =
143
- AM_V_at = $(am__v_at_@AM_V@)
144
- am__v_at_ = $(am__v_at_@AM_DEFAULT_V@)
145
- am__v_at_0 = @
146
- am__v_at_1 =
147
- SOURCES =
148
- DIST_SOURCES =
149
- RECURSIVE_TARGETS = all-recursive check-recursive cscopelist-recursive \
150
- ctags-recursive dvi-recursive html-recursive info-recursive \
151
- install-data-recursive install-dvi-recursive \
152
- install-exec-recursive install-html-recursive \
153
- install-info-recursive install-pdf-recursive \
154
- install-ps-recursive install-recursive installcheck-recursive \
155
- installdirs-recursive pdf-recursive ps-recursive \
156
- tags-recursive uninstall-recursive
157
- am__can_run_installinfo = \
158
- case $$AM_UPDATE_INFO_DIR in \
159
- n|no|NO) false;; \
160
- *) (install-info --version) >/dev/null 2>&1;; \
161
- esac
162
- RECURSIVE_CLEAN_TARGETS = mostlyclean-recursive clean-recursive \
163
- distclean-recursive maintainer-clean-recursive
164
- am__recursive_targets = \
165
- $(RECURSIVE_TARGETS) \
166
- $(RECURSIVE_CLEAN_TARGETS) \
167
- $(am__extra_recursive_targets)
168
- AM_RECURSIVE_TARGETS = $(am__recursive_targets:-recursive=) TAGS CTAGS \
169
- cscope distdir distdir-am dist dist-all distcheck
170
- am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) $(LISP)
171
- # Read a list of newline-separated strings from the standard input,
172
- # and print each of them once, without duplicates. Input order is
173
- # *not* preserved.
174
- am__uniquify_input = $(AWK) '\
175
- BEGIN { nonempty = 0; } \
176
- { items[$$0] = 1; nonempty = 1; } \
177
- END { if (nonempty) { for (i in items) print i; }; } \
178
- '
179
- # Make sure the list of sources is unique. This is necessary because,
180
- # e.g., the same source file might be shared among _SOURCES variables
181
- # for different programs/libraries.
182
- am__define_uniq_tagged_files = \
183
- list='$(am__tagged_files)'; \
184
- unique=`for i in $$list; do \
185
- if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
186
- done | $(am__uniquify_input)`
187
- ETAGS = etags
188
- CTAGS = ctags
189
- CSCOPE = cscope
190
- DIST_SUBDIRS = $(SUBDIRS)
191
- am__DIST_COMMON = $(srcdir)/Makefile.in $(srcdir)/doxygen.am \
192
- $(top_srcdir)/rice/detail/ruby_version_code.hpp.in COPYING \
193
- config.guess config.sub depcomp install-sh missing
194
- DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST)
195
- distdir = $(PACKAGE)-$(VERSION)
196
- top_distdir = "$(distdir)"
197
- am__remove_distdir = \
198
- if test -d "$(distdir)"; then \
199
- find "$(distdir)" -type d ! -perm -200 -exec chmod u+w {} ';' \
200
- && rm -rf "$(distdir)" \
201
- || { sleep 5 && rm -rf "$(distdir)"; }; \
202
- else :; fi
203
- am__post_remove_distdir = $(am__remove_distdir)
204
- am__relativize = \
205
- dir0=`pwd`; \
206
- sed_first='s,^\([^/]*\)/.*$$,\1,'; \
207
- sed_rest='s,^[^/]*/*,,'; \
208
- sed_last='s,^.*/\([^/]*\)$$,\1,'; \
209
- sed_butlast='s,/*[^/]*$$,,'; \
210
- while test -n "$$dir1"; do \
211
- first=`echo "$$dir1" | sed -e "$$sed_first"`; \
212
- if test "$$first" != "."; then \
213
- if test "$$first" = ".."; then \
214
- dir2=`echo "$$dir0" | sed -e "$$sed_last"`/"$$dir2"; \
215
- dir0=`echo "$$dir0" | sed -e "$$sed_butlast"`; \
216
- else \
217
- first2=`echo "$$dir2" | sed -e "$$sed_first"`; \
218
- if test "$$first2" = "$$first"; then \
219
- dir2=`echo "$$dir2" | sed -e "$$sed_rest"`; \
220
- else \
221
- dir2="../$$dir2"; \
222
- fi; \
223
- dir0="$$dir0"/"$$first"; \
224
- fi; \
225
- fi; \
226
- dir1=`echo "$$dir1" | sed -e "$$sed_rest"`; \
227
- done; \
228
- reldir="$$dir2"
229
- DIST_ARCHIVES = "$(distdir)".tar.gz
230
- GZIP_ENV = --best
231
- DIST_TARGETS = dist-gzip
232
- # Exists only to be overridden by the user if desired.
233
- AM_DISTCHECK_DVI_TARGET = dvi
234
- distuninstallcheck_listfiles = find . -type f -print
235
- am__distuninstallcheck_listfiles = $(distuninstallcheck_listfiles) \
236
- | sed 's|^\./|$(prefix)/|' | grep -v '$(infodir)/dir$$'
237
- distcleancheck_listfiles = find . -type f -print
238
- ACLOCAL = @ACLOCAL@
239
- AMTAR = @AMTAR@
240
- AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@
241
- AUTOCONF = @AUTOCONF@
242
- AUTOHEADER = @AUTOHEADER@
243
- AUTOMAKE = @AUTOMAKE@
244
- AWK = @AWK@
245
- CPPFLAGS = @CPPFLAGS@
246
- CXX = @CXX@
247
- CXXDEPMODE = @CXXDEPMODE@
248
- CXXFLAGS = @CXXFLAGS@
249
- CYGPATH_W = @CYGPATH_W@
250
- DEFS = @DEFS@
251
- DEPDIR = @DEPDIR@
252
- DOXYGEN_PAPER_SIZE = @DOXYGEN_PAPER_SIZE@
253
- DX_CONFIG = @DX_CONFIG@
254
- DX_DOCDIR = @DX_DOCDIR@
255
- DX_DOT = @DX_DOT@
256
- DX_DOXYGEN = @DX_DOXYGEN@
257
- DX_DVIPS = @DX_DVIPS@
258
- DX_EGREP = @DX_EGREP@
259
- DX_ENV = @DX_ENV@
260
- DX_FLAG_chi = @DX_FLAG_chi@
261
- DX_FLAG_chm = @DX_FLAG_chm@
262
- DX_FLAG_doc = @DX_FLAG_doc@
263
- DX_FLAG_dot = @DX_FLAG_dot@
264
- DX_FLAG_html = @DX_FLAG_html@
265
- DX_FLAG_man = @DX_FLAG_man@
266
- DX_FLAG_pdf = @DX_FLAG_pdf@
267
- DX_FLAG_ps = @DX_FLAG_ps@
268
- DX_FLAG_rtf = @DX_FLAG_rtf@
269
- DX_FLAG_xml = @DX_FLAG_xml@
270
- DX_HHC = @DX_HHC@
271
- DX_LATEX = @DX_LATEX@
272
- DX_MAKEINDEX = @DX_MAKEINDEX@
273
- DX_PDFLATEX = @DX_PDFLATEX@
274
- DX_PERL = @DX_PERL@
275
- DX_PROJECT = @DX_PROJECT@
276
- ECHO_C = @ECHO_C@
277
- ECHO_N = @ECHO_N@
278
- ECHO_T = @ECHO_T@
279
- EXEEXT = @EXEEXT@
280
- HAVE_CXX14 = @HAVE_CXX14@
281
- INSTALL = @INSTALL@
282
- INSTALL_DATA = @INSTALL_DATA@
283
- INSTALL_PROGRAM = @INSTALL_PROGRAM@
284
- INSTALL_SCRIPT = @INSTALL_SCRIPT@
285
- INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@
286
- LDFLAGS = @LDFLAGS@
287
- LIBOBJS = @LIBOBJS@
288
- LIBS = @LIBS@
289
- LTLIBOBJS = @LTLIBOBJS@
290
- MAKEINFO = @MAKEINFO@
291
- MKDIR_P = @MKDIR_P@
292
- OBJEXT = @OBJEXT@
293
- PACKAGE = @PACKAGE@
294
- PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@
295
- PACKAGE_NAME = @PACKAGE_NAME@
296
- PACKAGE_STRING = @PACKAGE_STRING@
297
- PACKAGE_TARNAME = @PACKAGE_TARNAME@
298
- PACKAGE_URL = @PACKAGE_URL@
299
- PACKAGE_VERSION = @PACKAGE_VERSION@
300
- PATH_SEPARATOR = @PATH_SEPARATOR@
301
- RANLIB = @RANLIB@
302
- RICE_CPPFLAGS = @RICE_CPPFLAGS@
303
- RICE_LDFLAGS = @RICE_LDFLAGS@
304
- RICE_ROOT = @RICE_ROOT@
305
- RICE_SAMPLES = @RICE_SAMPLES@
306
- RICE_USING_MINGW32 = @RICE_USING_MINGW32@
307
- RUBY = @RUBY@
308
- RUBY_CFLAGS = @RUBY_CFLAGS@
309
- RUBY_CPPFLAGS = @RUBY_CPPFLAGS@
310
- RUBY_CXXFLAGS = @RUBY_CXXFLAGS@
311
- RUBY_LDFLAGS = @RUBY_LDFLAGS@
312
- RUBY_LIBRUBYARG = @RUBY_LIBRUBYARG@
313
- RUBY_LIBRUBYARG_STATIC = @RUBY_LIBRUBYARG_STATIC@
314
- RUBY_LIBS = @RUBY_LIBS@
315
- RUBY_SITELIBDIR = @RUBY_SITELIBDIR@
316
- RUBY_VERSION_CODE = @RUBY_VERSION_CODE@
317
- SET_MAKE = @SET_MAKE@
318
- SHELL = @SHELL@
319
- STRIP = @STRIP@
320
- VERSION = @VERSION@
321
- abs_builddir = @abs_builddir@
322
- abs_srcdir = @abs_srcdir@
323
- abs_top_builddir = @abs_top_builddir@
324
- abs_top_srcdir = @abs_top_srcdir@
325
- ac_ct_CXX = @ac_ct_CXX@
326
- am__include = @am__include@
327
- am__leading_dot = @am__leading_dot@
328
- am__quote = @am__quote@
329
- am__tar = @am__tar@
330
- am__untar = @am__untar@
331
- bindir = @bindir@
332
- build = @build@
333
- build_alias = @build_alias@
334
- build_cpu = @build_cpu@
335
- build_os = @build_os@
336
- build_vendor = @build_vendor@
337
- builddir = @builddir@
338
- datadir = @datadir@
339
- datarootdir = @datarootdir@
340
- docdir = @docdir@
341
- dvidir = @dvidir@
342
- exec_prefix = @exec_prefix@
343
- host = @host@
344
- host_alias = @host_alias@
345
- host_cpu = @host_cpu@
346
- host_os = @host_os@
347
- host_vendor = @host_vendor@
348
- htmldir = @htmldir@
349
- includedir = @includedir@
350
- infodir = @infodir@
351
- install_sh = @install_sh@
352
- libdir = @libdir@
353
- libexecdir = @libexecdir@
354
- localedir = @localedir@
355
- localstatedir = @localstatedir@
356
- mandir = @mandir@
357
- mkdir_p = @mkdir_p@
358
- oldincludedir = @oldincludedir@
359
- pdfdir = @pdfdir@
360
- prefix = @prefix@
361
- program_transform_name = @program_transform_name@
362
- psdir = @psdir@
363
- sbindir = @sbindir@
364
- sharedstatedir = @sharedstatedir@
365
- srcdir = @srcdir@
366
- sysconfdir = @sysconfdir@
367
- target_alias = @target_alias@
368
- top_build_prefix = @top_build_prefix@
369
- top_builddir = @top_builddir@
370
- top_srcdir = @top_srcdir@
371
- AUTOMAKE_OPTIONS = foreign 1.5
372
- SUBDIRS = rice test sample ruby
373
- @DX_COND_doc_TRUE@@DX_COND_html_TRUE@DX_CLEAN_HTML = @DX_DOCDIR@/html
374
- @DX_COND_chm_TRUE@@DX_COND_doc_TRUE@DX_CLEAN_CHM = @DX_DOCDIR@/chm
375
- @DX_COND_chi_TRUE@@DX_COND_chm_TRUE@@DX_COND_doc_TRUE@DX_CLEAN_CHI = @DX_DOCDIR@/@PACKAGE@.chi
376
- @DX_COND_doc_TRUE@@DX_COND_man_TRUE@DX_CLEAN_MAN = @DX_DOCDIR@/man
377
- @DX_COND_doc_TRUE@@DX_COND_rtf_TRUE@DX_CLEAN_RTF = @DX_DOCDIR@/rtf
378
- @DX_COND_doc_TRUE@@DX_COND_xml_TRUE@DX_CLEAN_XML = @DX_DOCDIR@/xml
379
- @DX_COND_doc_TRUE@@DX_COND_ps_TRUE@DX_CLEAN_PS = @DX_DOCDIR@/@PACKAGE@.ps
380
- @DX_COND_doc_TRUE@@DX_COND_ps_TRUE@DX_PS_GOAL = doxygen-ps
381
- @DX_COND_doc_TRUE@@DX_COND_pdf_TRUE@DX_CLEAN_PDF = @DX_DOCDIR@/@PACKAGE@.pdf
382
- @DX_COND_doc_TRUE@@DX_COND_pdf_TRUE@DX_PDF_GOAL = doxygen-pdf
383
- @DX_COND_doc_TRUE@@DX_COND_latex_TRUE@DX_CLEAN_LATEX = @DX_DOCDIR@/latex
384
- @DX_COND_doc_TRUE@DX_CLEANFILES = \
385
- @DX_COND_doc_TRUE@ @DX_DOCDIR@/@PACKAGE@.tag \
386
- @DX_COND_doc_TRUE@ -r \
387
- @DX_COND_doc_TRUE@ $(DX_CLEAN_HTML) \
388
- @DX_COND_doc_TRUE@ $(DX_CLEAN_CHM) \
389
- @DX_COND_doc_TRUE@ $(DX_CLEAN_CHI) \
390
- @DX_COND_doc_TRUE@ $(DX_CLEAN_MAN) \
391
- @DX_COND_doc_TRUE@ $(DX_CLEAN_RTF) \
392
- @DX_COND_doc_TRUE@ $(DX_CLEAN_XML) \
393
- @DX_COND_doc_TRUE@ $(DX_CLEAN_PS) \
394
- @DX_COND_doc_TRUE@ $(DX_CLEAN_PDF) \
395
- @DX_COND_doc_TRUE@ $(DX_CLEAN_LATEX)
396
-
397
- noinst_EXTRA = rice/README.doxygen
398
- DX_EXTRA_DEPEND = rice/README.doxygen
399
- EXTRA_DIST = \
400
- README.mingw \
401
- post-autoconf.rb \
402
- post-automake.rb \
403
- bootstrap \
404
- Doxyfile \
405
- ruby.ac \
406
- doxygen.ac \
407
- doxygen.am \
408
- doc
409
-
410
- all: all-recursive
411
-
412
- .SUFFIXES:
413
- am--refresh: Makefile
414
- @:
415
- $(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(srcdir)/doxygen.am $(am__configure_deps)
416
- @for dep in $?; do \
417
- case '$(am__configure_deps)' in \
418
- *$$dep*) \
419
- echo ' cd $(srcdir) && $(AUTOMAKE) --foreign'; \
420
- $(am__cd) $(srcdir) && $(AUTOMAKE) --foreign \
421
- && exit 0; \
422
- exit 1;; \
423
- esac; \
424
- done; \
425
- echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign Makefile'; \
426
- $(am__cd) $(top_srcdir) && \
427
- $(AUTOMAKE) --foreign Makefile
428
- Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
429
- @case '$?' in \
430
- *config.status*) \
431
- echo ' $(SHELL) ./config.status'; \
432
- $(SHELL) ./config.status;; \
433
- *) \
434
- echo ' cd $(top_builddir) && $(SHELL) ./config.status $@ $(am__maybe_remake_depfiles)'; \
435
- cd $(top_builddir) && $(SHELL) ./config.status $@ $(am__maybe_remake_depfiles);; \
436
- esac;
437
- $(srcdir)/doxygen.am $(am__empty):
438
-
439
- $(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES)
440
- $(SHELL) ./config.status --recheck
441
-
442
- $(top_srcdir)/configure: $(am__configure_deps)
443
- $(am__cd) $(srcdir) && $(AUTOCONF)
444
- $(ACLOCAL_M4): $(am__aclocal_m4_deps)
445
- $(am__cd) $(srcdir) && $(ACLOCAL) $(ACLOCAL_AMFLAGS)
446
- $(am__aclocal_m4_deps):
447
- rice/detail/ruby_version_code.hpp: $(top_builddir)/config.status $(top_srcdir)/rice/detail/ruby_version_code.hpp.in
448
- cd $(top_builddir) && $(SHELL) ./config.status $@
449
-
450
- # This directory's subdirectories are mostly independent; you can cd
451
- # into them and run 'make' without going through this Makefile.
452
- # To change the values of 'make' variables: instead of editing Makefiles,
453
- # (1) if the variable is set in 'config.status', edit 'config.status'
454
- # (which will cause the Makefiles to be regenerated when you run 'make');
455
- # (2) otherwise, pass the desired values on the 'make' command line.
456
- $(am__recursive_targets):
457
- @fail=; \
458
- if $(am__make_keepgoing); then \
459
- failcom='fail=yes'; \
460
- else \
461
- failcom='exit 1'; \
462
- fi; \
463
- dot_seen=no; \
464
- target=`echo $@ | sed s/-recursive//`; \
465
- case "$@" in \
466
- distclean-* | maintainer-clean-*) list='$(DIST_SUBDIRS)' ;; \
467
- *) list='$(SUBDIRS)' ;; \
468
- esac; \
469
- for subdir in $$list; do \
470
- echo "Making $$target in $$subdir"; \
471
- if test "$$subdir" = "."; then \
472
- dot_seen=yes; \
473
- local_target="$$target-am"; \
474
- else \
475
- local_target="$$target"; \
476
- fi; \
477
- ($(am__cd) $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$local_target) \
478
- || eval $$failcom; \
479
- done; \
480
- if test "$$dot_seen" = "no"; then \
481
- $(MAKE) $(AM_MAKEFLAGS) "$$target-am" || exit 1; \
482
- fi; test -z "$$fail"
483
-
484
- ID: $(am__tagged_files)
485
- $(am__define_uniq_tagged_files); mkid -fID $$unique
486
- tags: tags-recursive
487
- TAGS: tags
488
-
489
- tags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files)
490
- set x; \
491
- here=`pwd`; \
492
- if ($(ETAGS) --etags-include --version) >/dev/null 2>&1; then \
493
- include_option=--etags-include; \
494
- empty_fix=.; \
495
- else \
496
- include_option=--include; \
497
- empty_fix=; \
498
- fi; \
499
- list='$(SUBDIRS)'; for subdir in $$list; do \
500
- if test "$$subdir" = .; then :; else \
501
- test ! -f $$subdir/TAGS || \
502
- set "$$@" "$$include_option=$$here/$$subdir/TAGS"; \
503
- fi; \
504
- done; \
505
- $(am__define_uniq_tagged_files); \
506
- shift; \
507
- if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \
508
- test -n "$$unique" || unique=$$empty_fix; \
509
- if test $$# -gt 0; then \
510
- $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \
511
- "$$@" $$unique; \
512
- else \
513
- $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \
514
- $$unique; \
515
- fi; \
516
- fi
517
- ctags: ctags-recursive
518
-
519
- CTAGS: ctags
520
- ctags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files)
521
- $(am__define_uniq_tagged_files); \
522
- test -z "$(CTAGS_ARGS)$$unique" \
523
- || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \
524
- $$unique
525
-
526
- GTAGS:
527
- here=`$(am__cd) $(top_builddir) && pwd` \
528
- && $(am__cd) $(top_srcdir) \
529
- && gtags -i $(GTAGS_ARGS) "$$here"
530
- cscope: cscope.files
531
- test ! -s cscope.files \
532
- || $(CSCOPE) -b -q $(AM_CSCOPEFLAGS) $(CSCOPEFLAGS) -i cscope.files $(CSCOPE_ARGS)
533
- clean-cscope:
534
- -rm -f cscope.files
535
- cscope.files: clean-cscope cscopelist
536
- cscopelist: cscopelist-recursive
537
-
538
- cscopelist-am: $(am__tagged_files)
539
- list='$(am__tagged_files)'; \
540
- case "$(srcdir)" in \
541
- [\\/]* | ?:[\\/]*) sdir="$(srcdir)" ;; \
542
- *) sdir=$(subdir)/$(srcdir) ;; \
543
- esac; \
544
- for i in $$list; do \
545
- if test -f "$$i"; then \
546
- echo "$(subdir)/$$i"; \
547
- else \
548
- echo "$$sdir/$$i"; \
549
- fi; \
550
- done >> $(top_builddir)/cscope.files
551
-
552
- distclean-tags:
553
- -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags
554
- -rm -f cscope.out cscope.in.out cscope.po.out cscope.files
555
-
556
- distdir: $(BUILT_SOURCES)
557
- $(MAKE) $(AM_MAKEFLAGS) distdir-am
558
-
559
- distdir-am: $(DISTFILES)
560
- $(am__remove_distdir)
561
- test -d "$(distdir)" || mkdir "$(distdir)"
562
- @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
563
- topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
564
- list='$(DISTFILES)'; \
565
- dist_files=`for file in $$list; do echo $$file; done | \
566
- sed -e "s|^$$srcdirstrip/||;t" \
567
- -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \
568
- case $$dist_files in \
569
- */*) eval $(MKDIR_P) `echo "$$dist_files" | \
570
- sed '/\//!d;s|^|"$(distdir)"/|;s,/[^/]*$$,,' | \
571
- sort -u` ;; \
572
- esac; \
573
- for file in $$dist_files; do \
574
- if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \
575
- if test -d $$d/$$file; then \
576
- dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \
577
- if test -d "$(distdir)/$$file"; then \
578
- find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \
579
- fi; \
580
- if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \
581
- cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \
582
- find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \
583
- fi; \
584
- cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \
585
- else \
586
- test -f "$(distdir)/$$file" \
587
- || cp -p $$d/$$file "$(distdir)/$$file" \
588
- || exit 1; \
589
- fi; \
590
- done
591
- @list='$(DIST_SUBDIRS)'; for subdir in $$list; do \
592
- if test "$$subdir" = .; then :; else \
593
- $(am__make_dryrun) \
594
- || test -d "$(distdir)/$$subdir" \
595
- || $(MKDIR_P) "$(distdir)/$$subdir" \
596
- || exit 1; \
597
- dir1=$$subdir; dir2="$(distdir)/$$subdir"; \
598
- $(am__relativize); \
599
- new_distdir=$$reldir; \
600
- dir1=$$subdir; dir2="$(top_distdir)"; \
601
- $(am__relativize); \
602
- new_top_distdir=$$reldir; \
603
- echo " (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) top_distdir="$$new_top_distdir" distdir="$$new_distdir" \\"; \
604
- echo " am__remove_distdir=: am__skip_length_check=: am__skip_mode_fix=: distdir)"; \
605
- ($(am__cd) $$subdir && \
606
- $(MAKE) $(AM_MAKEFLAGS) \
607
- top_distdir="$$new_top_distdir" \
608
- distdir="$$new_distdir" \
609
- am__remove_distdir=: \
610
- am__skip_length_check=: \
611
- am__skip_mode_fix=: \
612
- distdir) \
613
- || exit 1; \
614
- fi; \
615
- done
616
- -test -n "$(am__skip_mode_fix)" \
617
- || find "$(distdir)" -type d ! -perm -755 \
618
- -exec chmod u+rwx,go+rx {} \; -o \
619
- ! -type d ! -perm -444 -links 1 -exec chmod a+r {} \; -o \
620
- ! -type d ! -perm -400 -exec chmod a+r {} \; -o \
621
- ! -type d ! -perm -444 -exec $(install_sh) -c -m a+r {} {} \; \
622
- || chmod -R a+r "$(distdir)"
623
- dist-gzip: distdir
624
- tardir="$(distdir)" && $(am__tar) | eval GZIP= gzip $(GZIP_ENV) -c >"$(distdir)".tar.gz
625
- $(am__post_remove_distdir)
626
-
627
- dist-bzip2: distdir
628
- tardir="$(distdir)" && $(am__tar) | BZIP2=$${BZIP2--9} bzip2 -c >"$(distdir)".tar.bz2
629
- $(am__post_remove_distdir)
630
-
631
- dist-lzip: distdir
632
- tardir="$(distdir)" && $(am__tar) | lzip -c $${LZIP_OPT--9} >"$(distdir)".tar.lz
633
- $(am__post_remove_distdir)
634
-
635
- dist-xz: distdir
636
- tardir="$(distdir)" && $(am__tar) | XZ_OPT=$${XZ_OPT--e} xz -c >"$(distdir)".tar.xz
637
- $(am__post_remove_distdir)
638
-
639
- dist-zstd: distdir
640
- tardir="$(distdir)" && $(am__tar) | zstd -c $${ZSTD_CLEVEL-$${ZSTD_OPT--19}} >"$(distdir)".tar.zst
641
- $(am__post_remove_distdir)
642
-
643
- dist-tarZ: distdir
644
- @echo WARNING: "Support for distribution archives compressed with" \
645
- "legacy program 'compress' is deprecated." >&2
646
- @echo WARNING: "It will be removed altogether in Automake 2.0" >&2
647
- tardir="$(distdir)" && $(am__tar) | compress -c >"$(distdir)".tar.Z
648
- $(am__post_remove_distdir)
649
-
650
- dist-shar: distdir
651
- @echo WARNING: "Support for shar distribution archives is" \
652
- "deprecated." >&2
653
- @echo WARNING: "It will be removed altogether in Automake 2.0" >&2
654
- shar "$(distdir)" | eval GZIP= gzip $(GZIP_ENV) -c >"$(distdir)".shar.gz
655
- $(am__post_remove_distdir)
656
-
657
- dist-zip: distdir
658
- -rm -f "$(distdir)".zip
659
- zip -rq "$(distdir)".zip "$(distdir)"
660
- $(am__post_remove_distdir)
661
-
662
- dist dist-all:
663
- $(MAKE) $(AM_MAKEFLAGS) $(DIST_TARGETS) am__post_remove_distdir='@:'
664
- $(am__post_remove_distdir)
665
-
666
- # This target untars the dist file and tries a VPATH configuration. Then
667
- # it guarantees that the distribution is self-contained by making another
668
- # tarfile.
669
- distcheck: dist
670
- case '$(DIST_ARCHIVES)' in \
671
- *.tar.gz*) \
672
- eval GZIP= gzip $(GZIP_ENV) -dc "$(distdir)".tar.gz | $(am__untar) ;;\
673
- *.tar.bz2*) \
674
- bzip2 -dc "$(distdir)".tar.bz2 | $(am__untar) ;;\
675
- *.tar.lz*) \
676
- lzip -dc "$(distdir)".tar.lz | $(am__untar) ;;\
677
- *.tar.xz*) \
678
- xz -dc "$(distdir)".tar.xz | $(am__untar) ;;\
679
- *.tar.Z*) \
680
- uncompress -c "$(distdir)".tar.Z | $(am__untar) ;;\
681
- *.shar.gz*) \
682
- eval GZIP= gzip $(GZIP_ENV) -dc "$(distdir)".shar.gz | unshar ;;\
683
- *.zip*) \
684
- unzip "$(distdir)".zip ;;\
685
- *.tar.zst*) \
686
- zstd -dc "$(distdir)".tar.zst | $(am__untar) ;;\
687
- esac
688
- chmod -R a-w "$(distdir)"
689
- chmod u+w "$(distdir)"
690
- mkdir "$(distdir)"/_build "$(distdir)"/_build/sub "$(distdir)"/_inst
691
- chmod a-w "$(distdir)"
692
- test -d "$(distdir)"/_build || exit 0; \
693
- dc_install_base=`$(am__cd) "$(distdir)"/_inst && pwd | sed -e 's,^[^:\\/]:[\\/],/,'` \
694
- && dc_destdir="$${TMPDIR-/tmp}/am-dc-$$$$/" \
695
- && am__cwd=`pwd` \
696
- && $(am__cd) "$(distdir)"/_build/sub \
697
- && ../../configure \
698
- $(AM_DISTCHECK_CONFIGURE_FLAGS) \
699
- $(DISTCHECK_CONFIGURE_FLAGS) \
700
- --srcdir=../.. --prefix="$$dc_install_base" \
701
- && $(MAKE) $(AM_MAKEFLAGS) \
702
- && $(MAKE) $(AM_MAKEFLAGS) $(AM_DISTCHECK_DVI_TARGET) \
703
- && $(MAKE) $(AM_MAKEFLAGS) check \
704
- && $(MAKE) $(AM_MAKEFLAGS) install \
705
- && $(MAKE) $(AM_MAKEFLAGS) installcheck \
706
- && $(MAKE) $(AM_MAKEFLAGS) uninstall \
707
- && $(MAKE) $(AM_MAKEFLAGS) distuninstallcheck_dir="$$dc_install_base" \
708
- distuninstallcheck \
709
- && chmod -R a-w "$$dc_install_base" \
710
- && ({ \
711
- (cd ../.. && umask 077 && mkdir "$$dc_destdir") \
712
- && $(MAKE) $(AM_MAKEFLAGS) DESTDIR="$$dc_destdir" install \
713
- && $(MAKE) $(AM_MAKEFLAGS) DESTDIR="$$dc_destdir" uninstall \
714
- && $(MAKE) $(AM_MAKEFLAGS) DESTDIR="$$dc_destdir" \
715
- distuninstallcheck_dir="$$dc_destdir" distuninstallcheck; \
716
- } || { rm -rf "$$dc_destdir"; exit 1; }) \
717
- && rm -rf "$$dc_destdir" \
718
- && $(MAKE) $(AM_MAKEFLAGS) dist \
719
- && rm -rf $(DIST_ARCHIVES) \
720
- && $(MAKE) $(AM_MAKEFLAGS) distcleancheck \
721
- && cd "$$am__cwd" \
722
- || exit 1
723
- $(am__post_remove_distdir)
724
- @(echo "$(distdir) archives ready for distribution: "; \
725
- list='$(DIST_ARCHIVES)'; for i in $$list; do echo $$i; done) | \
726
- sed -e 1h -e 1s/./=/g -e 1p -e 1x -e '$$p' -e '$$x'
727
- distuninstallcheck:
728
- @test -n '$(distuninstallcheck_dir)' || { \
729
- echo 'ERROR: trying to run $@ with an empty' \
730
- '$$(distuninstallcheck_dir)' >&2; \
731
- exit 1; \
732
- }; \
733
- $(am__cd) '$(distuninstallcheck_dir)' || { \
734
- echo 'ERROR: cannot chdir into $(distuninstallcheck_dir)' >&2; \
735
- exit 1; \
736
- }; \
737
- test `$(am__distuninstallcheck_listfiles) | wc -l` -eq 0 \
738
- || { echo "ERROR: files left after uninstall:" ; \
739
- if test -n "$(DESTDIR)"; then \
740
- echo " (check DESTDIR support)"; \
741
- fi ; \
742
- $(distuninstallcheck_listfiles) ; \
743
- exit 1; } >&2
744
- distcleancheck: distclean
745
- @if test '$(srcdir)' = . ; then \
746
- echo "ERROR: distcleancheck can only run from a VPATH build" ; \
747
- exit 1 ; \
748
- fi
749
- @test `$(distcleancheck_listfiles) | wc -l` -eq 0 \
750
- || { echo "ERROR: files left in build directory after distclean:" ; \
751
- $(distcleancheck_listfiles) ; \
752
- exit 1; } >&2
753
- check-am: all-am
754
- check: check-recursive
755
- all-am: Makefile
756
- installdirs: installdirs-recursive
757
- installdirs-am:
758
- install: install-recursive
759
- install-exec: install-exec-recursive
760
- install-data: install-data-recursive
761
- uninstall: uninstall-recursive
762
-
763
- install-am: all-am
764
- @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am
765
-
766
- installcheck: installcheck-recursive
767
- install-strip:
768
- if test -z '$(STRIP)'; then \
769
- $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \
770
- install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \
771
- install; \
772
- else \
773
- $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \
774
- install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \
775
- "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'" install; \
776
- fi
777
- mostlyclean-generic:
778
-
779
- clean-generic:
780
-
781
- distclean-generic:
782
- -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES)
783
- -test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES)
784
-
785
- maintainer-clean-generic:
786
- @echo "This command is intended for maintainers to use"
787
- @echo "it deletes files that may require special tools to rebuild."
788
- clean: clean-recursive
789
-
790
- clean-am: clean-generic mostlyclean-am
791
-
792
- distclean: distclean-recursive
793
- -rm -f $(am__CONFIG_DISTCLEAN_FILES)
794
- -rm -f Makefile
795
- distclean-am: clean-am distclean-generic distclean-tags
796
-
797
- dvi: dvi-recursive
798
-
799
- dvi-am:
800
-
801
- html: html-recursive
802
-
803
- html-am:
804
-
805
- info: info-recursive
806
-
807
- info-am:
808
-
809
- install-data-am:
810
-
811
- install-dvi: install-dvi-recursive
812
-
813
- install-dvi-am:
814
-
815
- install-exec-am:
816
-
817
- install-html: install-html-recursive
818
-
819
- install-html-am:
820
-
821
- install-info: install-info-recursive
822
-
823
- install-info-am:
824
-
825
- install-man:
826
-
827
- install-pdf: install-pdf-recursive
828
-
829
- install-pdf-am:
830
-
831
- install-ps: install-ps-recursive
832
-
833
- install-ps-am:
834
-
835
- installcheck-am:
836
-
837
- maintainer-clean: maintainer-clean-recursive
838
- -rm -f $(am__CONFIG_DISTCLEAN_FILES)
839
- -rm -rf $(top_srcdir)/autom4te.cache
840
- -rm -f Makefile
841
- maintainer-clean-am: distclean-am maintainer-clean-generic
842
-
843
- mostlyclean: mostlyclean-recursive
844
-
845
- mostlyclean-am: mostlyclean-generic
846
-
847
- pdf: pdf-recursive
848
-
849
- pdf-am:
850
-
851
- ps: ps-recursive
852
-
853
- ps-am:
854
-
855
- uninstall-am:
856
-
857
- .MAKE: $(am__recursive_targets) install-am install-strip
858
-
859
- .PHONY: $(am__recursive_targets) CTAGS GTAGS TAGS all all-am \
860
- am--refresh check check-am clean clean-cscope clean-generic \
861
- cscope cscopelist-am ctags ctags-am dist dist-all dist-bzip2 \
862
- dist-gzip dist-lzip dist-shar dist-tarZ dist-xz dist-zip \
863
- dist-zstd distcheck distclean distclean-generic distclean-tags \
864
- distcleancheck distdir distuninstallcheck dvi dvi-am html \
865
- html-am info info-am install install-am install-data \
866
- install-data-am install-dvi install-dvi-am install-exec \
867
- install-exec-am install-html install-html-am install-info \
868
- install-info-am install-man install-pdf install-pdf-am \
869
- install-ps install-ps-am install-strip installcheck \
870
- installcheck-am installdirs installdirs-am maintainer-clean \
871
- maintainer-clean-generic mostlyclean mostlyclean-generic pdf \
872
- pdf-am ps ps-am tags tags-am uninstall uninstall-am
873
-
874
- .PRECIOUS: Makefile
875
-
876
-
877
- @DX_COND_doc_TRUE@@DX_COND_ps_TRUE@doxygen-ps: @DX_DOCDIR@/@PACKAGE@.ps
878
-
879
- @DX_COND_doc_TRUE@@DX_COND_ps_TRUE@@DX_DOCDIR@/@PACKAGE@.ps: @DX_DOCDIR@/@PACKAGE@.tag $(DX_EXTRA_DEPEND)
880
- @DX_COND_doc_TRUE@@DX_COND_ps_TRUE@ cd @DX_DOCDIR@/latex; \
881
- @DX_COND_doc_TRUE@@DX_COND_ps_TRUE@ rm -f *.aux *.toc *.idx *.ind *.ilg *.log *.out; \
882
- @DX_COND_doc_TRUE@@DX_COND_ps_TRUE@ $(DX_LATEX) refman.tex; \
883
- @DX_COND_doc_TRUE@@DX_COND_ps_TRUE@ $(MAKEINDEX_PATH) refman.idx; \
884
- @DX_COND_doc_TRUE@@DX_COND_ps_TRUE@ $(DX_LATEX) refman.tex; \
885
- @DX_COND_doc_TRUE@@DX_COND_ps_TRUE@ countdown=5; \
886
- @DX_COND_doc_TRUE@@DX_COND_ps_TRUE@ while $(DX_EGREP) 'Rerun (LaTeX|to get cross-references right)' \
887
- @DX_COND_doc_TRUE@@DX_COND_ps_TRUE@ refman.log > /dev/null 2>&1 \
888
- @DX_COND_doc_TRUE@@DX_COND_ps_TRUE@ && test $$countdown -gt 0; do \
889
- @DX_COND_doc_TRUE@@DX_COND_ps_TRUE@ $(DX_LATEX) refman.tex; \
890
- @DX_COND_doc_TRUE@@DX_COND_ps_TRUE@ countdown=`expr $$countdown - 1`; \
891
- @DX_COND_doc_TRUE@@DX_COND_ps_TRUE@ done; \
892
- @DX_COND_doc_TRUE@@DX_COND_ps_TRUE@ $(DX_DVIPS) -o ../@PACKAGE@.ps refman.dvi
893
-
894
- @DX_COND_doc_TRUE@@DX_COND_pdf_TRUE@doxygen-pdf: @DX_DOCDIR@/@PACKAGE@.pdf
895
-
896
- @DX_COND_doc_TRUE@@DX_COND_pdf_TRUE@@DX_DOCDIR@/@PACKAGE@.pdf: @DX_DOCDIR@/@PACKAGE@.tag $(DX_EXTRA_DEPEND)
897
- @DX_COND_doc_TRUE@@DX_COND_pdf_TRUE@ cd @DX_DOCDIR@/latex; \
898
- @DX_COND_doc_TRUE@@DX_COND_pdf_TRUE@ rm -f *.aux *.toc *.idx *.ind *.ilg *.log *.out; \
899
- @DX_COND_doc_TRUE@@DX_COND_pdf_TRUE@ $(DX_PDFLATEX) refman.tex; \
900
- @DX_COND_doc_TRUE@@DX_COND_pdf_TRUE@ $(DX_MAKEINDEX) refman.idx; \
901
- @DX_COND_doc_TRUE@@DX_COND_pdf_TRUE@ $(DX_PDFLATEX) refman.tex; \
902
- @DX_COND_doc_TRUE@@DX_COND_pdf_TRUE@ countdown=5; \
903
- @DX_COND_doc_TRUE@@DX_COND_pdf_TRUE@ while $(DX_EGREP) 'Rerun (LaTeX|to get cross-references right)' \
904
- @DX_COND_doc_TRUE@@DX_COND_pdf_TRUE@ refman.log > /dev/null 2>&1 \
905
- @DX_COND_doc_TRUE@@DX_COND_pdf_TRUE@ && test $$countdown -gt 0; do \
906
- @DX_COND_doc_TRUE@@DX_COND_pdf_TRUE@ $(DX_PDFLATEX) refman.tex; \
907
- @DX_COND_doc_TRUE@@DX_COND_pdf_TRUE@ countdown=`expr $$countdown - 1`; \
908
- @DX_COND_doc_TRUE@@DX_COND_pdf_TRUE@ done; \
909
- @DX_COND_doc_TRUE@@DX_COND_pdf_TRUE@ mv refman.pdf ../@PACKAGE@.pdf
910
-
911
- @DX_COND_doc_TRUE@.PHONY: doxygen-run doxygen-doc $(DX_PS_GOAL) $(DX_PDF_GOAL)
912
-
913
- @DX_COND_doc_TRUE@.INTERMEDIATE: doxygen-run $(DX_PS_GOAL) $(DX_PDF_GOAL)
914
-
915
- @DX_COND_doc_TRUE@doxygen-run: @DX_DOCDIR@/@PACKAGE@.tag
916
-
917
- @DX_COND_doc_TRUE@doxygen-doc: doxygen-run $(DX_PS_GOAL) $(DX_PDF_GOAL)
918
-
919
- @DX_COND_doc_TRUE@@DX_DOCDIR@/@PACKAGE@.tag: $(DX_CONFIG) $(pkginclude_HEADERS) $(DX_EXTRA_DEPEND)
920
- @DX_COND_doc_TRUE@ rm -rf @DX_DOCDIR@
921
- @DX_COND_doc_TRUE@ $(DX_ENV) $(DX_DOXYGEN) $(srcdir)/$(DX_CONFIG)
922
-
923
- doc: doxygen-doc
924
-
925
- rice/README.doxygen: README.md
926
- @echo Generating documentation
927
- @$(RUBY) -e 'File.open("README.md") { |i| File.open("rice/README.doxygen", "w") { |o| o.puts "/*! #{i.gets}"; i.each_line { |l| o.puts " #{l}" if l !~ /^\\comment/ and l !~ /^vim:/ }; o.puts " */" } }'.md
928
-
929
- # Tell versions [3.59,3.63) of GNU make to not export all variables.
930
- # Otherwise a system limit (for SysV at least) may be exceeded.
931
- .NOEXPORT: