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