jameskilton-rice 1.2.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (196) hide show
  1. data/COPYING +23 -0
  2. data/Doxyfile +1253 -0
  3. data/Makefile.am +26 -0
  4. data/Makefile.in +749 -0
  5. data/README +879 -0
  6. data/README.mingw +8 -0
  7. data/Rakefile +72 -0
  8. data/aclocal.m4 +891 -0
  9. data/bootstrap +8 -0
  10. data/config.guess +1526 -0
  11. data/config.sub +1658 -0
  12. data/configure +7668 -0
  13. data/configure.ac +52 -0
  14. data/depcomp +589 -0
  15. data/doxygen.ac +314 -0
  16. data/doxygen.am +186 -0
  17. data/extconf.rb +22 -0
  18. data/install-sh +519 -0
  19. data/missing +367 -0
  20. data/post-autoconf.rb +22 -0
  21. data/post-automake.rb +28 -0
  22. data/rice/Address_Registration_Guard.hpp +7 -0
  23. data/rice/Address_Registration_Guard.ipp +34 -0
  24. data/rice/Address_Registration_Guard_defn.hpp +65 -0
  25. data/rice/Allocation_Strategies.hpp +37 -0
  26. data/rice/Arg.hpp +8 -0
  27. data/rice/Arg_impl.hpp +116 -0
  28. data/rice/Arg_operators.cpp +21 -0
  29. data/rice/Arg_operators.hpp +18 -0
  30. data/rice/Array.hpp +220 -0
  31. data/rice/Array.ipp +263 -0
  32. data/rice/Builtin_Object.hpp +8 -0
  33. data/rice/Builtin_Object.ipp +50 -0
  34. data/rice/Builtin_Object_defn.hpp +51 -0
  35. data/rice/Class.cpp +57 -0
  36. data/rice/Class.hpp +8 -0
  37. data/rice/Class.ipp +6 -0
  38. data/rice/Class_defn.hpp +83 -0
  39. data/rice/Constructor.hpp +339 -0
  40. data/rice/Critical_Guard.hpp +40 -0
  41. data/rice/Critical_Guard.ipp +26 -0
  42. data/rice/Data_Object.hpp +8 -0
  43. data/rice/Data_Object.ipp +133 -0
  44. data/rice/Data_Object_defn.hpp +132 -0
  45. data/rice/Data_Type.cpp +21 -0
  46. data/rice/Data_Type.hpp +8 -0
  47. data/rice/Data_Type.ipp +306 -0
  48. data/rice/Data_Type_defn.hpp +219 -0
  49. data/rice/Data_Type_fwd.hpp +12 -0
  50. data/rice/Director.cpp +19 -0
  51. data/rice/Director.hpp +47 -0
  52. data/rice/Enum.hpp +118 -0
  53. data/rice/Enum.ipp +246 -0
  54. data/rice/Exception.cpp +59 -0
  55. data/rice/Exception.hpp +9 -0
  56. data/rice/Exception_Base.hpp +8 -0
  57. data/rice/Exception_Base.ipp +13 -0
  58. data/rice/Exception_Base_defn.hpp +27 -0
  59. data/rice/Exception_defn.hpp +69 -0
  60. data/rice/Hash.hpp +210 -0
  61. data/rice/Hash.ipp +338 -0
  62. data/rice/Identifier.cpp +8 -0
  63. data/rice/Identifier.hpp +50 -0
  64. data/rice/Identifier.ipp +33 -0
  65. data/rice/Jump_Tag.hpp +24 -0
  66. data/rice/Makefile.am +140 -0
  67. data/rice/Makefile.in +740 -0
  68. data/rice/Module.cpp +84 -0
  69. data/rice/Module.hpp +8 -0
  70. data/rice/Module.ipp +6 -0
  71. data/rice/Module_defn.hpp +88 -0
  72. data/rice/Module_impl.hpp +281 -0
  73. data/rice/Module_impl.ipp +348 -0
  74. data/rice/Object.cpp +153 -0
  75. data/rice/Object.hpp +8 -0
  76. data/rice/Object.ipp +19 -0
  77. data/rice/Object_defn.hpp +183 -0
  78. data/rice/Require_Guard.hpp +21 -0
  79. data/rice/String.cpp +94 -0
  80. data/rice/String.hpp +89 -0
  81. data/rice/Struct.cpp +117 -0
  82. data/rice/Struct.hpp +162 -0
  83. data/rice/Struct.ipp +26 -0
  84. data/rice/Symbol.cpp +25 -0
  85. data/rice/Symbol.hpp +66 -0
  86. data/rice/Symbol.ipp +44 -0
  87. data/rice/VM.cpp +92 -0
  88. data/rice/VM.hpp +32 -0
  89. data/rice/config.hpp +44 -0
  90. data/rice/config.hpp.in +43 -0
  91. data/rice/detail/Arguments.hpp +126 -0
  92. data/rice/detail/Auto_Function_Wrapper.hpp +861 -0
  93. data/rice/detail/Auto_Function_Wrapper.ipp +2929 -0
  94. data/rice/detail/Auto_Member_Function_Wrapper.hpp +828 -0
  95. data/rice/detail/Auto_Member_Function_Wrapper.ipp +2326 -0
  96. data/rice/detail/Caster.hpp +63 -0
  97. data/rice/detail/Exception_Handler.hpp +8 -0
  98. data/rice/detail/Exception_Handler.ipp +68 -0
  99. data/rice/detail/Exception_Handler_defn.hpp +96 -0
  100. data/rice/detail/Iterator.hpp +93 -0
  101. data/rice/detail/Not_Copyable.hpp +25 -0
  102. data/rice/detail/Wrapped_Function.hpp +33 -0
  103. data/rice/detail/check_ruby_type.cpp +27 -0
  104. data/rice/detail/check_ruby_type.hpp +23 -0
  105. data/rice/detail/creation_funcs.hpp +37 -0
  106. data/rice/detail/creation_funcs.ipp +36 -0
  107. data/rice/detail/default_allocation_func.hpp +23 -0
  108. data/rice/detail/default_allocation_func.ipp +11 -0
  109. data/rice/detail/define_method_and_auto_wrap.hpp +31 -0
  110. data/rice/detail/define_method_and_auto_wrap.ipp +30 -0
  111. data/rice/detail/demangle.cpp +56 -0
  112. data/rice/detail/demangle.hpp +19 -0
  113. data/rice/detail/env.hpp +19 -0
  114. data/rice/detail/from_ruby.hpp +43 -0
  115. data/rice/detail/from_ruby.ipp +60 -0
  116. data/rice/detail/method_data.cpp +392 -0
  117. data/rice/detail/method_data.cpp.rpp +301 -0
  118. data/rice/detail/method_data.hpp +21 -0
  119. data/rice/detail/mininode.cpp +1220 -0
  120. data/rice/detail/mininode.cpp.rpp +62 -0
  121. data/rice/detail/mininode.hpp +320 -0
  122. data/rice/detail/mininode.hpp.rpp +119 -0
  123. data/rice/detail/node.hpp +13 -0
  124. data/rice/detail/object_call.hpp +85 -0
  125. data/rice/detail/object_call.ipp +147 -0
  126. data/rice/detail/protect.cpp +29 -0
  127. data/rice/detail/protect.hpp +34 -0
  128. data/rice/detail/remove_const.hpp +21 -0
  129. data/rice/detail/ruby.hpp +89 -0
  130. data/rice/detail/ruby_version_code.hpp +6 -0
  131. data/rice/detail/ruby_version_code.hpp.in +6 -0
  132. data/rice/detail/rubysig.hpp +19 -0
  133. data/rice/detail/st.hpp +60 -0
  134. data/rice/detail/to_ruby.hpp +22 -0
  135. data/rice/detail/to_ruby.ipp +37 -0
  136. data/rice/detail/win32.hpp +16 -0
  137. data/rice/detail/wrap_function.hpp +345 -0
  138. data/rice/detail/wrap_function.ipp +531 -0
  139. data/rice/generate_code.rb +1311 -0
  140. data/rice/global_function.hpp +33 -0
  141. data/rice/global_function.ipp +22 -0
  142. data/rice/protect.hpp +91 -0
  143. data/rice/protect.ipp +803 -0
  144. data/rice/ruby_mark.hpp +13 -0
  145. data/rice/ruby_try_catch.hpp +86 -0
  146. data/rice/rubypp.rb +97 -0
  147. data/rice/to_from_ruby.hpp +8 -0
  148. data/rice/to_from_ruby.ipp +299 -0
  149. data/rice/to_from_ruby_defn.hpp +71 -0
  150. data/ruby.ac +150 -0
  151. data/ruby/Makefile.am +1 -0
  152. data/ruby/Makefile.in +497 -0
  153. data/ruby/lib/Makefile.am +3 -0
  154. data/ruby/lib/Makefile.in +374 -0
  155. data/ruby/lib/mkmf-rice.rb.in +209 -0
  156. data/ruby/lib/version.rb +3 -0
  157. data/sample/Makefile.am +47 -0
  158. data/sample/Makefile.in +380 -0
  159. data/sample/enum/extconf.rb +3 -0
  160. data/sample/enum/sample_enum.cpp +54 -0
  161. data/sample/enum/test.rb +8 -0
  162. data/sample/inheritance/animals.cpp +98 -0
  163. data/sample/inheritance/extconf.rb +3 -0
  164. data/sample/inheritance/test.rb +7 -0
  165. data/sample/map/extconf.rb +3 -0
  166. data/sample/map/map.cpp +81 -0
  167. data/sample/map/test.rb +7 -0
  168. data/test/Makefile.am +49 -0
  169. data/test/Makefile.in +603 -0
  170. data/test/test_Address_Registration_Guard.cpp +43 -0
  171. data/test/test_Allocation_Strategies.cpp +77 -0
  172. data/test/test_Array.cpp +241 -0
  173. data/test/test_Builtin_Object.cpp +72 -0
  174. data/test/test_Class.cpp +398 -0
  175. data/test/test_Constructor.cpp +238 -0
  176. data/test/test_Critical_Guard.cpp +51 -0
  177. data/test/test_Data_Object.cpp +275 -0
  178. data/test/test_Data_Type.cpp +121 -0
  179. data/test/test_Director.cpp +225 -0
  180. data/test/test_Enum.cpp +162 -0
  181. data/test/test_Exception.cpp +46 -0
  182. data/test/test_Hash.cpp +195 -0
  183. data/test/test_Identifier.cpp +70 -0
  184. data/test/test_Jump_Tag.cpp +17 -0
  185. data/test/test_Module.cpp +428 -0
  186. data/test/test_Object.cpp +148 -0
  187. data/test/test_String.cpp +94 -0
  188. data/test/test_Struct.cpp +192 -0
  189. data/test/test_Symbol.cpp +63 -0
  190. data/test/test_To_From_Ruby.cpp +263 -0
  191. data/test/test_VM.cpp +26 -0
  192. data/test/test_global_functions.cpp +97 -0
  193. data/test/test_rice.rb +35 -0
  194. data/test/unittest.cpp +136 -0
  195. data/test/unittest.hpp +292 -0
  196. metadata +247 -0
data/Makefile.am ADDED
@@ -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
24
+ @echo Generating documentation
25
+ @$(RUBY) -e 'File.open("README") { |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 " */" } }'
26
+
data/Makefile.in ADDED
@@ -0,0 +1,749 @@
1
+ # Makefile.in generated by automake 1.10.2 from Makefile.am.
2
+ # @configure_input@
3
+
4
+ # Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002,
5
+ # 2003, 2004, 2005, 2006, 2007, 2008 Free Software Foundation, Inc.
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
+ pkgdatadir = $(datadir)/@PACKAGE@
48
+ pkglibdir = $(libdir)/@PACKAGE@
49
+ pkgincludedir = $(includedir)/@PACKAGE@
50
+ am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd
51
+ install_sh_DATA = $(install_sh) -c -m 644
52
+ install_sh_PROGRAM = $(install_sh) -c
53
+ install_sh_SCRIPT = $(install_sh) -c
54
+ INSTALL_HEADER = $(INSTALL_DATA)
55
+ transform = $(program_transform_name)
56
+ NORMAL_INSTALL = :
57
+ PRE_INSTALL = :
58
+ POST_INSTALL = :
59
+ NORMAL_UNINSTALL = :
60
+ PRE_UNINSTALL = :
61
+ POST_UNINSTALL = :
62
+ build_triplet = @build@
63
+ host_triplet = @host@
64
+ DIST_COMMON = README $(am__configure_deps) $(srcdir)/Makefile.am \
65
+ $(srcdir)/Makefile.in $(srcdir)/doxygen.am \
66
+ $(top_srcdir)/configure \
67
+ $(top_srcdir)/rice/detail/ruby_version_code.hpp.in COPYING \
68
+ config.guess config.sub depcomp install-sh missing
69
+ subdir = .
70
+ ACLOCAL_M4 = $(top_srcdir)/aclocal.m4
71
+ am__aclocal_m4_deps = $(top_srcdir)/ruby.ac $(top_srcdir)/doxygen.ac \
72
+ $(top_srcdir)/configure.ac
73
+ am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \
74
+ $(ACLOCAL_M4)
75
+ am__CONFIG_DISTCLEAN_FILES = config.status config.cache config.log \
76
+ configure.lineno config.status.lineno
77
+ mkinstalldirs = $(install_sh) -d
78
+ CONFIG_HEADER = $(top_builddir)/rice/config.hpp
79
+ CONFIG_CLEAN_FILES = rice/detail/ruby_version_code.hpp
80
+ SOURCES =
81
+ DIST_SOURCES =
82
+ RECURSIVE_TARGETS = all-recursive check-recursive dvi-recursive \
83
+ html-recursive info-recursive install-data-recursive \
84
+ install-dvi-recursive install-exec-recursive \
85
+ install-html-recursive install-info-recursive \
86
+ install-pdf-recursive install-ps-recursive install-recursive \
87
+ installcheck-recursive installdirs-recursive pdf-recursive \
88
+ ps-recursive uninstall-recursive
89
+ RECURSIVE_CLEAN_TARGETS = mostlyclean-recursive clean-recursive \
90
+ distclean-recursive maintainer-clean-recursive
91
+ ETAGS = etags
92
+ CTAGS = ctags
93
+ DIST_SUBDIRS = $(SUBDIRS)
94
+ DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST)
95
+ distdir = $(PACKAGE)-$(VERSION)
96
+ top_distdir = "$(distdir)"
97
+ am__remove_distdir = \
98
+ { test ! -d "$(distdir)" \
99
+ || { find "$(distdir)" -type d ! -perm -200 -exec chmod u+w {} ';' \
100
+ && rm -fr "$(distdir)"; }; }
101
+ DIST_ARCHIVES = "$(distdir)".tar.gz
102
+ GZIP_ENV = --best
103
+ distuninstallcheck_listfiles = find . -type f -print
104
+ distcleancheck_listfiles = find . -type f -print
105
+ ACLOCAL = @ACLOCAL@
106
+ AMTAR = @AMTAR@
107
+ AUTOCONF = @AUTOCONF@
108
+ AUTOHEADER = @AUTOHEADER@
109
+ AUTOMAKE = @AUTOMAKE@
110
+ AWK = @AWK@
111
+ CPPFLAGS = @CPPFLAGS@
112
+ CXX = @CXX@
113
+ CXXDEPMODE = @CXXDEPMODE@
114
+ CXXFLAGS = @CXXFLAGS@
115
+ CYGPATH_W = @CYGPATH_W@
116
+ DEFS = @DEFS@
117
+ DEPDIR = @DEPDIR@
118
+ DOXYGEN_PAPER_SIZE = @DOXYGEN_PAPER_SIZE@
119
+ DX_CONFIG = @DX_CONFIG@
120
+ DX_DOCDIR = @DX_DOCDIR@
121
+ DX_DOT = @DX_DOT@
122
+ DX_DOXYGEN = @DX_DOXYGEN@
123
+ DX_DVIPS = @DX_DVIPS@
124
+ DX_EGREP = @DX_EGREP@
125
+ DX_ENV = @DX_ENV@
126
+ DX_FLAG_chi = @DX_FLAG_chi@
127
+ DX_FLAG_chm = @DX_FLAG_chm@
128
+ DX_FLAG_doc = @DX_FLAG_doc@
129
+ DX_FLAG_dot = @DX_FLAG_dot@
130
+ DX_FLAG_html = @DX_FLAG_html@
131
+ DX_FLAG_man = @DX_FLAG_man@
132
+ DX_FLAG_pdf = @DX_FLAG_pdf@
133
+ DX_FLAG_ps = @DX_FLAG_ps@
134
+ DX_FLAG_rtf = @DX_FLAG_rtf@
135
+ DX_FLAG_xml = @DX_FLAG_xml@
136
+ DX_HHC = @DX_HHC@
137
+ DX_LATEX = @DX_LATEX@
138
+ DX_MAKEINDEX = @DX_MAKEINDEX@
139
+ DX_PDFLATEX = @DX_PDFLATEX@
140
+ DX_PERL = @DX_PERL@
141
+ DX_PROJECT = @DX_PROJECT@
142
+ ECHO_C = @ECHO_C@
143
+ ECHO_N = @ECHO_N@
144
+ ECHO_T = @ECHO_T@
145
+ EXEEXT = @EXEEXT@
146
+ INSTALL = @INSTALL@
147
+ INSTALL_DATA = @INSTALL_DATA@
148
+ INSTALL_PROGRAM = @INSTALL_PROGRAM@
149
+ INSTALL_SCRIPT = @INSTALL_SCRIPT@
150
+ INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@
151
+ LDFLAGS = @LDFLAGS@
152
+ LIBOBJS = @LIBOBJS@
153
+ LIBS = @LIBS@
154
+ LTLIBOBJS = @LTLIBOBJS@
155
+ MAKEINFO = @MAKEINFO@
156
+ MKDIR_P = @MKDIR_P@
157
+ OBJEXT = @OBJEXT@
158
+ PACKAGE = @PACKAGE@
159
+ PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@
160
+ PACKAGE_NAME = @PACKAGE_NAME@
161
+ PACKAGE_STRING = @PACKAGE_STRING@
162
+ PACKAGE_TARNAME = @PACKAGE_TARNAME@
163
+ PACKAGE_VERSION = @PACKAGE_VERSION@
164
+ PATH_SEPARATOR = @PATH_SEPARATOR@
165
+ RANLIB = @RANLIB@
166
+ RICE_CPPFLAGS = @RICE_CPPFLAGS@
167
+ RICE_LDFLAGS = @RICE_LDFLAGS@
168
+ RICE_ROOT = @RICE_ROOT@
169
+ RICE_SAMPLES = @RICE_SAMPLES@
170
+ RICE_USING_MINGW32 = @RICE_USING_MINGW32@
171
+ RUBY = @RUBY@
172
+ RUBY_CFLAGS = @RUBY_CFLAGS@
173
+ RUBY_CPPFLAGS = @RUBY_CPPFLAGS@
174
+ RUBY_CXXFLAGS = @RUBY_CXXFLAGS@
175
+ RUBY_LDFLAGS = @RUBY_LDFLAGS@
176
+ RUBY_LIBRUBYARG = @RUBY_LIBRUBYARG@
177
+ RUBY_LIBRUBYARG_STATIC = @RUBY_LIBRUBYARG_STATIC@
178
+ RUBY_LIBS = @RUBY_LIBS@
179
+ RUBY_SITELIBDIR = @RUBY_SITELIBDIR@
180
+ RUBY_VERSION_CODE = @RUBY_VERSION_CODE@
181
+ SET_MAKE = @SET_MAKE@
182
+ SHELL = @SHELL@
183
+ STRIP = @STRIP@
184
+ VERSION = @VERSION@
185
+ abs_builddir = @abs_builddir@
186
+ abs_srcdir = @abs_srcdir@
187
+ abs_top_builddir = @abs_top_builddir@
188
+ abs_top_srcdir = @abs_top_srcdir@
189
+ ac_ct_CXX = @ac_ct_CXX@
190
+ am__include = @am__include@
191
+ am__leading_dot = @am__leading_dot@
192
+ am__quote = @am__quote@
193
+ am__tar = @am__tar@
194
+ am__untar = @am__untar@
195
+ bindir = @bindir@
196
+ build = @build@
197
+ build_alias = @build_alias@
198
+ build_cpu = @build_cpu@
199
+ build_os = @build_os@
200
+ build_vendor = @build_vendor@
201
+ builddir = @builddir@
202
+ datadir = @datadir@
203
+ datarootdir = @datarootdir@
204
+ docdir = @docdir@
205
+ dvidir = @dvidir@
206
+ exec_prefix = @exec_prefix@
207
+ host = @host@
208
+ host_alias = @host_alias@
209
+ host_cpu = @host_cpu@
210
+ host_os = @host_os@
211
+ host_vendor = @host_vendor@
212
+ htmldir = @htmldir@
213
+ includedir = @includedir@
214
+ infodir = @infodir@
215
+ install_sh = @install_sh@
216
+ libdir = @libdir@
217
+ libexecdir = @libexecdir@
218
+ localedir = @localedir@
219
+ localstatedir = @localstatedir@
220
+ mandir = @mandir@
221
+ mkdir_p = @mkdir_p@
222
+ oldincludedir = @oldincludedir@
223
+ pdfdir = @pdfdir@
224
+ prefix = @prefix@
225
+ program_transform_name = @program_transform_name@
226
+ psdir = @psdir@
227
+ sbindir = @sbindir@
228
+ sharedstatedir = @sharedstatedir@
229
+ srcdir = @srcdir@
230
+ sysconfdir = @sysconfdir@
231
+ target_alias = @target_alias@
232
+ top_build_prefix = @top_build_prefix@
233
+ top_builddir = @top_builddir@
234
+ top_srcdir = @top_srcdir@
235
+ AUTOMAKE_OPTIONS = foreign 1.5
236
+ SUBDIRS = rice test sample ruby
237
+ @DX_COND_doc_TRUE@@DX_COND_html_TRUE@DX_CLEAN_HTML = @DX_DOCDIR@/html
238
+ @DX_COND_chm_TRUE@@DX_COND_doc_TRUE@DX_CLEAN_CHM = @DX_DOCDIR@/chm
239
+ @DX_COND_chi_TRUE@@DX_COND_chm_TRUE@@DX_COND_doc_TRUE@DX_CLEAN_CHI = @DX_DOCDIR@/@PACKAGE@.chi
240
+ @DX_COND_doc_TRUE@@DX_COND_man_TRUE@DX_CLEAN_MAN = @DX_DOCDIR@/man
241
+ @DX_COND_doc_TRUE@@DX_COND_rtf_TRUE@DX_CLEAN_RTF = @DX_DOCDIR@/rtf
242
+ @DX_COND_doc_TRUE@@DX_COND_xml_TRUE@DX_CLEAN_XML = @DX_DOCDIR@/xml
243
+ @DX_COND_doc_TRUE@@DX_COND_ps_TRUE@DX_CLEAN_PS = @DX_DOCDIR@/@PACKAGE@.ps
244
+ @DX_COND_doc_TRUE@@DX_COND_ps_TRUE@DX_PS_GOAL = doxygen-ps
245
+ @DX_COND_doc_TRUE@@DX_COND_pdf_TRUE@DX_CLEAN_PDF = @DX_DOCDIR@/@PACKAGE@.pdf
246
+ @DX_COND_doc_TRUE@@DX_COND_pdf_TRUE@DX_PDF_GOAL = doxygen-pdf
247
+ @DX_COND_doc_TRUE@@DX_COND_latex_TRUE@DX_CLEAN_LATEX = @DX_DOCDIR@/latex
248
+ @DX_COND_doc_TRUE@DX_CLEANFILES = \
249
+ @DX_COND_doc_TRUE@ @DX_DOCDIR@/@PACKAGE@.tag \
250
+ @DX_COND_doc_TRUE@ -r \
251
+ @DX_COND_doc_TRUE@ $(DX_CLEAN_HTML) \
252
+ @DX_COND_doc_TRUE@ $(DX_CLEAN_CHM) \
253
+ @DX_COND_doc_TRUE@ $(DX_CLEAN_CHI) \
254
+ @DX_COND_doc_TRUE@ $(DX_CLEAN_MAN) \
255
+ @DX_COND_doc_TRUE@ $(DX_CLEAN_RTF) \
256
+ @DX_COND_doc_TRUE@ $(DX_CLEAN_XML) \
257
+ @DX_COND_doc_TRUE@ $(DX_CLEAN_PS) \
258
+ @DX_COND_doc_TRUE@ $(DX_CLEAN_PDF) \
259
+ @DX_COND_doc_TRUE@ $(DX_CLEAN_LATEX)
260
+
261
+ noinst_EXTRA = rice/README.doxygen
262
+ DX_EXTRA_DEPEND = rice/README.doxygen
263
+ EXTRA_DIST = \
264
+ README.mingw \
265
+ post-autoconf.rb \
266
+ post-automake.rb \
267
+ bootstrap \
268
+ Doxyfile \
269
+ ruby.ac \
270
+ doxygen.ac \
271
+ doxygen.am \
272
+ doc
273
+
274
+ all: all-recursive
275
+
276
+ .SUFFIXES:
277
+ am--refresh:
278
+ @:
279
+ $(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(srcdir)/doxygen.am $(am__configure_deps)
280
+ @for dep in $?; do \
281
+ case '$(am__configure_deps)' in \
282
+ *$$dep*) \
283
+ echo ' cd $(srcdir) && $(AUTOMAKE) --foreign '; \
284
+ cd $(srcdir) && $(AUTOMAKE) --foreign \
285
+ && exit 0; \
286
+ exit 1;; \
287
+ esac; \
288
+ done; \
289
+ echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign Makefile'; \
290
+ cd $(top_srcdir) && \
291
+ $(AUTOMAKE) --foreign Makefile
292
+ .PRECIOUS: Makefile
293
+ Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
294
+ @case '$?' in \
295
+ *config.status*) \
296
+ echo ' $(SHELL) ./config.status'; \
297
+ $(SHELL) ./config.status;; \
298
+ *) \
299
+ echo ' cd $(top_builddir) && $(SHELL) ./config.status $@ $(am__depfiles_maybe)'; \
300
+ cd $(top_builddir) && $(SHELL) ./config.status $@ $(am__depfiles_maybe);; \
301
+ esac;
302
+
303
+ $(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES)
304
+ $(SHELL) ./config.status --recheck
305
+
306
+ $(top_srcdir)/configure: $(am__configure_deps)
307
+ cd $(srcdir) && $(AUTOCONF)
308
+ $(ACLOCAL_M4): $(am__aclocal_m4_deps)
309
+ cd $(srcdir) && $(ACLOCAL) $(ACLOCAL_AMFLAGS)
310
+ rice/detail/ruby_version_code.hpp: $(top_builddir)/config.status $(top_srcdir)/rice/detail/ruby_version_code.hpp.in
311
+ cd $(top_builddir) && $(SHELL) ./config.status $@
312
+
313
+ # This directory's subdirectories are mostly independent; you can cd
314
+ # into them and run `make' without going through this Makefile.
315
+ # To change the values of `make' variables: instead of editing Makefiles,
316
+ # (1) if the variable is set in `config.status', edit `config.status'
317
+ # (which will cause the Makefiles to be regenerated when you run `make');
318
+ # (2) otherwise, pass the desired values on the `make' command line.
319
+ $(RECURSIVE_TARGETS):
320
+ @failcom='exit 1'; \
321
+ for f in x $$MAKEFLAGS; do \
322
+ case $$f in \
323
+ *=* | --[!k]*);; \
324
+ *k*) failcom='fail=yes';; \
325
+ esac; \
326
+ done; \
327
+ dot_seen=no; \
328
+ target=`echo $@ | sed s/-recursive//`; \
329
+ list='$(SUBDIRS)'; for subdir in $$list; do \
330
+ echo "Making $$target in $$subdir"; \
331
+ if test "$$subdir" = "."; then \
332
+ dot_seen=yes; \
333
+ local_target="$$target-am"; \
334
+ else \
335
+ local_target="$$target"; \
336
+ fi; \
337
+ (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$local_target) \
338
+ || eval $$failcom; \
339
+ done; \
340
+ if test "$$dot_seen" = "no"; then \
341
+ $(MAKE) $(AM_MAKEFLAGS) "$$target-am" || exit 1; \
342
+ fi; test -z "$$fail"
343
+
344
+ $(RECURSIVE_CLEAN_TARGETS):
345
+ @failcom='exit 1'; \
346
+ for f in x $$MAKEFLAGS; do \
347
+ case $$f in \
348
+ *=* | --[!k]*);; \
349
+ *k*) failcom='fail=yes';; \
350
+ esac; \
351
+ done; \
352
+ dot_seen=no; \
353
+ case "$@" in \
354
+ distclean-* | maintainer-clean-*) list='$(DIST_SUBDIRS)' ;; \
355
+ *) list='$(SUBDIRS)' ;; \
356
+ esac; \
357
+ rev=''; for subdir in $$list; do \
358
+ if test "$$subdir" = "."; then :; else \
359
+ rev="$$subdir $$rev"; \
360
+ fi; \
361
+ done; \
362
+ rev="$$rev ."; \
363
+ target=`echo $@ | sed s/-recursive//`; \
364
+ for subdir in $$rev; do \
365
+ echo "Making $$target in $$subdir"; \
366
+ if test "$$subdir" = "."; then \
367
+ local_target="$$target-am"; \
368
+ else \
369
+ local_target="$$target"; \
370
+ fi; \
371
+ (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$local_target) \
372
+ || eval $$failcom; \
373
+ done && test -z "$$fail"
374
+ tags-recursive:
375
+ list='$(SUBDIRS)'; for subdir in $$list; do \
376
+ test "$$subdir" = . || (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) tags); \
377
+ done
378
+ ctags-recursive:
379
+ list='$(SUBDIRS)'; for subdir in $$list; do \
380
+ test "$$subdir" = . || (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) ctags); \
381
+ done
382
+
383
+ ID: $(HEADERS) $(SOURCES) $(LISP) $(TAGS_FILES)
384
+ list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \
385
+ unique=`for i in $$list; do \
386
+ if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
387
+ done | \
388
+ $(AWK) '{ files[$$0] = 1; nonempty = 1; } \
389
+ END { if (nonempty) { for (i in files) print i; }; }'`; \
390
+ mkid -fID $$unique
391
+ tags: TAGS
392
+
393
+ TAGS: tags-recursive $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \
394
+ $(TAGS_FILES) $(LISP)
395
+ tags=; \
396
+ here=`pwd`; \
397
+ if ($(ETAGS) --etags-include --version) >/dev/null 2>&1; then \
398
+ include_option=--etags-include; \
399
+ empty_fix=.; \
400
+ else \
401
+ include_option=--include; \
402
+ empty_fix=; \
403
+ fi; \
404
+ list='$(SUBDIRS)'; for subdir in $$list; do \
405
+ if test "$$subdir" = .; then :; else \
406
+ test ! -f $$subdir/TAGS || \
407
+ tags="$$tags $$include_option=$$here/$$subdir/TAGS"; \
408
+ fi; \
409
+ done; \
410
+ list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \
411
+ unique=`for i in $$list; do \
412
+ if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
413
+ done | \
414
+ $(AWK) '{ files[$$0] = 1; nonempty = 1; } \
415
+ END { if (nonempty) { for (i in files) print i; }; }'`; \
416
+ if test -z "$(ETAGS_ARGS)$$tags$$unique"; then :; else \
417
+ test -n "$$unique" || unique=$$empty_fix; \
418
+ $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \
419
+ $$tags $$unique; \
420
+ fi
421
+ ctags: CTAGS
422
+ CTAGS: ctags-recursive $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \
423
+ $(TAGS_FILES) $(LISP)
424
+ tags=; \
425
+ list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \
426
+ unique=`for i in $$list; do \
427
+ if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
428
+ done | \
429
+ $(AWK) '{ files[$$0] = 1; nonempty = 1; } \
430
+ END { if (nonempty) { for (i in files) print i; }; }'`; \
431
+ test -z "$(CTAGS_ARGS)$$tags$$unique" \
432
+ || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \
433
+ $$tags $$unique
434
+
435
+ GTAGS:
436
+ here=`$(am__cd) $(top_builddir) && pwd` \
437
+ && cd $(top_srcdir) \
438
+ && gtags -i $(GTAGS_ARGS) $$here
439
+
440
+ distclean-tags:
441
+ -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags
442
+
443
+ distdir: $(DISTFILES)
444
+ $(am__remove_distdir)
445
+ test -d "$(distdir)" || mkdir "$(distdir)"
446
+ @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
447
+ topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
448
+ list='$(DISTFILES)'; \
449
+ dist_files=`for file in $$list; do echo $$file; done | \
450
+ sed -e "s|^$$srcdirstrip/||;t" \
451
+ -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \
452
+ case $$dist_files in \
453
+ */*) eval $(MKDIR_P) `echo "$$dist_files" | \
454
+ sed '/\//!d;s|^|"$(distdir)"/|;s,/[^/]*$$,,' | \
455
+ sort -u` ;; \
456
+ esac; \
457
+ for file in $$dist_files; do \
458
+ if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \
459
+ if test -d $$d/$$file; then \
460
+ dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \
461
+ if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \
462
+ cp -pR $(srcdir)/$$file "$(distdir)"$$dir || exit 1; \
463
+ fi; \
464
+ cp -pR $$d/$$file "$(distdir)"$$dir || exit 1; \
465
+ else \
466
+ test -f "$(distdir)"/$$file \
467
+ || cp -p $$d/$$file "$(distdir)"/$$file \
468
+ || exit 1; \
469
+ fi; \
470
+ done
471
+ list='$(DIST_SUBDIRS)'; for subdir in $$list; do \
472
+ if test "$$subdir" = .; then :; else \
473
+ test -d "$(distdir)/$$subdir" \
474
+ || $(MKDIR_P) "$(distdir)/$$subdir" \
475
+ || exit 1; \
476
+ distdir=`$(am__cd) "$(distdir)" && pwd`; \
477
+ top_distdir=`$(am__cd) $(top_distdir) && pwd`; \
478
+ (cd $$subdir && \
479
+ $(MAKE) $(AM_MAKEFLAGS) \
480
+ top_distdir="$$top_distdir" \
481
+ distdir="$$distdir/$$subdir" \
482
+ am__remove_distdir=: \
483
+ am__skip_length_check=: \
484
+ distdir) \
485
+ || exit 1; \
486
+ fi; \
487
+ done
488
+ -find "$(distdir)" -type d ! -perm -777 -exec chmod a+rwx {} \; -o \
489
+ ! -type d ! -perm -444 -links 1 -exec chmod a+r {} \; -o \
490
+ ! -type d ! -perm -400 -exec chmod a+r {} \; -o \
491
+ ! -type d ! -perm -444 -exec $(install_sh) -c -m a+r {} {} \; \
492
+ || chmod -R a+r "$(distdir)"
493
+ dist-gzip: distdir
494
+ tardir="$(distdir)" && $(am__tar) | GZIP=$(GZIP_ENV) gzip -c >"$(distdir)".tar.gz
495
+ $(am__remove_distdir)
496
+
497
+ dist-bzip2: distdir
498
+ tardir="$(distdir)" && $(am__tar) | bzip2 -9 -c >"$(distdir)".tar.bz2
499
+ $(am__remove_distdir)
500
+
501
+ dist-lzma: distdir
502
+ tardir="$(distdir)" && $(am__tar) | lzma -9 -c >"$(distdir)".tar.lzma
503
+ $(am__remove_distdir)
504
+
505
+ dist-tarZ: distdir
506
+ tardir="$(distdir)" && $(am__tar) | compress -c >"$(distdir)".tar.Z
507
+ $(am__remove_distdir)
508
+
509
+ dist-shar: distdir
510
+ shar "$(distdir)" | GZIP=$(GZIP_ENV) gzip -c >"$(distdir)".shar.gz
511
+ $(am__remove_distdir)
512
+
513
+ dist-zip: distdir
514
+ -rm -f "$(distdir)".zip
515
+ zip -rq "$(distdir)".zip "$(distdir)"
516
+ $(am__remove_distdir)
517
+
518
+ dist dist-all: distdir
519
+ tardir="$(distdir)" && $(am__tar) | GZIP=$(GZIP_ENV) gzip -c >"$(distdir)".tar.gz
520
+ $(am__remove_distdir)
521
+
522
+ # This target untars the dist file and tries a VPATH configuration. Then
523
+ # it guarantees that the distribution is self-contained by making another
524
+ # tarfile.
525
+ distcheck: dist
526
+ case '$(DIST_ARCHIVES)' in \
527
+ *.tar.gz*) \
528
+ GZIP=$(GZIP_ENV) gunzip -c "$(distdir)".tar.gz | $(am__untar) ;;\
529
+ *.tar.bz2*) \
530
+ bunzip2 -c "$(distdir)".tar.bz2 | $(am__untar) ;;\
531
+ *.tar.lzma*) \
532
+ unlzma -c "$(distdir)".tar.lzma | $(am__untar) ;;\
533
+ *.tar.Z*) \
534
+ uncompress -c "$(distdir)".tar.Z | $(am__untar) ;;\
535
+ *.shar.gz*) \
536
+ GZIP=$(GZIP_ENV) gunzip -c "$(distdir)".shar.gz | unshar ;;\
537
+ *.zip*) \
538
+ unzip "$(distdir)".zip ;;\
539
+ esac
540
+ chmod -R a-w "$(distdir)"; chmod a+w "$(distdir)"
541
+ mkdir "$(distdir)"/_build
542
+ mkdir "$(distdir)"/_inst
543
+ chmod a-w "$(distdir)"
544
+ dc_install_base=`$(am__cd) "$(distdir)"/_inst && pwd | sed -e 's,^[^:\\/]:[\\/],/,'` \
545
+ && dc_destdir="$${TMPDIR-/tmp}/am-dc-$$$$/" \
546
+ && cd "$(distdir)"/_build \
547
+ && ../configure --srcdir=.. --prefix="$$dc_install_base" \
548
+ $(DISTCHECK_CONFIGURE_FLAGS) \
549
+ && $(MAKE) $(AM_MAKEFLAGS) \
550
+ && $(MAKE) $(AM_MAKEFLAGS) dvi \
551
+ && $(MAKE) $(AM_MAKEFLAGS) check \
552
+ && $(MAKE) $(AM_MAKEFLAGS) install \
553
+ && $(MAKE) $(AM_MAKEFLAGS) installcheck \
554
+ && $(MAKE) $(AM_MAKEFLAGS) uninstall \
555
+ && $(MAKE) $(AM_MAKEFLAGS) distuninstallcheck_dir="$$dc_install_base" \
556
+ distuninstallcheck \
557
+ && chmod -R a-w "$$dc_install_base" \
558
+ && ({ \
559
+ (cd ../.. && umask 077 && mkdir "$$dc_destdir") \
560
+ && $(MAKE) $(AM_MAKEFLAGS) DESTDIR="$$dc_destdir" install \
561
+ && $(MAKE) $(AM_MAKEFLAGS) DESTDIR="$$dc_destdir" uninstall \
562
+ && $(MAKE) $(AM_MAKEFLAGS) DESTDIR="$$dc_destdir" \
563
+ distuninstallcheck_dir="$$dc_destdir" distuninstallcheck; \
564
+ } || { rm -rf "$$dc_destdir"; exit 1; }) \
565
+ && rm -rf "$$dc_destdir" \
566
+ && $(MAKE) $(AM_MAKEFLAGS) dist \
567
+ && rm -rf $(DIST_ARCHIVES) \
568
+ && $(MAKE) $(AM_MAKEFLAGS) distcleancheck
569
+ $(am__remove_distdir)
570
+ @(echo "$(distdir) archives ready for distribution: "; \
571
+ list='$(DIST_ARCHIVES)'; for i in $$list; do echo $$i; done) | \
572
+ sed -e 1h -e 1s/./=/g -e 1p -e 1x -e '$$p' -e '$$x'
573
+ distuninstallcheck:
574
+ @cd $(distuninstallcheck_dir) \
575
+ && test `$(distuninstallcheck_listfiles) | wc -l` -le 1 \
576
+ || { echo "ERROR: files left after uninstall:" ; \
577
+ if test -n "$(DESTDIR)"; then \
578
+ echo " (check DESTDIR support)"; \
579
+ fi ; \
580
+ $(distuninstallcheck_listfiles) ; \
581
+ exit 1; } >&2
582
+ distcleancheck: distclean
583
+ @if test '$(srcdir)' = . ; then \
584
+ echo "ERROR: distcleancheck can only run from a VPATH build" ; \
585
+ exit 1 ; \
586
+ fi
587
+ @test `$(distcleancheck_listfiles) | wc -l` -eq 0 \
588
+ || { echo "ERROR: files left in build directory after distclean:" ; \
589
+ $(distcleancheck_listfiles) ; \
590
+ exit 1; } >&2
591
+ check-am: all-am
592
+ check: check-recursive
593
+ all-am: Makefile
594
+ installdirs: installdirs-recursive
595
+ installdirs-am:
596
+ install: install-recursive
597
+ install-exec: install-exec-recursive
598
+ install-data: install-data-recursive
599
+ uninstall: uninstall-recursive
600
+
601
+ install-am: all-am
602
+ @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am
603
+
604
+ installcheck: installcheck-recursive
605
+ install-strip:
606
+ $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \
607
+ install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \
608
+ `test -z '$(STRIP)' || \
609
+ echo "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'"` install
610
+ mostlyclean-generic:
611
+
612
+ clean-generic:
613
+
614
+ distclean-generic:
615
+ -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES)
616
+
617
+ maintainer-clean-generic:
618
+ @echo "This command is intended for maintainers to use"
619
+ @echo "it deletes files that may require special tools to rebuild."
620
+ clean: clean-recursive
621
+
622
+ clean-am: clean-generic mostlyclean-am
623
+
624
+ distclean: distclean-recursive
625
+ -rm -f $(am__CONFIG_DISTCLEAN_FILES)
626
+ -rm -f Makefile
627
+ distclean-am: clean-am distclean-generic distclean-tags
628
+
629
+ dvi: dvi-recursive
630
+
631
+ dvi-am:
632
+
633
+ html: html-recursive
634
+
635
+ info: info-recursive
636
+
637
+ info-am:
638
+
639
+ install-data-am:
640
+
641
+ install-dvi: install-dvi-recursive
642
+
643
+ install-exec-am:
644
+
645
+ install-html: install-html-recursive
646
+
647
+ install-info: install-info-recursive
648
+
649
+ install-man:
650
+
651
+ install-pdf: install-pdf-recursive
652
+
653
+ install-ps: install-ps-recursive
654
+
655
+ installcheck-am:
656
+
657
+ maintainer-clean: maintainer-clean-recursive
658
+ -rm -f $(am__CONFIG_DISTCLEAN_FILES)
659
+ -rm -rf $(top_srcdir)/autom4te.cache
660
+ -rm -f Makefile
661
+ maintainer-clean-am: distclean-am maintainer-clean-generic
662
+
663
+ mostlyclean: mostlyclean-recursive
664
+
665
+ mostlyclean-am: mostlyclean-generic
666
+
667
+ pdf: pdf-recursive
668
+
669
+ pdf-am:
670
+
671
+ ps: ps-recursive
672
+
673
+ ps-am:
674
+
675
+ uninstall-am:
676
+
677
+ .MAKE: $(RECURSIVE_CLEAN_TARGETS) $(RECURSIVE_TARGETS) install-am \
678
+ install-strip
679
+
680
+ .PHONY: $(RECURSIVE_CLEAN_TARGETS) $(RECURSIVE_TARGETS) CTAGS GTAGS \
681
+ all all-am am--refresh check check-am clean clean-generic \
682
+ ctags ctags-recursive dist dist-all dist-bzip2 dist-gzip \
683
+ dist-lzma dist-shar dist-tarZ dist-zip distcheck distclean \
684
+ distclean-generic distclean-tags distcleancheck distdir \
685
+ distuninstallcheck dvi dvi-am html html-am info info-am \
686
+ install install-am install-data install-data-am install-dvi \
687
+ install-dvi-am install-exec install-exec-am install-html \
688
+ install-html-am install-info install-info-am install-man \
689
+ install-pdf install-pdf-am install-ps install-ps-am \
690
+ install-strip installcheck installcheck-am installdirs \
691
+ installdirs-am maintainer-clean maintainer-clean-generic \
692
+ mostlyclean mostlyclean-generic pdf pdf-am ps ps-am tags \
693
+ tags-recursive uninstall uninstall-am
694
+
695
+
696
+ @DX_COND_doc_TRUE@@DX_COND_ps_TRUE@doxygen-ps: @DX_DOCDIR@/@PACKAGE@.ps
697
+
698
+ @DX_COND_doc_TRUE@@DX_COND_ps_TRUE@@DX_DOCDIR@/@PACKAGE@.ps: @DX_DOCDIR@/@PACKAGE@.tag $(DX_EXTRA_DEPEND)
699
+ @DX_COND_doc_TRUE@@DX_COND_ps_TRUE@ cd @DX_DOCDIR@/latex; \
700
+ @DX_COND_doc_TRUE@@DX_COND_ps_TRUE@ rm -f *.aux *.toc *.idx *.ind *.ilg *.log *.out; \
701
+ @DX_COND_doc_TRUE@@DX_COND_ps_TRUE@ $(DX_LATEX) refman.tex; \
702
+ @DX_COND_doc_TRUE@@DX_COND_ps_TRUE@ $(MAKEINDEX_PATH) refman.idx; \
703
+ @DX_COND_doc_TRUE@@DX_COND_ps_TRUE@ $(DX_LATEX) refman.tex; \
704
+ @DX_COND_doc_TRUE@@DX_COND_ps_TRUE@ countdown=5; \
705
+ @DX_COND_doc_TRUE@@DX_COND_ps_TRUE@ while $(DX_EGREP) 'Rerun (LaTeX|to get cross-references right)' \
706
+ @DX_COND_doc_TRUE@@DX_COND_ps_TRUE@ refman.log > /dev/null 2>&1 \
707
+ @DX_COND_doc_TRUE@@DX_COND_ps_TRUE@ && test $$countdown -gt 0; do \
708
+ @DX_COND_doc_TRUE@@DX_COND_ps_TRUE@ $(DX_LATEX) refman.tex; \
709
+ @DX_COND_doc_TRUE@@DX_COND_ps_TRUE@ countdown=`expr $$countdown - 1`; \
710
+ @DX_COND_doc_TRUE@@DX_COND_ps_TRUE@ done; \
711
+ @DX_COND_doc_TRUE@@DX_COND_ps_TRUE@ $(DX_DVIPS) -o ../@PACKAGE@.ps refman.dvi
712
+
713
+ @DX_COND_doc_TRUE@@DX_COND_pdf_TRUE@doxygen-pdf: @DX_DOCDIR@/@PACKAGE@.pdf
714
+
715
+ @DX_COND_doc_TRUE@@DX_COND_pdf_TRUE@@DX_DOCDIR@/@PACKAGE@.pdf: @DX_DOCDIR@/@PACKAGE@.tag $(DX_EXTRA_DEPEND)
716
+ @DX_COND_doc_TRUE@@DX_COND_pdf_TRUE@ cd @DX_DOCDIR@/latex; \
717
+ @DX_COND_doc_TRUE@@DX_COND_pdf_TRUE@ rm -f *.aux *.toc *.idx *.ind *.ilg *.log *.out; \
718
+ @DX_COND_doc_TRUE@@DX_COND_pdf_TRUE@ $(DX_PDFLATEX) refman.tex; \
719
+ @DX_COND_doc_TRUE@@DX_COND_pdf_TRUE@ $(DX_MAKEINDEX) refman.idx; \
720
+ @DX_COND_doc_TRUE@@DX_COND_pdf_TRUE@ $(DX_PDFLATEX) refman.tex; \
721
+ @DX_COND_doc_TRUE@@DX_COND_pdf_TRUE@ countdown=5; \
722
+ @DX_COND_doc_TRUE@@DX_COND_pdf_TRUE@ while $(DX_EGREP) 'Rerun (LaTeX|to get cross-references right)' \
723
+ @DX_COND_doc_TRUE@@DX_COND_pdf_TRUE@ refman.log > /dev/null 2>&1 \
724
+ @DX_COND_doc_TRUE@@DX_COND_pdf_TRUE@ && test $$countdown -gt 0; do \
725
+ @DX_COND_doc_TRUE@@DX_COND_pdf_TRUE@ $(DX_PDFLATEX) refman.tex; \
726
+ @DX_COND_doc_TRUE@@DX_COND_pdf_TRUE@ countdown=`expr $$countdown - 1`; \
727
+ @DX_COND_doc_TRUE@@DX_COND_pdf_TRUE@ done; \
728
+ @DX_COND_doc_TRUE@@DX_COND_pdf_TRUE@ mv refman.pdf ../@PACKAGE@.pdf
729
+
730
+ @DX_COND_doc_TRUE@.PHONY: doxygen-run doxygen-doc $(DX_PS_GOAL) $(DX_PDF_GOAL)
731
+
732
+ @DX_COND_doc_TRUE@.INTERMEDIATE: doxygen-run $(DX_PS_GOAL) $(DX_PDF_GOAL)
733
+
734
+ @DX_COND_doc_TRUE@doxygen-run: @DX_DOCDIR@/@PACKAGE@.tag
735
+
736
+ @DX_COND_doc_TRUE@doxygen-doc: doxygen-run $(DX_PS_GOAL) $(DX_PDF_GOAL)
737
+
738
+ @DX_COND_doc_TRUE@@DX_DOCDIR@/@PACKAGE@.tag: $(DX_CONFIG) $(pkginclude_HEADERS) $(DX_EXTRA_DEPEND)
739
+ @DX_COND_doc_TRUE@ rm -rf @DX_DOCDIR@
740
+ @DX_COND_doc_TRUE@ $(DX_ENV) $(DX_DOXYGEN) $(srcdir)/$(DX_CONFIG)
741
+
742
+ doc: doxygen-doc
743
+
744
+ rice/README.doxygen: README
745
+ @echo Generating documentation
746
+ @$(RUBY) -e 'File.open("README") { |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 " */" } }'
747
+ # Tell versions [3.59,3.63) of GNU make to not export all variables.
748
+ # Otherwise a system limit (for SysV at least) may be exceeded.
749
+ .NOEXPORT: