rice-jdguyot 1.4.0.p1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (203) hide show
  1. data/COPYING +23 -0
  2. data/Doxyfile +1253 -0
  3. data/Makefile.am +26 -0
  4. data/Makefile.in +743 -0
  5. data/README +1119 -0
  6. data/README.mingw +8 -0
  7. data/Rakefile +33 -0
  8. data/aclocal.m4 +874 -0
  9. data/bootstrap +8 -0
  10. data/config.guess +1500 -0
  11. data/config.sub +1616 -0
  12. data/configure +7461 -0
  13. data/configure.ac +52 -0
  14. data/depcomp +584 -0
  15. data/doxygen.ac +314 -0
  16. data/doxygen.am +186 -0
  17. data/extconf.rb +34 -0
  18. data/install-sh +507 -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.cpp +22 -0
  23. data/rice/Address_Registration_Guard.hpp +7 -0
  24. data/rice/Address_Registration_Guard.ipp +37 -0
  25. data/rice/Address_Registration_Guard_defn.hpp +75 -0
  26. data/rice/Allocation_Strategies.hpp +37 -0
  27. data/rice/Arg.hpp +8 -0
  28. data/rice/Arg_impl.hpp +127 -0
  29. data/rice/Arg_operators.cpp +21 -0
  30. data/rice/Arg_operators.hpp +19 -0
  31. data/rice/Array.hpp +220 -0
  32. data/rice/Array.ipp +263 -0
  33. data/rice/Builtin_Object.hpp +8 -0
  34. data/rice/Builtin_Object.ipp +50 -0
  35. data/rice/Builtin_Object_defn.hpp +51 -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 +367 -0
  41. data/rice/Critical_Guard.hpp +40 -0
  42. data/rice/Critical_Guard.ipp +26 -0
  43. data/rice/Data_Object.hpp +8 -0
  44. data/rice/Data_Object.ipp +133 -0
  45. data/rice/Data_Object_defn.hpp +132 -0
  46. data/rice/Data_Type.cpp +54 -0
  47. data/rice/Data_Type.hpp +8 -0
  48. data/rice/Data_Type.ipp +365 -0
  49. data/rice/Data_Type_defn.hpp +261 -0
  50. data/rice/Data_Type_fwd.hpp +12 -0
  51. data/rice/Director.cpp +13 -0
  52. data/rice/Director.hpp +39 -0
  53. data/rice/Enum.hpp +117 -0
  54. data/rice/Enum.ipp +246 -0
  55. data/rice/Exception.cpp +59 -0
  56. data/rice/Exception.hpp +9 -0
  57. data/rice/Exception_Base.hpp +8 -0
  58. data/rice/Exception_Base.ipp +13 -0
  59. data/rice/Exception_Base_defn.hpp +27 -0
  60. data/rice/Exception_defn.hpp +69 -0
  61. data/rice/Hash.hpp +210 -0
  62. data/rice/Hash.ipp +338 -0
  63. data/rice/Identifier.cpp +8 -0
  64. data/rice/Identifier.hpp +50 -0
  65. data/rice/Identifier.ipp +33 -0
  66. data/rice/Jump_Tag.hpp +24 -0
  67. data/rice/Makefile.am +130 -0
  68. data/rice/Makefile.in +716 -0
  69. data/rice/Module.cpp +84 -0
  70. data/rice/Module.hpp +8 -0
  71. data/rice/Module.ipp +6 -0
  72. data/rice/Module_defn.hpp +88 -0
  73. data/rice/Module_impl.hpp +281 -0
  74. data/rice/Module_impl.ipp +348 -0
  75. data/rice/Object.cpp +160 -0
  76. data/rice/Object.hpp +8 -0
  77. data/rice/Object.ipp +19 -0
  78. data/rice/Object_defn.hpp +191 -0
  79. data/rice/Require_Guard.hpp +21 -0
  80. data/rice/String.cpp +94 -0
  81. data/rice/String.hpp +89 -0
  82. data/rice/Struct.cpp +117 -0
  83. data/rice/Struct.hpp +162 -0
  84. data/rice/Struct.ipp +26 -0
  85. data/rice/Symbol.cpp +25 -0
  86. data/rice/Symbol.hpp +66 -0
  87. data/rice/Symbol.ipp +44 -0
  88. data/rice/VM.cpp +92 -0
  89. data/rice/VM.hpp +32 -0
  90. data/rice/config.hpp +41 -0
  91. data/rice/config.hpp.in +40 -0
  92. data/rice/detail/Arguments.hpp +118 -0
  93. data/rice/detail/Auto_Function_Wrapper.hpp +829 -0
  94. data/rice/detail/Auto_Function_Wrapper.ipp +3391 -0
  95. data/rice/detail/Auto_Member_Function_Wrapper.hpp +828 -0
  96. data/rice/detail/Auto_Member_Function_Wrapper.ipp +2503 -0
  97. data/rice/detail/Caster.hpp +103 -0
  98. data/rice/detail/Exception_Handler.hpp +8 -0
  99. data/rice/detail/Exception_Handler.ipp +68 -0
  100. data/rice/detail/Exception_Handler_defn.hpp +96 -0
  101. data/rice/detail/Iterator.hpp +93 -0
  102. data/rice/detail/Not_Copyable.hpp +25 -0
  103. data/rice/detail/Wrapped_Function.hpp +33 -0
  104. data/rice/detail/cfp.hpp +24 -0
  105. data/rice/detail/cfp.ipp +51 -0
  106. data/rice/detail/check_ruby_type.cpp +27 -0
  107. data/rice/detail/check_ruby_type.hpp +23 -0
  108. data/rice/detail/creation_funcs.hpp +37 -0
  109. data/rice/detail/creation_funcs.ipp +36 -0
  110. data/rice/detail/default_allocation_func.hpp +23 -0
  111. data/rice/detail/default_allocation_func.ipp +11 -0
  112. data/rice/detail/define_method_and_auto_wrap.hpp +31 -0
  113. data/rice/detail/define_method_and_auto_wrap.ipp +30 -0
  114. data/rice/detail/demangle.cpp +56 -0
  115. data/rice/detail/demangle.hpp +19 -0
  116. data/rice/detail/env.hpp +19 -0
  117. data/rice/detail/from_ruby.hpp +43 -0
  118. data/rice/detail/from_ruby.ipp +60 -0
  119. data/rice/detail/method_data.cpp +159 -0
  120. data/rice/detail/method_data.hpp +21 -0
  121. data/rice/detail/mininode.cpp +1220 -0
  122. data/rice/detail/mininode.hpp +320 -0
  123. data/rice/detail/node.hpp +13 -0
  124. data/rice/detail/object_call.hpp +68 -0
  125. data/rice/detail/object_call.ipp +131 -0
  126. data/rice/detail/protect.cpp +29 -0
  127. data/rice/detail/protect.hpp +34 -0
  128. data/rice/detail/ruby.hpp +93 -0
  129. data/rice/detail/ruby_version_code.hpp +6 -0
  130. data/rice/detail/ruby_version_code.hpp.in +6 -0
  131. data/rice/detail/rubysig.hpp +19 -0
  132. data/rice/detail/st.hpp +60 -0
  133. data/rice/detail/to_ruby.hpp +22 -0
  134. data/rice/detail/to_ruby.ipp +36 -0
  135. data/rice/detail/traits.hpp +43 -0
  136. data/rice/detail/win32.hpp +16 -0
  137. data/rice/detail/wrap_function.hpp +341 -0
  138. data/rice/detail/wrap_function.ipp +514 -0
  139. data/rice/global_function.hpp +33 -0
  140. data/rice/global_function.ipp +22 -0
  141. data/rice/protect.hpp +91 -0
  142. data/rice/protect.ipp +1133 -0
  143. data/rice/ruby_mark.hpp +13 -0
  144. data/rice/ruby_try_catch.hpp +86 -0
  145. data/rice/rubypp.rb +97 -0
  146. data/rice/to_from_ruby.hpp +8 -0
  147. data/rice/to_from_ruby.ipp +294 -0
  148. data/rice/to_from_ruby_defn.hpp +71 -0
  149. data/ruby/Makefile.am +1 -0
  150. data/ruby/Makefile.in +497 -0
  151. data/ruby/lib/Makefile.am +3 -0
  152. data/ruby/lib/Makefile.in +373 -0
  153. data/ruby/lib/mkmf-rice.rb.in +216 -0
  154. data/ruby/lib/version.rb +3 -0
  155. data/ruby.ac +136 -0
  156. data/sample/Makefile.am +47 -0
  157. data/sample/Makefile.in +379 -0
  158. data/sample/enum/extconf.rb +3 -0
  159. data/sample/enum/sample_enum.cpp +54 -0
  160. data/sample/enum/test.rb +8 -0
  161. data/sample/inheritance/animals.cpp +98 -0
  162. data/sample/inheritance/extconf.rb +3 -0
  163. data/sample/inheritance/test.rb +7 -0
  164. data/sample/map/extconf.rb +3 -0
  165. data/sample/map/map.cpp +81 -0
  166. data/sample/map/test.rb +7 -0
  167. data/test/Makefile.am +78 -0
  168. data/test/Makefile.in +728 -0
  169. data/test/ext/Makefile.am +43 -0
  170. data/test/ext/Makefile.in +375 -0
  171. data/test/ext/t1/Foo.hpp +10 -0
  172. data/test/ext/t1/extconf.rb +2 -0
  173. data/test/ext/t1/t1.cpp +15 -0
  174. data/test/ext/t2/extconf.rb +2 -0
  175. data/test/ext/t2/t2.cpp +11 -0
  176. data/test/test_Address_Registration_Guard.cpp +43 -0
  177. data/test/test_Allocation_Strategies.cpp +77 -0
  178. data/test/test_Array.cpp +241 -0
  179. data/test/test_Builtin_Object.cpp +72 -0
  180. data/test/test_Class.cpp +498 -0
  181. data/test/test_Constructor.cpp +128 -0
  182. data/test/test_Critical_Guard.cpp +51 -0
  183. data/test/test_Data_Object.cpp +275 -0
  184. data/test/test_Data_Type.cpp +348 -0
  185. data/test/test_Director.cpp +301 -0
  186. data/test/test_Enum.cpp +195 -0
  187. data/test/test_Exception.cpp +46 -0
  188. data/test/test_Hash.cpp +195 -0
  189. data/test/test_Identifier.cpp +70 -0
  190. data/test/test_Jump_Tag.cpp +17 -0
  191. data/test/test_Memory_Management.cpp +50 -0
  192. data/test/test_Module.cpp +481 -0
  193. data/test/test_Object.cpp +148 -0
  194. data/test/test_String.cpp +94 -0
  195. data/test/test_Struct.cpp +192 -0
  196. data/test/test_Symbol.cpp +63 -0
  197. data/test/test_To_From_Ruby.cpp +277 -0
  198. data/test/test_VM.cpp +26 -0
  199. data/test/test_global_functions.cpp +114 -0
  200. data/test/test_rice.rb +43 -0
  201. data/test/unittest.cpp +136 -0
  202. data/test/unittest.hpp +292 -0
  203. metadata +289 -0
@@ -0,0 +1,3 @@
1
+ module Rice
2
+ VERSION = "1.4.0.p1"
3
+ end
data/ruby.ac ADDED
@@ -0,0 +1,136 @@
1
+ dnl Get a key from ruby's configuration table
2
+ AC_DEFUN([RUBY_CONFIG], [
3
+ $RUBY -rrbconfig -e "puts(Config::CONFIG[['$1']] || '')"])
4
+
5
+ AC_DEFUN([RB_INIT_RUBY], [
6
+
7
+ AC_ARG_WITH(
8
+ ruby,
9
+ AC_HELP_STRING(
10
+ --with-ruby=PATH,
11
+ [ path to the ruby interpreter [[ruby]] ]),
12
+ [ RUBY=$withval ],
13
+ [ RUBY=ruby ])
14
+ AC_ARG_WITH(
15
+ ruby_sitelibdir,
16
+ AC_HELP_STRING(
17
+ --with-ruby-sitelibdir=PATH,
18
+ [ path to install ruby scripts [[auto-detect]] ]),
19
+ [ ruby_sitelibdir=$withval ],
20
+ [ ruby_sitelibdir=NONE ])
21
+
22
+ AC_SUBST(RUBY)
23
+
24
+ RUBY_VERSION_CODE=`$RUBY -e "puts RUBY_VERSION.gsub(/\./, '')"`
25
+ AC_SUBST(RUBY_VERSION_CODE)
26
+
27
+ RUBY_CONFIG_SO_NAME=`RUBY_CONFIG(RUBY_SO_NAME)`
28
+ RUBY_CONFIG_ARCHDIR=`RUBY_CONFIG(archdir)`
29
+ RUBY_CONFIG_ARCH=`RUBY_CONFIG(arch)`
30
+ RUBY_CONFIG_LIBDIR=`RUBY_CONFIG(libdir)`
31
+ RUBY_CONFIG_BINDIR=`RUBY_CONFIG(bindir)`
32
+ RUBY_CONFIG_RUBYHDRDIR=`RUBY_CONFIG(rubyhdrdir)`
33
+ RUBY_CONFIG_CFLAGS=`RUBY_CONFIG(CFLAGS)`
34
+ RUBY_CONFIG_LIBS=`RUBY_CONFIG(LIBS)`
35
+ RUBY_CONFIG_DLDLIBS=`RUBY_CONFIG(DLDLIBS)`
36
+ RUBY_CONFIG_LDFLAGS=`RUBY_CONFIG(LDFLAGS)`
37
+ RUBY_CONFIG_LIBRUBYARG=`RUBY_CONFIG(LIBRUBYARG)`
38
+ RUBY_CONFIG_LIBRUBYARG_STATIC=`RUBY_CONFIG(LIBRUBYARG_STATIC)`
39
+ RUBY_CONFIG_CCDLFLAGS=`RUBY_CONFIG(CCDLFLAGS)`
40
+
41
+ if test "x${RUBY_CONFIG_RUBYHDRDIR}x" != "xx"; then
42
+ # 1.9
43
+ RUBY_CPPFLAGS="-I${RUBY_CONFIG_RUBYHDRDIR}"
44
+ RUBY_CPPFLAGS="${RUBY_CPPFLAGS} -I${RUBY_CONFIG_RUBYHDRDIR}/${RUBY_CONFIG_ARCH}"
45
+ else
46
+ # 1.8
47
+ RUBY_CPPFLAGS="-I${RUBY_CONFIG_ARCHDIR}"
48
+ fi
49
+ AC_SUBST(RUBY_CPPFLAGS)
50
+
51
+ RUBY_CFLAGS="${RUBY_CONFIG_CFLAGS} ${RUBY_CONFIG_CCDLFLAGS}"
52
+ AC_SUBST(RUBY_CFLAGS)
53
+
54
+ RUBY_CXXFLAGS="${RUBY_CONFIG_CFLAGS} ${RUBY_CONFIG_CCDLFLAGS}"
55
+ AC_SUBST(RUBY_CXXFLAGS)
56
+
57
+ RUBY_LDFLAGS="-L${RUBY_CONFIG_ARCHDIR} -L${RUBY_CONFIG_LIBDIR} ${RUBY_CONFIG_LDFLAGS}"
58
+ AC_SUBST(RUBY_LDFLAGS)
59
+
60
+ RUBY_LIBS="${RUBY_CONFIG_LIBS} ${RUBY_CONFIG_DLDLIBS}"
61
+ AC_SUBST(RUBY_LIBS)
62
+
63
+ RUBY_LIBRUBYARG="${RUBY_CONFIG_LIBRUBYARG}"
64
+ AC_SUBST(RUBY_LIBRUBYARG)
65
+
66
+ RUBY_LIBRUBYARG_STATIC="${RUBY_CONFIG_LIBRUBYARG_STATIC}"
67
+ AC_SUBST(RUBY_LIBRUBYARG_STATIC)
68
+
69
+ dnl If the user specified a prefix, then use it, otherwise defalut to
70
+ dnl the configured sitelibdir
71
+ if test "x${ruby_sitelibdir}x" != "xNONEx"
72
+ then
73
+ RUBY_SITELIBDIR="${ruby_sitelibdir}"
74
+ else
75
+ if test "x${prefix}x" = "xNONEx"
76
+ then
77
+ RUBY_SITELIBDIR=`RUBY_CONFIG(sitelibdir)`
78
+ else
79
+ sitelibdir_no_prefix=`$RUBY -rrbconfig \
80
+ -e "include Config; \
81
+ puts CONFIG[['sitelibdir']].sub(CONFIG[['prefix']], '')"`
82
+ RUBY_SITELIBDIR="${prefix}/${sitelibdir_no_prefix}"
83
+ fi
84
+ fi
85
+ AC_SUBST(RUBY_SITELIBDIR)
86
+
87
+ dnl The fourth parameter to AC_CHECK_HEADER keeps autoconf from
88
+ dnl searching for standard header files as a side-effect (which we want)
89
+ CPPFLAGS_save="${CPPFLAGS}"
90
+ CPPFLAGS="${CPPFLAGS} ${RUBY_CPPFLAGS}"
91
+ CXXFLAGS="${CPPFLAGS}"
92
+ AC_CHECK_HEADERS(ruby.h,,AC_MSG_ERROR(
93
+ could not find ruby.h (check config.log)),[ ])
94
+ AC_CHECK_HEADERS(node.h,,,[
95
+ #include <ruby.h>
96
+ ])
97
+ AC_CHECK_HEADERS(ruby/node.h,
98
+ [ AC_DEFINE(REALLY_HAVE_RUBY_NODE_H, [],
99
+ [ Define this macro to use ruby/node.h ]) ],
100
+ ,[
101
+ #include <ruby.h>
102
+ ])
103
+ AC_CHECK_HEADERS(version.h,,,[
104
+ #include <ruby.h>
105
+ ])
106
+ AC_CHECK_HEADERS(env.h,,,[
107
+ #include <ruby.h>
108
+ ])
109
+
110
+ CPPFLAGS="${CPPFLAGS_save}"
111
+
112
+ AC_MINGW32
113
+
114
+ if test x"${MINGW32}"x = xyesx; then
115
+ RB_FIX_MINGW_LIBS
116
+ fi
117
+
118
+ ]) dnl RB_INIT_RUBY
119
+
120
+ dnl We would like to be able to build using MingW against the one-click
121
+ dnl installer, which is built using VC6. So, we detect this situation
122
+ dnl and fix up the link step if this is the case.
123
+ dnl
124
+ dnl Static linking isn't likely to work correctly, so we disable it by
125
+ dnl default, but if the user asks for LIBRUBYARG_STATIC, they'll still
126
+ dnl get static linking.
127
+ AC_DEFUN([RB_FIX_MINGW_LIBS], [
128
+ RUBY_LIBS=`echo ${RUBY_LIBS} | sed -e "s%oldnames.lib%-lmoldname%"`
129
+ RUBY_LIBS=`echo ${RUBY_LIBS} | sed -e "s%user32.lib%-luser32%"`
130
+ RUBY_LIBS=`echo ${RUBY_LIBS} | sed -e "s%advapi32.lib%-ladvapi32%"`
131
+ RUBY_LIBS=`echo ${RUBY_LIBS} | sed -e "s%ws2_32.lib%-lws2_32%"`
132
+ RUBY_LIBRUBYARG=`echo ${RUBY_LIBRUBYARG} | sed -e "s%\(msvcrt-ruby.*\).lib%${RUBY_CONFIG_BINDIR}/\1.dll%"`
133
+ RUBY_LIBRUBYARG_STATIC=`echo ${RUBY_LIBRUBYARG_STATIC} | sed -e "s%\(msvcrt-ruby.*\).lib%${RUBY_CONFIG_LIBDIR}/\1.lib%"`
134
+ ]) dnl RB_FIX_MINGW_LIBS
135
+
136
+ dnl vim:ft=config
@@ -0,0 +1,47 @@
1
+ RUBY_EXTCONF_OPTIONS = -I@RICE_ROOT@/ruby/lib
2
+ EXTCONF_OPTIONS = --with-cppflags="-I@RICE_ROOT@" --with-libpath="@RICE_ROOT@/rice"
3
+
4
+ EXTRA_DIST = \
5
+ enum/extconf.rb \
6
+ enum/sample_enum.cpp \
7
+ enum/test.rb \
8
+ map/extconf.rb \
9
+ map/map.cpp \
10
+ map/test.rb \
11
+ inheritance/extconf.rb \
12
+ inheritance/animals.cpp \
13
+ inheritance/test.rb
14
+
15
+ enum/Makefile: enum/extconf.rb ../config.status ../ruby/lib/mkmf-rice.rb
16
+ @RUBY@ $(RUBY_EXTCONF_OPTIONS) -C enum extconf.rb $(EXTCONF_OPTIONS)
17
+
18
+ map/Makefile: map/extconf.rb ../config.status ../ruby/lib/mkmf-rice.rb
19
+ @RUBY@ $(RUBY_EXTCONF_OPTIONS) -C map extconf.rb $(EXTCONF_OPTIONS)
20
+
21
+ inheritance/Makefile: inheritance/extconf.rb ../config.status ../ruby/lib/mkmf-rice.rb
22
+ @RUBY@ $(RUBY_EXTCONF_OPTIONS) -C inheritance extconf.rb $(EXTCONF_OPTIONS)
23
+
24
+ all: enum/Makefile map/Makefile inheritance/Makefile all_extensions
25
+
26
+ all_extensions:
27
+ @for sample in $(RICE_SAMPLES); \
28
+ do \
29
+ $(MAKE) -C $${sample} all; \
30
+ done
31
+
32
+ clean: enum/Makefile map/Makefile inheritance/Makefile clean_extensions
33
+
34
+ clean_extensions:
35
+ @for sample in $(RICE_SAMPLES); \
36
+ do \
37
+ $(MAKE) -C $${sample} clean; \
38
+ done
39
+
40
+ distclean: enum/Makefile map/Makefile inheritance/Makefile distclean_extensions
41
+
42
+ distclean_extensions:
43
+ @for sample in $(RICE_SAMPLES);
44
+ do \
45
+ $(MAKE) -C $${sample} distclean; \
46
+ done
47
+
@@ -0,0 +1,379 @@
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
+ VPATH = @srcdir@
17
+ pkgdatadir = $(datadir)/@PACKAGE@
18
+ pkglibdir = $(libdir)/@PACKAGE@
19
+ pkgincludedir = $(includedir)/@PACKAGE@
20
+ am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd
21
+ install_sh_DATA = $(install_sh) -c -m 644
22
+ install_sh_PROGRAM = $(install_sh) -c
23
+ install_sh_SCRIPT = $(install_sh) -c
24
+ INSTALL_HEADER = $(INSTALL_DATA)
25
+ transform = $(program_transform_name)
26
+ NORMAL_INSTALL = :
27
+ PRE_INSTALL = :
28
+ POST_INSTALL = :
29
+ NORMAL_UNINSTALL = :
30
+ PRE_UNINSTALL = :
31
+ POST_UNINSTALL = :
32
+ build_triplet = @build@
33
+ host_triplet = @host@
34
+ subdir = sample
35
+ DIST_COMMON = $(srcdir)/Makefile.am $(srcdir)/Makefile.in
36
+ ACLOCAL_M4 = $(top_srcdir)/aclocal.m4
37
+ am__aclocal_m4_deps = $(top_srcdir)/ruby.ac $(top_srcdir)/doxygen.ac \
38
+ $(top_srcdir)/configure.ac
39
+ am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \
40
+ $(ACLOCAL_M4)
41
+ mkinstalldirs = $(install_sh) -d
42
+ CONFIG_HEADER = $(top_builddir)/rice/config.hpp
43
+ CONFIG_CLEAN_FILES =
44
+ SOURCES =
45
+ DIST_SOURCES =
46
+ DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST)
47
+ ACLOCAL = @ACLOCAL@
48
+ AMTAR = @AMTAR@
49
+ AUTOCONF = @AUTOCONF@
50
+ AUTOHEADER = @AUTOHEADER@
51
+ AUTOMAKE = @AUTOMAKE@
52
+ AWK = @AWK@
53
+ CPPFLAGS = @CPPFLAGS@
54
+ CXX = @CXX@
55
+ CXXDEPMODE = @CXXDEPMODE@
56
+ CXXFLAGS = @CXXFLAGS@
57
+ CYGPATH_W = @CYGPATH_W@
58
+ DEFS = @DEFS@
59
+ DEPDIR = @DEPDIR@
60
+ DOXYGEN_PAPER_SIZE = @DOXYGEN_PAPER_SIZE@
61
+ DX_CONFIG = @DX_CONFIG@
62
+ DX_DOCDIR = @DX_DOCDIR@
63
+ DX_DOT = @DX_DOT@
64
+ DX_DOXYGEN = @DX_DOXYGEN@
65
+ DX_DVIPS = @DX_DVIPS@
66
+ DX_EGREP = @DX_EGREP@
67
+ DX_ENV = @DX_ENV@
68
+ DX_FLAG_chi = @DX_FLAG_chi@
69
+ DX_FLAG_chm = @DX_FLAG_chm@
70
+ DX_FLAG_doc = @DX_FLAG_doc@
71
+ DX_FLAG_dot = @DX_FLAG_dot@
72
+ DX_FLAG_html = @DX_FLAG_html@
73
+ DX_FLAG_man = @DX_FLAG_man@
74
+ DX_FLAG_pdf = @DX_FLAG_pdf@
75
+ DX_FLAG_ps = @DX_FLAG_ps@
76
+ DX_FLAG_rtf = @DX_FLAG_rtf@
77
+ DX_FLAG_xml = @DX_FLAG_xml@
78
+ DX_HHC = @DX_HHC@
79
+ DX_LATEX = @DX_LATEX@
80
+ DX_MAKEINDEX = @DX_MAKEINDEX@
81
+ DX_PDFLATEX = @DX_PDFLATEX@
82
+ DX_PERL = @DX_PERL@
83
+ DX_PROJECT = @DX_PROJECT@
84
+ ECHO_C = @ECHO_C@
85
+ ECHO_N = @ECHO_N@
86
+ ECHO_T = @ECHO_T@
87
+ EXEEXT = @EXEEXT@
88
+ INSTALL = @INSTALL@
89
+ INSTALL_DATA = @INSTALL_DATA@
90
+ INSTALL_PROGRAM = @INSTALL_PROGRAM@
91
+ INSTALL_SCRIPT = @INSTALL_SCRIPT@
92
+ INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@
93
+ LDFLAGS = @LDFLAGS@
94
+ LIBOBJS = @LIBOBJS@
95
+ LIBS = @LIBS@
96
+ LTLIBOBJS = @LTLIBOBJS@
97
+ MAKEINFO = @MAKEINFO@
98
+ MKDIR_P = @MKDIR_P@
99
+ OBJEXT = @OBJEXT@
100
+ PACKAGE = @PACKAGE@
101
+ PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@
102
+ PACKAGE_NAME = @PACKAGE_NAME@
103
+ PACKAGE_STRING = @PACKAGE_STRING@
104
+ PACKAGE_TARNAME = @PACKAGE_TARNAME@
105
+ PACKAGE_VERSION = @PACKAGE_VERSION@
106
+ PATH_SEPARATOR = @PATH_SEPARATOR@
107
+ RANLIB = @RANLIB@
108
+ RICE_CPPFLAGS = @RICE_CPPFLAGS@
109
+ RICE_LDFLAGS = @RICE_LDFLAGS@
110
+ RICE_ROOT = @RICE_ROOT@
111
+ RICE_SAMPLES = @RICE_SAMPLES@
112
+ RICE_USING_MINGW32 = @RICE_USING_MINGW32@
113
+ RUBY = @RUBY@
114
+ RUBY_CFLAGS = @RUBY_CFLAGS@
115
+ RUBY_CPPFLAGS = @RUBY_CPPFLAGS@
116
+ RUBY_CXXFLAGS = @RUBY_CXXFLAGS@
117
+ RUBY_LDFLAGS = @RUBY_LDFLAGS@
118
+ RUBY_LIBRUBYARG = @RUBY_LIBRUBYARG@
119
+ RUBY_LIBRUBYARG_STATIC = @RUBY_LIBRUBYARG_STATIC@
120
+ RUBY_LIBS = @RUBY_LIBS@
121
+ RUBY_SITELIBDIR = @RUBY_SITELIBDIR@
122
+ RUBY_VERSION_CODE = @RUBY_VERSION_CODE@
123
+ SET_MAKE = @SET_MAKE@
124
+ SHELL = @SHELL@
125
+ STRIP = @STRIP@
126
+ VERSION = @VERSION@
127
+ abs_builddir = @abs_builddir@
128
+ abs_srcdir = @abs_srcdir@
129
+ abs_top_builddir = @abs_top_builddir@
130
+ abs_top_srcdir = @abs_top_srcdir@
131
+ ac_ct_CXX = @ac_ct_CXX@
132
+ am__include = @am__include@
133
+ am__leading_dot = @am__leading_dot@
134
+ am__quote = @am__quote@
135
+ am__tar = @am__tar@
136
+ am__untar = @am__untar@
137
+ bindir = @bindir@
138
+ build = @build@
139
+ build_alias = @build_alias@
140
+ build_cpu = @build_cpu@
141
+ build_os = @build_os@
142
+ build_vendor = @build_vendor@
143
+ builddir = @builddir@
144
+ datadir = @datadir@
145
+ datarootdir = @datarootdir@
146
+ docdir = @docdir@
147
+ dvidir = @dvidir@
148
+ exec_prefix = @exec_prefix@
149
+ host = @host@
150
+ host_alias = @host_alias@
151
+ host_cpu = @host_cpu@
152
+ host_os = @host_os@
153
+ host_vendor = @host_vendor@
154
+ htmldir = @htmldir@
155
+ includedir = @includedir@
156
+ infodir = @infodir@
157
+ install_sh = @install_sh@
158
+ libdir = @libdir@
159
+ libexecdir = @libexecdir@
160
+ localedir = @localedir@
161
+ localstatedir = @localstatedir@
162
+ mandir = @mandir@
163
+ mkdir_p = @mkdir_p@
164
+ oldincludedir = @oldincludedir@
165
+ pdfdir = @pdfdir@
166
+ prefix = @prefix@
167
+ program_transform_name = @program_transform_name@
168
+ psdir = @psdir@
169
+ sbindir = @sbindir@
170
+ sharedstatedir = @sharedstatedir@
171
+ srcdir = @srcdir@
172
+ sysconfdir = @sysconfdir@
173
+ target_alias = @target_alias@
174
+ top_builddir = @top_builddir@
175
+ top_srcdir = @top_srcdir@
176
+ RUBY_EXTCONF_OPTIONS = -I@RICE_ROOT@/ruby/lib
177
+ EXTCONF_OPTIONS = --with-cppflags="-I@RICE_ROOT@" --with-libpath="@RICE_ROOT@/rice"
178
+ EXTRA_DIST = \
179
+ enum/extconf.rb \
180
+ enum/sample_enum.cpp \
181
+ enum/test.rb \
182
+ map/extconf.rb \
183
+ map/map.cpp \
184
+ map/test.rb \
185
+ inheritance/extconf.rb \
186
+ inheritance/animals.cpp \
187
+ inheritance/test.rb
188
+
189
+ all: all-am
190
+
191
+ .SUFFIXES:
192
+ $(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(am__configure_deps)
193
+ @for dep in $?; do \
194
+ case '$(am__configure_deps)' in \
195
+ *$$dep*) \
196
+ cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh \
197
+ && exit 0; \
198
+ exit 1;; \
199
+ esac; \
200
+ done; \
201
+ echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu sample/Makefile'; \
202
+ cd $(top_srcdir) && \
203
+ $(AUTOMAKE) --gnu sample/Makefile
204
+ .PRECIOUS: Makefile
205
+ Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
206
+ @case '$?' in \
207
+ *config.status*) \
208
+ cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \
209
+ *) \
210
+ echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \
211
+ cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \
212
+ esac;
213
+
214
+ $(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES)
215
+ cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
216
+
217
+ $(top_srcdir)/configure: $(am__configure_deps)
218
+ cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
219
+ $(ACLOCAL_M4): $(am__aclocal_m4_deps)
220
+ cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
221
+ tags: TAGS
222
+ TAGS:
223
+
224
+ ctags: CTAGS
225
+ CTAGS:
226
+
227
+
228
+ distdir: $(DISTFILES)
229
+ @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
230
+ topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
231
+ list='$(DISTFILES)'; \
232
+ dist_files=`for file in $$list; do echo $$file; done | \
233
+ sed -e "s|^$$srcdirstrip/||;t" \
234
+ -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \
235
+ case $$dist_files in \
236
+ */*) eval $(MKDIR_P) `echo "$$dist_files" | \
237
+ sed '/\//!d;s|^|"$(distdir)"/|;s,/[^/]*$$,,' | \
238
+ sort -u` ;; \
239
+ esac; \
240
+ for file in $$dist_files; do \
241
+ if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \
242
+ if test -d $$d/$$file; then \
243
+ dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \
244
+ if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \
245
+ cp -pR $(srcdir)/$$file "$(distdir)"$$dir || exit 1; \
246
+ fi; \
247
+ cp -pR $$d/$$file "$(distdir)"$$dir || exit 1; \
248
+ else \
249
+ test -f "$(distdir)"/$$file \
250
+ || cp -p $$d/$$file "$(distdir)"/$$file \
251
+ || exit 1; \
252
+ fi; \
253
+ done
254
+ check-am: all-am
255
+ check: check-am
256
+ all-am: Makefile
257
+ installdirs:
258
+ install: install-am
259
+ install-exec: install-exec-am
260
+ install-data: install-data-am
261
+ uninstall: uninstall-am
262
+
263
+ install-am: all-am
264
+ @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am
265
+
266
+ installcheck: installcheck-am
267
+ install-strip:
268
+ $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \
269
+ install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \
270
+ `test -z '$(STRIP)' || \
271
+ echo "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'"` install
272
+ mostlyclean-generic:
273
+
274
+ clean-generic:
275
+
276
+ distclean-generic:
277
+ -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES)
278
+
279
+ maintainer-clean-generic:
280
+ @echo "This command is intended for maintainers to use"
281
+ @echo "it deletes files that may require special tools to rebuild."
282
+ clean-am: clean-generic mostlyclean-am
283
+
284
+ distclean-am: clean-am distclean-generic
285
+
286
+ dvi: dvi-am
287
+
288
+ dvi-am:
289
+
290
+ html: html-am
291
+
292
+ info: info-am
293
+
294
+ info-am:
295
+
296
+ install-data-am:
297
+
298
+ install-dvi: install-dvi-am
299
+
300
+ install-exec-am:
301
+
302
+ install-html: install-html-am
303
+
304
+ install-info: install-info-am
305
+
306
+ install-man:
307
+
308
+ install-pdf: install-pdf-am
309
+
310
+ install-ps: install-ps-am
311
+
312
+ installcheck-am:
313
+
314
+ maintainer-clean: maintainer-clean-am
315
+ -rm -f Makefile
316
+ maintainer-clean-am: distclean-am maintainer-clean-generic
317
+
318
+ mostlyclean: mostlyclean-am
319
+
320
+ mostlyclean-am: mostlyclean-generic
321
+
322
+ pdf: pdf-am
323
+
324
+ pdf-am:
325
+
326
+ ps: ps-am
327
+
328
+ ps-am:
329
+
330
+ uninstall-am:
331
+
332
+ .MAKE: install-am install-strip
333
+
334
+ .PHONY: all all-am check check-am clean clean-generic distclean \
335
+ distclean-generic distdir dvi dvi-am html html-am info info-am \
336
+ install install-am install-data install-data-am install-dvi \
337
+ install-dvi-am install-exec install-exec-am install-html \
338
+ install-html-am install-info install-info-am install-man \
339
+ install-pdf install-pdf-am install-ps install-ps-am \
340
+ install-strip installcheck installcheck-am installdirs \
341
+ maintainer-clean maintainer-clean-generic mostlyclean \
342
+ mostlyclean-generic pdf pdf-am ps ps-am uninstall uninstall-am
343
+
344
+
345
+ enum/Makefile: enum/extconf.rb ../config.status ../ruby/lib/mkmf-rice.rb
346
+ @RUBY@ $(RUBY_EXTCONF_OPTIONS) -C enum extconf.rb $(EXTCONF_OPTIONS)
347
+
348
+ map/Makefile: map/extconf.rb ../config.status ../ruby/lib/mkmf-rice.rb
349
+ @RUBY@ $(RUBY_EXTCONF_OPTIONS) -C map extconf.rb $(EXTCONF_OPTIONS)
350
+
351
+ inheritance/Makefile: inheritance/extconf.rb ../config.status ../ruby/lib/mkmf-rice.rb
352
+ @RUBY@ $(RUBY_EXTCONF_OPTIONS) -C inheritance extconf.rb $(EXTCONF_OPTIONS)
353
+
354
+ all: enum/Makefile map/Makefile inheritance/Makefile all_extensions
355
+
356
+ all_extensions:
357
+ @for sample in $(RICE_SAMPLES); \
358
+ do \
359
+ $(MAKE) -C $${sample} all; \
360
+ done
361
+
362
+ clean: enum/Makefile map/Makefile inheritance/Makefile clean_extensions
363
+
364
+ clean_extensions:
365
+ @for sample in $(RICE_SAMPLES); \
366
+ do \
367
+ $(MAKE) -C $${sample} clean; \
368
+ done
369
+
370
+ distclean: enum/Makefile map/Makefile inheritance/Makefile distclean_extensions
371
+
372
+ distclean_extensions:
373
+ @for sample in $(RICE_SAMPLES);
374
+ do \
375
+ $(MAKE) -C $${sample} distclean; \
376
+ done
377
+ # Tell versions [3.59,3.63) of GNU make to not export all variables.
378
+ # Otherwise a system limit (for SysV at least) may be exceeded.
379
+ .NOEXPORT: