rice 1.0.0

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