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,8 @@
1
+ #include "Symbol.hpp"
2
+
3
+ Rice::Identifier::
4
+ Identifier(Symbol const & symbol)
5
+ : id_(SYM2ID(symbol.value()))
6
+ {
7
+ }
8
+
@@ -0,0 +1,50 @@
1
+ #ifndef Rice__Identifier__hpp_
2
+ #define Rice__Identifier__hpp_
3
+
4
+ #include "detail/ruby.hpp"
5
+ #include <string>
6
+
7
+ namespace Rice
8
+ {
9
+
10
+ class Symbol;
11
+
12
+ //! A wrapper for the ID type
13
+ /*! An ID is ruby's internal representation of a Symbol object.
14
+ */
15
+ class Identifier
16
+ {
17
+ public:
18
+ //! Construct a new Identifier from an ID.
19
+ Identifier(ID id);
20
+
21
+ //! Construct a new Identifier from a Symbol.
22
+ Identifier(Symbol const & symbol);
23
+
24
+ //! Construct a new Identifier from a string.
25
+ Identifier(char const * s = "");
26
+
27
+ //! Return a string representation of the Identifier.
28
+ char const * c_str() const;
29
+
30
+ //! Return a string representation of the Identifier.
31
+ std::string str() const;
32
+
33
+ //! Return the underlying ID
34
+ ID id() const { return id_; }
35
+
36
+ //! Return the underlying ID
37
+ operator ID() const { return id_; }
38
+
39
+ //! Return the ID as a Symbol
40
+ VALUE to_sym() const;
41
+
42
+ private:
43
+ ID id_;
44
+ };
45
+
46
+ } // namespace Rice
47
+
48
+ #include "Identifier.ipp"
49
+
50
+ #endif // Rice__Identifier__hpp_
@@ -0,0 +1,33 @@
1
+ inline Rice::Identifier::
2
+ Identifier(ID id)
3
+ : id_(id)
4
+ {
5
+ }
6
+
7
+ inline Rice::Identifier::
8
+ Identifier(char const * s)
9
+ : id_(rb_intern(s))
10
+ {
11
+ }
12
+
13
+ inline char const *
14
+ Rice::Identifier::
15
+ c_str() const
16
+ {
17
+ return rb_id2name(id_);
18
+ }
19
+
20
+ inline std::string
21
+ Rice::Identifier::
22
+ str() const
23
+ {
24
+ return c_str();
25
+ }
26
+
27
+ inline VALUE
28
+ Rice::Identifier::
29
+ to_sym() const
30
+ {
31
+ return ID2SYM(id_);
32
+ }
33
+
data/rice/Jump_Tag.hpp ADDED
@@ -0,0 +1,24 @@
1
+ #ifndef Rice__Jump_Tag__hpp_
2
+ #define Rice__Jump_Tag__hpp_
3
+
4
+ namespace Rice
5
+ {
6
+
7
+ //! A placeholder for Ruby longjmp data.
8
+ /*! When a Ruby exception is caught, the tag used for the longjmp is stored in
9
+ * a Jump_Tag, then later passed to rb_jump_tag() when there is no more
10
+ * C++ code to pass over.
11
+ */
12
+ struct Jump_Tag
13
+ {
14
+ //! Construct a Jump_Tag with tag t.
15
+ Jump_Tag(int t) : tag(t) { }
16
+
17
+ //! The tag being held.
18
+ int tag;
19
+ };
20
+
21
+ } // namespace Rice
22
+
23
+ #endif // Rice__Jump_Tag__hpp_
24
+
data/rice/Makefile.am ADDED
@@ -0,0 +1,130 @@
1
+ lib_LIBRARIES = librice.a
2
+
3
+ librice_a_SOURCES = \
4
+ Class.cpp \
5
+ Data_Type.cpp \
6
+ Director.cpp \
7
+ Exception.cpp \
8
+ Identifier.cpp \
9
+ Module.cpp \
10
+ Object.cpp \
11
+ String.cpp \
12
+ Struct.cpp \
13
+ Symbol.cpp \
14
+ VM.cpp \
15
+ Arg_operators.cpp \
16
+ Address_Registration_Guard.cpp \
17
+ detail/check_ruby_type.cpp \
18
+ detail/demangle.cpp \
19
+ detail/method_data.cpp \
20
+ detail/protect.cpp
21
+
22
+ nobase_include_HEADERS = \
23
+ Address_Registration_Guard.hpp \
24
+ Address_Registration_Guard.ipp \
25
+ Address_Registration_Guard_defn.hpp \
26
+ Allocation_Strategies.hpp \
27
+ Array.hpp \
28
+ Array.ipp \
29
+ Arg.hpp \
30
+ Arg_impl.hpp \
31
+ Arg_operators.hpp \
32
+ Builtin_Object.hpp \
33
+ Builtin_Object.ipp \
34
+ Builtin_Object_defn.hpp \
35
+ Class.hpp \
36
+ Class.ipp \
37
+ Class_defn.hpp \
38
+ Constructor.hpp \
39
+ Critical_Guard.hpp \
40
+ Critical_Guard.ipp \
41
+ Data_Object.hpp \
42
+ Data_Object.ipp \
43
+ Data_Object_defn.hpp \
44
+ Data_Type.hpp \
45
+ Data_Type.ipp \
46
+ Data_Type_defn.hpp \
47
+ Data_Type_fwd.hpp \
48
+ Director.hpp \
49
+ Enum.hpp \
50
+ Enum.ipp \
51
+ Exception.hpp \
52
+ Exception_defn.hpp \
53
+ Exception_Base.hpp \
54
+ Exception_Base.ipp \
55
+ Exception_Base_defn.hpp \
56
+ Hash.hpp \
57
+ Hash.ipp \
58
+ Identifier.hpp \
59
+ Identifier.ipp \
60
+ Jump_Tag.hpp \
61
+ Makefile \
62
+ Module.hpp \
63
+ Module.ipp \
64
+ Module_defn.hpp \
65
+ Module_impl.hpp \
66
+ Module_impl.ipp \
67
+ Object.hpp \
68
+ Object.ipp \
69
+ Object_defn.hpp \
70
+ Require_Guard.hpp \
71
+ String.hpp \
72
+ Struct.hpp \
73
+ Struct.ipp \
74
+ Symbol.hpp \
75
+ Symbol.ipp \
76
+ VM.hpp \
77
+ global_function.hpp \
78
+ global_function.ipp \
79
+ protect.hpp \
80
+ protect.ipp \
81
+ ruby_try_catch.hpp \
82
+ to_from_ruby.hpp \
83
+ to_from_ruby.ipp \
84
+ to_from_ruby_defn.hpp \
85
+ ruby_mark.hpp \
86
+ detail/Auto_Function_Wrapper.hpp \
87
+ detail/Auto_Function_Wrapper.ipp \
88
+ detail/Auto_Member_Function_Wrapper.hpp \
89
+ detail/Auto_Member_Function_Wrapper.ipp \
90
+ detail/Arguments.hpp \
91
+ detail/Caster.hpp \
92
+ detail/Exception_Handler.hpp \
93
+ detail/Exception_Handler.ipp \
94
+ detail/Exception_Handler_defn.hpp \
95
+ detail/Iterator.hpp \
96
+ detail/Not_Copyable.hpp \
97
+ detail/Wrapped_Function.hpp \
98
+ detail/check_ruby_type.hpp \
99
+ detail/creation_funcs.hpp \
100
+ detail/creation_funcs.ipp \
101
+ detail/default_allocation_func.hpp \
102
+ detail/default_allocation_func.ipp \
103
+ detail/define_method_and_auto_wrap.hpp \
104
+ detail/define_method_and_auto_wrap.ipp \
105
+ detail/demangle.hpp \
106
+ detail/env.hpp \
107
+ detail/from_ruby.hpp \
108
+ detail/from_ruby.ipp \
109
+ detail/method_data.hpp \
110
+ detail/node.hpp \
111
+ detail/object_call.hpp \
112
+ detail/object_call.ipp \
113
+ detail/protect.hpp \
114
+ detail/ruby.hpp \
115
+ detail/rubysig.hpp \
116
+ detail/st.hpp \
117
+ detail/traits.hpp \
118
+ detail/to_ruby.hpp \
119
+ detail/to_ruby.ipp \
120
+ detail/win32.hpp \
121
+ detail/wrap_function.hpp \
122
+ detail/wrap_function.ipp \
123
+ detail/ruby_version_code.hpp
124
+
125
+ includedir = ${prefix}/include/rice
126
+
127
+ AM_CPPFLAGS = @RUBY_CPPFLAGS@
128
+
129
+ AM_CXXFLAGS = @RUBY_CXXFLAGS@
130
+
data/rice/Makefile.in ADDED
@@ -0,0 +1,716 @@
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
+
18
+ VPATH = @srcdir@
19
+ pkgdatadir = $(datadir)/@PACKAGE@
20
+ pkglibdir = $(libdir)/@PACKAGE@
21
+ pkgincludedir = $(includedir)/@PACKAGE@
22
+ am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd
23
+ install_sh_DATA = $(install_sh) -c -m 644
24
+ install_sh_PROGRAM = $(install_sh) -c
25
+ install_sh_SCRIPT = $(install_sh) -c
26
+ INSTALL_HEADER = $(INSTALL_DATA)
27
+ transform = $(program_transform_name)
28
+ NORMAL_INSTALL = :
29
+ PRE_INSTALL = :
30
+ POST_INSTALL = :
31
+ NORMAL_UNINSTALL = :
32
+ PRE_UNINSTALL = :
33
+ POST_UNINSTALL = :
34
+ build_triplet = @build@
35
+ host_triplet = @host@
36
+ subdir = rice
37
+ DIST_COMMON = $(nobase_include_HEADERS) $(srcdir)/Makefile.am \
38
+ $(srcdir)/Makefile.in $(srcdir)/config.hpp.in
39
+ ACLOCAL_M4 = $(top_srcdir)/aclocal.m4
40
+ am__aclocal_m4_deps = $(top_srcdir)/ruby.ac $(top_srcdir)/doxygen.ac \
41
+ $(top_srcdir)/configure.ac
42
+ am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \
43
+ $(ACLOCAL_M4)
44
+ mkinstalldirs = $(install_sh) -d
45
+ CONFIG_HEADER = config.hpp
46
+ CONFIG_CLEAN_FILES =
47
+ am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`;
48
+ am__vpath_adj = case $$p in \
49
+ $(srcdir)/*) f=`echo "$$p" | sed "s|^$$srcdirstrip/||"`;; \
50
+ *) f=$$p;; \
51
+ esac;
52
+ am__strip_dir = `echo $$p | sed -e 's|^.*/||'`;
53
+ am__installdirs = "$(DESTDIR)$(libdir)" "$(DESTDIR)$(includedir)"
54
+ libLIBRARIES_INSTALL = $(INSTALL_DATA)
55
+ LIBRARIES = $(lib_LIBRARIES)
56
+ AR = ar
57
+ ARFLAGS = cru
58
+ librice_a_AR = $(AR) $(ARFLAGS)
59
+ librice_a_LIBADD =
60
+ am_librice_a_OBJECTS = Class.$(OBJEXT) Data_Type.$(OBJEXT) \
61
+ Director.$(OBJEXT) Exception.$(OBJEXT) Identifier.$(OBJEXT) \
62
+ Module.$(OBJEXT) Object.$(OBJEXT) String.$(OBJEXT) \
63
+ Struct.$(OBJEXT) Symbol.$(OBJEXT) VM.$(OBJEXT) \
64
+ Arg_operators.$(OBJEXT) Address_Registration_Guard.$(OBJEXT) \
65
+ check_ruby_type.$(OBJEXT) demangle.$(OBJEXT) \
66
+ method_data.$(OBJEXT) protect.$(OBJEXT)
67
+ librice_a_OBJECTS = $(am_librice_a_OBJECTS)
68
+ DEFAULT_INCLUDES = -I.@am__isrc@
69
+ depcomp = $(SHELL) $(top_srcdir)/depcomp
70
+ am__depfiles_maybe = depfiles
71
+ CXXCOMPILE = $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) \
72
+ $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS)
73
+ CXXLD = $(CXX)
74
+ CXXLINK = $(CXXLD) $(AM_CXXFLAGS) $(CXXFLAGS) $(AM_LDFLAGS) $(LDFLAGS) \
75
+ -o $@
76
+ SOURCES = $(librice_a_SOURCES)
77
+ DIST_SOURCES = $(librice_a_SOURCES)
78
+ nobase_includeHEADERS_INSTALL = $(install_sh_DATA)
79
+ HEADERS = $(nobase_include_HEADERS)
80
+ ETAGS = etags
81
+ CTAGS = ctags
82
+ DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST)
83
+ ACLOCAL = @ACLOCAL@
84
+ AMTAR = @AMTAR@
85
+ AUTOCONF = @AUTOCONF@
86
+ AUTOHEADER = @AUTOHEADER@
87
+ AUTOMAKE = @AUTOMAKE@
88
+ AWK = @AWK@
89
+ CPPFLAGS = @CPPFLAGS@
90
+ CXX = @CXX@
91
+ CXXDEPMODE = @CXXDEPMODE@
92
+ CXXFLAGS = @CXXFLAGS@
93
+ CYGPATH_W = @CYGPATH_W@
94
+ DEFS = @DEFS@
95
+ DEPDIR = @DEPDIR@
96
+ DOXYGEN_PAPER_SIZE = @DOXYGEN_PAPER_SIZE@
97
+ DX_CONFIG = @DX_CONFIG@
98
+ DX_DOCDIR = @DX_DOCDIR@
99
+ DX_DOT = @DX_DOT@
100
+ DX_DOXYGEN = @DX_DOXYGEN@
101
+ DX_DVIPS = @DX_DVIPS@
102
+ DX_EGREP = @DX_EGREP@
103
+ DX_ENV = @DX_ENV@
104
+ DX_FLAG_chi = @DX_FLAG_chi@
105
+ DX_FLAG_chm = @DX_FLAG_chm@
106
+ DX_FLAG_doc = @DX_FLAG_doc@
107
+ DX_FLAG_dot = @DX_FLAG_dot@
108
+ DX_FLAG_html = @DX_FLAG_html@
109
+ DX_FLAG_man = @DX_FLAG_man@
110
+ DX_FLAG_pdf = @DX_FLAG_pdf@
111
+ DX_FLAG_ps = @DX_FLAG_ps@
112
+ DX_FLAG_rtf = @DX_FLAG_rtf@
113
+ DX_FLAG_xml = @DX_FLAG_xml@
114
+ DX_HHC = @DX_HHC@
115
+ DX_LATEX = @DX_LATEX@
116
+ DX_MAKEINDEX = @DX_MAKEINDEX@
117
+ DX_PDFLATEX = @DX_PDFLATEX@
118
+ DX_PERL = @DX_PERL@
119
+ DX_PROJECT = @DX_PROJECT@
120
+ ECHO_C = @ECHO_C@
121
+ ECHO_N = @ECHO_N@
122
+ ECHO_T = @ECHO_T@
123
+ EXEEXT = @EXEEXT@
124
+ INSTALL = @INSTALL@
125
+ INSTALL_DATA = @INSTALL_DATA@
126
+ INSTALL_PROGRAM = @INSTALL_PROGRAM@
127
+ INSTALL_SCRIPT = @INSTALL_SCRIPT@
128
+ INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@
129
+ LDFLAGS = @LDFLAGS@
130
+ LIBOBJS = @LIBOBJS@
131
+ LIBS = @LIBS@
132
+ LTLIBOBJS = @LTLIBOBJS@
133
+ MAKEINFO = @MAKEINFO@
134
+ MKDIR_P = @MKDIR_P@
135
+ OBJEXT = @OBJEXT@
136
+ PACKAGE = @PACKAGE@
137
+ PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@
138
+ PACKAGE_NAME = @PACKAGE_NAME@
139
+ PACKAGE_STRING = @PACKAGE_STRING@
140
+ PACKAGE_TARNAME = @PACKAGE_TARNAME@
141
+ PACKAGE_VERSION = @PACKAGE_VERSION@
142
+ PATH_SEPARATOR = @PATH_SEPARATOR@
143
+ RANLIB = @RANLIB@
144
+ RICE_CPPFLAGS = @RICE_CPPFLAGS@
145
+ RICE_LDFLAGS = @RICE_LDFLAGS@
146
+ RICE_ROOT = @RICE_ROOT@
147
+ RICE_SAMPLES = @RICE_SAMPLES@
148
+ RICE_USING_MINGW32 = @RICE_USING_MINGW32@
149
+ RUBY = @RUBY@
150
+ RUBY_CFLAGS = @RUBY_CFLAGS@
151
+ RUBY_CPPFLAGS = @RUBY_CPPFLAGS@
152
+ RUBY_CXXFLAGS = @RUBY_CXXFLAGS@
153
+ RUBY_LDFLAGS = @RUBY_LDFLAGS@
154
+ RUBY_LIBRUBYARG = @RUBY_LIBRUBYARG@
155
+ RUBY_LIBRUBYARG_STATIC = @RUBY_LIBRUBYARG_STATIC@
156
+ RUBY_LIBS = @RUBY_LIBS@
157
+ RUBY_SITELIBDIR = @RUBY_SITELIBDIR@
158
+ RUBY_VERSION_CODE = @RUBY_VERSION_CODE@
159
+ SET_MAKE = @SET_MAKE@
160
+ SHELL = @SHELL@
161
+ STRIP = @STRIP@
162
+ VERSION = @VERSION@
163
+ abs_builddir = @abs_builddir@
164
+ abs_srcdir = @abs_srcdir@
165
+ abs_top_builddir = @abs_top_builddir@
166
+ abs_top_srcdir = @abs_top_srcdir@
167
+ ac_ct_CXX = @ac_ct_CXX@
168
+ am__include = @am__include@
169
+ am__leading_dot = @am__leading_dot@
170
+ am__quote = @am__quote@
171
+ am__tar = @am__tar@
172
+ am__untar = @am__untar@
173
+ bindir = @bindir@
174
+ build = @build@
175
+ build_alias = @build_alias@
176
+ build_cpu = @build_cpu@
177
+ build_os = @build_os@
178
+ build_vendor = @build_vendor@
179
+ builddir = @builddir@
180
+ datadir = @datadir@
181
+ datarootdir = @datarootdir@
182
+ docdir = @docdir@
183
+ dvidir = @dvidir@
184
+ exec_prefix = @exec_prefix@
185
+ host = @host@
186
+ host_alias = @host_alias@
187
+ host_cpu = @host_cpu@
188
+ host_os = @host_os@
189
+ host_vendor = @host_vendor@
190
+ htmldir = @htmldir@
191
+ includedir = ${prefix}/include/rice
192
+ infodir = @infodir@
193
+ install_sh = @install_sh@
194
+ libdir = @libdir@
195
+ libexecdir = @libexecdir@
196
+ localedir = @localedir@
197
+ localstatedir = @localstatedir@
198
+ mandir = @mandir@
199
+ mkdir_p = @mkdir_p@
200
+ oldincludedir = @oldincludedir@
201
+ pdfdir = @pdfdir@
202
+ prefix = @prefix@
203
+ program_transform_name = @program_transform_name@
204
+ psdir = @psdir@
205
+ sbindir = @sbindir@
206
+ sharedstatedir = @sharedstatedir@
207
+ srcdir = @srcdir@
208
+ sysconfdir = @sysconfdir@
209
+ target_alias = @target_alias@
210
+ top_builddir = @top_builddir@
211
+ top_srcdir = @top_srcdir@
212
+ lib_LIBRARIES = librice.a
213
+ librice_a_SOURCES = \
214
+ Class.cpp \
215
+ Data_Type.cpp \
216
+ Director.cpp \
217
+ Exception.cpp \
218
+ Identifier.cpp \
219
+ Module.cpp \
220
+ Object.cpp \
221
+ String.cpp \
222
+ Struct.cpp \
223
+ Symbol.cpp \
224
+ VM.cpp \
225
+ Arg_operators.cpp \
226
+ Address_Registration_Guard.cpp \
227
+ detail/check_ruby_type.cpp \
228
+ detail/demangle.cpp \
229
+ detail/method_data.cpp \
230
+ detail/protect.cpp
231
+
232
+ nobase_include_HEADERS = \
233
+ Address_Registration_Guard.hpp \
234
+ Address_Registration_Guard.ipp \
235
+ Address_Registration_Guard_defn.hpp \
236
+ Allocation_Strategies.hpp \
237
+ Array.hpp \
238
+ Array.ipp \
239
+ Arg.hpp \
240
+ Arg_impl.hpp \
241
+ Arg_operators.hpp \
242
+ Builtin_Object.hpp \
243
+ Builtin_Object.ipp \
244
+ Builtin_Object_defn.hpp \
245
+ Class.hpp \
246
+ Class.ipp \
247
+ Class_defn.hpp \
248
+ Constructor.hpp \
249
+ Critical_Guard.hpp \
250
+ Critical_Guard.ipp \
251
+ Data_Object.hpp \
252
+ Data_Object.ipp \
253
+ Data_Object_defn.hpp \
254
+ Data_Type.hpp \
255
+ Data_Type.ipp \
256
+ Data_Type_defn.hpp \
257
+ Data_Type_fwd.hpp \
258
+ Director.hpp \
259
+ Enum.hpp \
260
+ Enum.ipp \
261
+ Exception.hpp \
262
+ Exception_defn.hpp \
263
+ Exception_Base.hpp \
264
+ Exception_Base.ipp \
265
+ Exception_Base_defn.hpp \
266
+ Hash.hpp \
267
+ Hash.ipp \
268
+ Identifier.hpp \
269
+ Identifier.ipp \
270
+ Jump_Tag.hpp \
271
+ Makefile \
272
+ Module.hpp \
273
+ Module.ipp \
274
+ Module_defn.hpp \
275
+ Module_impl.hpp \
276
+ Module_impl.ipp \
277
+ Object.hpp \
278
+ Object.ipp \
279
+ Object_defn.hpp \
280
+ Require_Guard.hpp \
281
+ String.hpp \
282
+ Struct.hpp \
283
+ Struct.ipp \
284
+ Symbol.hpp \
285
+ Symbol.ipp \
286
+ VM.hpp \
287
+ global_function.hpp \
288
+ global_function.ipp \
289
+ protect.hpp \
290
+ protect.ipp \
291
+ ruby_try_catch.hpp \
292
+ to_from_ruby.hpp \
293
+ to_from_ruby.ipp \
294
+ to_from_ruby_defn.hpp \
295
+ ruby_mark.hpp \
296
+ detail/Auto_Function_Wrapper.hpp \
297
+ detail/Auto_Function_Wrapper.ipp \
298
+ detail/Auto_Member_Function_Wrapper.hpp \
299
+ detail/Auto_Member_Function_Wrapper.ipp \
300
+ detail/Arguments.hpp \
301
+ detail/Caster.hpp \
302
+ detail/Exception_Handler.hpp \
303
+ detail/Exception_Handler.ipp \
304
+ detail/Exception_Handler_defn.hpp \
305
+ detail/Iterator.hpp \
306
+ detail/Not_Copyable.hpp \
307
+ detail/Wrapped_Function.hpp \
308
+ detail/check_ruby_type.hpp \
309
+ detail/creation_funcs.hpp \
310
+ detail/creation_funcs.ipp \
311
+ detail/default_allocation_func.hpp \
312
+ detail/default_allocation_func.ipp \
313
+ detail/define_method_and_auto_wrap.hpp \
314
+ detail/define_method_and_auto_wrap.ipp \
315
+ detail/demangle.hpp \
316
+ detail/env.hpp \
317
+ detail/from_ruby.hpp \
318
+ detail/from_ruby.ipp \
319
+ detail/method_data.hpp \
320
+ detail/node.hpp \
321
+ detail/object_call.hpp \
322
+ detail/object_call.ipp \
323
+ detail/protect.hpp \
324
+ detail/ruby.hpp \
325
+ detail/rubysig.hpp \
326
+ detail/st.hpp \
327
+ detail/traits.hpp \
328
+ detail/to_ruby.hpp \
329
+ detail/to_ruby.ipp \
330
+ detail/win32.hpp \
331
+ detail/wrap_function.hpp \
332
+ detail/wrap_function.ipp \
333
+ detail/ruby_version_code.hpp
334
+
335
+ AM_CPPFLAGS = @RUBY_CPPFLAGS@
336
+ AM_CXXFLAGS = @RUBY_CXXFLAGS@
337
+ all: config.hpp
338
+ $(MAKE) $(AM_MAKEFLAGS) all-am
339
+
340
+ .SUFFIXES:
341
+ .SUFFIXES: .cpp .o .obj
342
+ $(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(am__configure_deps)
343
+ @for dep in $?; do \
344
+ case '$(am__configure_deps)' in \
345
+ *$$dep*) \
346
+ cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh \
347
+ && exit 0; \
348
+ exit 1;; \
349
+ esac; \
350
+ done; \
351
+ echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu rice/Makefile'; \
352
+ cd $(top_srcdir) && \
353
+ $(AUTOMAKE) --gnu rice/Makefile
354
+ .PRECIOUS: Makefile
355
+ Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
356
+ @case '$?' in \
357
+ *config.status*) \
358
+ cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \
359
+ *) \
360
+ echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \
361
+ cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \
362
+ esac;
363
+
364
+ $(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES)
365
+ cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
366
+
367
+ $(top_srcdir)/configure: $(am__configure_deps)
368
+ cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
369
+ $(ACLOCAL_M4): $(am__aclocal_m4_deps)
370
+ cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
371
+
372
+ config.hpp: stamp-h1
373
+ @if test ! -f $@; then \
374
+ rm -f stamp-h1; \
375
+ $(MAKE) $(AM_MAKEFLAGS) stamp-h1; \
376
+ else :; fi
377
+
378
+ stamp-h1: $(srcdir)/config.hpp.in $(top_builddir)/config.status
379
+ @rm -f stamp-h1
380
+ cd $(top_builddir) && $(SHELL) ./config.status rice/config.hpp
381
+ $(srcdir)/config.hpp.in: $(am__configure_deps)
382
+ cd $(top_srcdir) && $(AUTOHEADER)
383
+ rm -f stamp-h1
384
+ touch $@
385
+
386
+ distclean-hdr:
387
+ -rm -f config.hpp stamp-h1
388
+ install-libLIBRARIES: $(lib_LIBRARIES)
389
+ @$(NORMAL_INSTALL)
390
+ test -z "$(libdir)" || $(MKDIR_P) "$(DESTDIR)$(libdir)"
391
+ @list='$(lib_LIBRARIES)'; for p in $$list; do \
392
+ if test -f $$p; then \
393
+ f=$(am__strip_dir) \
394
+ echo " $(libLIBRARIES_INSTALL) '$$p' '$(DESTDIR)$(libdir)/$$f'"; \
395
+ $(libLIBRARIES_INSTALL) "$$p" "$(DESTDIR)$(libdir)/$$f"; \
396
+ else :; fi; \
397
+ done
398
+ @$(POST_INSTALL)
399
+ @list='$(lib_LIBRARIES)'; for p in $$list; do \
400
+ if test -f $$p; then \
401
+ p=$(am__strip_dir) \
402
+ echo " $(RANLIB) '$(DESTDIR)$(libdir)/$$p'"; \
403
+ $(RANLIB) "$(DESTDIR)$(libdir)/$$p"; \
404
+ else :; fi; \
405
+ done
406
+
407
+ uninstall-libLIBRARIES:
408
+ @$(NORMAL_UNINSTALL)
409
+ @list='$(lib_LIBRARIES)'; for p in $$list; do \
410
+ p=$(am__strip_dir) \
411
+ echo " rm -f '$(DESTDIR)$(libdir)/$$p'"; \
412
+ rm -f "$(DESTDIR)$(libdir)/$$p"; \
413
+ done
414
+
415
+ clean-libLIBRARIES:
416
+ -test -z "$(lib_LIBRARIES)" || rm -f $(lib_LIBRARIES)
417
+ librice.a: $(librice_a_OBJECTS) $(librice_a_DEPENDENCIES)
418
+ -rm -f librice.a
419
+ $(librice_a_AR) librice.a $(librice_a_OBJECTS) $(librice_a_LIBADD)
420
+ $(RANLIB) librice.a
421
+
422
+ mostlyclean-compile:
423
+ -rm -f *.$(OBJEXT)
424
+
425
+ distclean-compile:
426
+ -rm -f *.tab.c
427
+
428
+ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/Address_Registration_Guard.Po@am__quote@
429
+ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/Arg_operators.Po@am__quote@
430
+ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/Class.Po@am__quote@
431
+ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/Data_Type.Po@am__quote@
432
+ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/Director.Po@am__quote@
433
+ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/Exception.Po@am__quote@
434
+ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/Identifier.Po@am__quote@
435
+ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/Module.Po@am__quote@
436
+ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/Object.Po@am__quote@
437
+ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/String.Po@am__quote@
438
+ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/Struct.Po@am__quote@
439
+ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/Symbol.Po@am__quote@
440
+ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/VM.Po@am__quote@
441
+ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/check_ruby_type.Po@am__quote@
442
+ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/demangle.Po@am__quote@
443
+ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/method_data.Po@am__quote@
444
+ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/protect.Po@am__quote@
445
+
446
+ .cpp.o:
447
+ @am__fastdepCXX_TRUE@ $(CXXCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $<
448
+ @am__fastdepCXX_TRUE@ mv -f $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po
449
+ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@
450
+ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
451
+ @am__fastdepCXX_FALSE@ $(CXXCOMPILE) -c -o $@ $<
452
+
453
+ .cpp.obj:
454
+ @am__fastdepCXX_TRUE@ $(CXXCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ `$(CYGPATH_W) '$<'`
455
+ @am__fastdepCXX_TRUE@ mv -f $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po
456
+ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@
457
+ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
458
+ @am__fastdepCXX_FALSE@ $(CXXCOMPILE) -c -o $@ `$(CYGPATH_W) '$<'`
459
+
460
+ check_ruby_type.o: detail/check_ruby_type.cpp
461
+ @am__fastdepCXX_TRUE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT check_ruby_type.o -MD -MP -MF $(DEPDIR)/check_ruby_type.Tpo -c -o check_ruby_type.o `test -f 'detail/check_ruby_type.cpp' || echo '$(srcdir)/'`detail/check_ruby_type.cpp
462
+ @am__fastdepCXX_TRUE@ mv -f $(DEPDIR)/check_ruby_type.Tpo $(DEPDIR)/check_ruby_type.Po
463
+ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='detail/check_ruby_type.cpp' object='check_ruby_type.o' libtool=no @AMDEPBACKSLASH@
464
+ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
465
+ @am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o check_ruby_type.o `test -f 'detail/check_ruby_type.cpp' || echo '$(srcdir)/'`detail/check_ruby_type.cpp
466
+
467
+ check_ruby_type.obj: detail/check_ruby_type.cpp
468
+ @am__fastdepCXX_TRUE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT check_ruby_type.obj -MD -MP -MF $(DEPDIR)/check_ruby_type.Tpo -c -o check_ruby_type.obj `if test -f 'detail/check_ruby_type.cpp'; then $(CYGPATH_W) 'detail/check_ruby_type.cpp'; else $(CYGPATH_W) '$(srcdir)/detail/check_ruby_type.cpp'; fi`
469
+ @am__fastdepCXX_TRUE@ mv -f $(DEPDIR)/check_ruby_type.Tpo $(DEPDIR)/check_ruby_type.Po
470
+ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='detail/check_ruby_type.cpp' object='check_ruby_type.obj' libtool=no @AMDEPBACKSLASH@
471
+ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
472
+ @am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o check_ruby_type.obj `if test -f 'detail/check_ruby_type.cpp'; then $(CYGPATH_W) 'detail/check_ruby_type.cpp'; else $(CYGPATH_W) '$(srcdir)/detail/check_ruby_type.cpp'; fi`
473
+
474
+ demangle.o: detail/demangle.cpp
475
+ @am__fastdepCXX_TRUE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT demangle.o -MD -MP -MF $(DEPDIR)/demangle.Tpo -c -o demangle.o `test -f 'detail/demangle.cpp' || echo '$(srcdir)/'`detail/demangle.cpp
476
+ @am__fastdepCXX_TRUE@ mv -f $(DEPDIR)/demangle.Tpo $(DEPDIR)/demangle.Po
477
+ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='detail/demangle.cpp' object='demangle.o' libtool=no @AMDEPBACKSLASH@
478
+ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
479
+ @am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o demangle.o `test -f 'detail/demangle.cpp' || echo '$(srcdir)/'`detail/demangle.cpp
480
+
481
+ demangle.obj: detail/demangle.cpp
482
+ @am__fastdepCXX_TRUE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT demangle.obj -MD -MP -MF $(DEPDIR)/demangle.Tpo -c -o demangle.obj `if test -f 'detail/demangle.cpp'; then $(CYGPATH_W) 'detail/demangle.cpp'; else $(CYGPATH_W) '$(srcdir)/detail/demangle.cpp'; fi`
483
+ @am__fastdepCXX_TRUE@ mv -f $(DEPDIR)/demangle.Tpo $(DEPDIR)/demangle.Po
484
+ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='detail/demangle.cpp' object='demangle.obj' libtool=no @AMDEPBACKSLASH@
485
+ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
486
+ @am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o demangle.obj `if test -f 'detail/demangle.cpp'; then $(CYGPATH_W) 'detail/demangle.cpp'; else $(CYGPATH_W) '$(srcdir)/detail/demangle.cpp'; fi`
487
+
488
+ method_data.o: detail/method_data.cpp
489
+ @am__fastdepCXX_TRUE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT method_data.o -MD -MP -MF $(DEPDIR)/method_data.Tpo -c -o method_data.o `test -f 'detail/method_data.cpp' || echo '$(srcdir)/'`detail/method_data.cpp
490
+ @am__fastdepCXX_TRUE@ mv -f $(DEPDIR)/method_data.Tpo $(DEPDIR)/method_data.Po
491
+ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='detail/method_data.cpp' object='method_data.o' libtool=no @AMDEPBACKSLASH@
492
+ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
493
+ @am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o method_data.o `test -f 'detail/method_data.cpp' || echo '$(srcdir)/'`detail/method_data.cpp
494
+
495
+ method_data.obj: detail/method_data.cpp
496
+ @am__fastdepCXX_TRUE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT method_data.obj -MD -MP -MF $(DEPDIR)/method_data.Tpo -c -o method_data.obj `if test -f 'detail/method_data.cpp'; then $(CYGPATH_W) 'detail/method_data.cpp'; else $(CYGPATH_W) '$(srcdir)/detail/method_data.cpp'; fi`
497
+ @am__fastdepCXX_TRUE@ mv -f $(DEPDIR)/method_data.Tpo $(DEPDIR)/method_data.Po
498
+ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='detail/method_data.cpp' object='method_data.obj' libtool=no @AMDEPBACKSLASH@
499
+ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
500
+ @am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o method_data.obj `if test -f 'detail/method_data.cpp'; then $(CYGPATH_W) 'detail/method_data.cpp'; else $(CYGPATH_W) '$(srcdir)/detail/method_data.cpp'; fi`
501
+
502
+ protect.o: detail/protect.cpp
503
+ @am__fastdepCXX_TRUE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT protect.o -MD -MP -MF $(DEPDIR)/protect.Tpo -c -o protect.o `test -f 'detail/protect.cpp' || echo '$(srcdir)/'`detail/protect.cpp
504
+ @am__fastdepCXX_TRUE@ mv -f $(DEPDIR)/protect.Tpo $(DEPDIR)/protect.Po
505
+ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='detail/protect.cpp' object='protect.o' libtool=no @AMDEPBACKSLASH@
506
+ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
507
+ @am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o protect.o `test -f 'detail/protect.cpp' || echo '$(srcdir)/'`detail/protect.cpp
508
+
509
+ protect.obj: detail/protect.cpp
510
+ @am__fastdepCXX_TRUE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT protect.obj -MD -MP -MF $(DEPDIR)/protect.Tpo -c -o protect.obj `if test -f 'detail/protect.cpp'; then $(CYGPATH_W) 'detail/protect.cpp'; else $(CYGPATH_W) '$(srcdir)/detail/protect.cpp'; fi`
511
+ @am__fastdepCXX_TRUE@ mv -f $(DEPDIR)/protect.Tpo $(DEPDIR)/protect.Po
512
+ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='detail/protect.cpp' object='protect.obj' libtool=no @AMDEPBACKSLASH@
513
+ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
514
+ @am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o protect.obj `if test -f 'detail/protect.cpp'; then $(CYGPATH_W) 'detail/protect.cpp'; else $(CYGPATH_W) '$(srcdir)/detail/protect.cpp'; fi`
515
+ install-nobase_includeHEADERS: $(nobase_include_HEADERS)
516
+ @$(NORMAL_INSTALL)
517
+ test -z "$(includedir)" || $(MKDIR_P) "$(DESTDIR)$(includedir)"
518
+ @$(am__vpath_adj_setup) \
519
+ list='$(nobase_include_HEADERS)'; for p in $$list; do \
520
+ if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \
521
+ $(am__vpath_adj) \
522
+ echo " $(nobase_includeHEADERS_INSTALL) '$$d$$p' '$(DESTDIR)$(includedir)/$$f'"; \
523
+ $(nobase_includeHEADERS_INSTALL) "$$d$$p" "$(DESTDIR)$(includedir)/$$f"; \
524
+ done
525
+
526
+ uninstall-nobase_includeHEADERS:
527
+ @$(NORMAL_UNINSTALL)
528
+ @$(am__vpath_adj_setup) \
529
+ list='$(nobase_include_HEADERS)'; for p in $$list; do \
530
+ $(am__vpath_adj) \
531
+ echo " rm -f '$(DESTDIR)$(includedir)/$$f'"; \
532
+ rm -f "$(DESTDIR)$(includedir)/$$f"; \
533
+ done
534
+
535
+ ID: $(HEADERS) $(SOURCES) $(LISP) $(TAGS_FILES)
536
+ list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \
537
+ unique=`for i in $$list; do \
538
+ if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
539
+ done | \
540
+ $(AWK) ' { files[$$0] = 1; } \
541
+ END { for (i in files) print i; }'`; \
542
+ mkid -fID $$unique
543
+ tags: TAGS
544
+
545
+ TAGS: $(HEADERS) $(SOURCES) config.hpp.in $(TAGS_DEPENDENCIES) \
546
+ $(TAGS_FILES) $(LISP)
547
+ tags=; \
548
+ here=`pwd`; \
549
+ list='$(SOURCES) $(HEADERS) config.hpp.in $(LISP) $(TAGS_FILES)'; \
550
+ unique=`for i in $$list; do \
551
+ if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
552
+ done | \
553
+ $(AWK) ' { files[$$0] = 1; } \
554
+ END { for (i in files) print i; }'`; \
555
+ if test -z "$(ETAGS_ARGS)$$tags$$unique"; then :; else \
556
+ test -n "$$unique" || unique=$$empty_fix; \
557
+ $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \
558
+ $$tags $$unique; \
559
+ fi
560
+ ctags: CTAGS
561
+ CTAGS: $(HEADERS) $(SOURCES) config.hpp.in $(TAGS_DEPENDENCIES) \
562
+ $(TAGS_FILES) $(LISP)
563
+ tags=; \
564
+ here=`pwd`; \
565
+ list='$(SOURCES) $(HEADERS) config.hpp.in $(LISP) $(TAGS_FILES)'; \
566
+ unique=`for i in $$list; do \
567
+ if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
568
+ done | \
569
+ $(AWK) ' { files[$$0] = 1; } \
570
+ END { for (i in files) print i; }'`; \
571
+ test -z "$(CTAGS_ARGS)$$tags$$unique" \
572
+ || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \
573
+ $$tags $$unique
574
+
575
+ GTAGS:
576
+ here=`$(am__cd) $(top_builddir) && pwd` \
577
+ && cd $(top_srcdir) \
578
+ && gtags -i $(GTAGS_ARGS) $$here
579
+
580
+ distclean-tags:
581
+ -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags
582
+
583
+ distdir: $(DISTFILES)
584
+ @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
585
+ topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
586
+ list='$(DISTFILES)'; \
587
+ dist_files=`for file in $$list; do echo $$file; done | \
588
+ sed -e "s|^$$srcdirstrip/||;t" \
589
+ -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \
590
+ case $$dist_files in \
591
+ */*) $(MKDIR_P) `echo "$$dist_files" | \
592
+ sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \
593
+ sort -u` ;; \
594
+ esac; \
595
+ for file in $$dist_files; do \
596
+ if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \
597
+ if test -d $$d/$$file; then \
598
+ dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \
599
+ if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \
600
+ cp -pR $(srcdir)/$$file $(distdir)$$dir || exit 1; \
601
+ fi; \
602
+ cp -pR $$d/$$file $(distdir)$$dir || exit 1; \
603
+ else \
604
+ test -f $(distdir)/$$file \
605
+ || cp -p $$d/$$file $(distdir)/$$file \
606
+ || exit 1; \
607
+ fi; \
608
+ done
609
+ check-am: all-am
610
+ check: check-am
611
+ all-am: Makefile $(LIBRARIES) $(HEADERS) config.hpp
612
+ installdirs:
613
+ for dir in "$(DESTDIR)$(libdir)" "$(DESTDIR)$(includedir)"; do \
614
+ test -z "$$dir" || $(MKDIR_P) "$$dir"; \
615
+ done
616
+ install: install-am
617
+ install-exec: install-exec-am
618
+ install-data: install-data-am
619
+ uninstall: uninstall-am
620
+
621
+ install-am: all-am
622
+ @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am
623
+
624
+ installcheck: installcheck-am
625
+ install-strip:
626
+ $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \
627
+ install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \
628
+ `test -z '$(STRIP)' || \
629
+ echo "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'"` install
630
+ mostlyclean-generic:
631
+
632
+ clean-generic:
633
+
634
+ distclean-generic:
635
+ -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES)
636
+
637
+ maintainer-clean-generic:
638
+ @echo "This command is intended for maintainers to use"
639
+ @echo "it deletes files that may require special tools to rebuild."
640
+ clean: clean-am
641
+
642
+ clean-am: clean-generic clean-libLIBRARIES mostlyclean-am
643
+
644
+ distclean: distclean-am
645
+ -rm -rf ./$(DEPDIR)
646
+ -rm -f Makefile
647
+ distclean-am: clean-am distclean-compile distclean-generic \
648
+ distclean-hdr distclean-tags
649
+
650
+ dvi: dvi-am
651
+
652
+ dvi-am:
653
+
654
+ html: html-am
655
+
656
+ info: info-am
657
+
658
+ info-am:
659
+
660
+ install-data-am: install-nobase_includeHEADERS
661
+
662
+ install-dvi: install-dvi-am
663
+
664
+ install-exec-am: install-libLIBRARIES
665
+
666
+ install-html: install-html-am
667
+
668
+ install-info: install-info-am
669
+
670
+ install-man:
671
+
672
+ install-pdf: install-pdf-am
673
+
674
+ install-ps: install-ps-am
675
+
676
+ installcheck-am:
677
+
678
+ maintainer-clean: maintainer-clean-am
679
+ -rm -rf ./$(DEPDIR)
680
+ -rm -f Makefile
681
+ maintainer-clean-am: distclean-am maintainer-clean-generic
682
+
683
+ mostlyclean: mostlyclean-am
684
+
685
+ mostlyclean-am: mostlyclean-compile mostlyclean-generic
686
+
687
+ pdf: pdf-am
688
+
689
+ pdf-am:
690
+
691
+ ps: ps-am
692
+
693
+ ps-am:
694
+
695
+ uninstall-am: uninstall-libLIBRARIES uninstall-nobase_includeHEADERS
696
+
697
+ .MAKE: install-am install-strip
698
+
699
+ .PHONY: CTAGS GTAGS all all-am check check-am clean clean-generic \
700
+ clean-libLIBRARIES ctags distclean distclean-compile \
701
+ distclean-generic distclean-hdr distclean-tags distdir dvi \
702
+ dvi-am html html-am info info-am install install-am \
703
+ install-data install-data-am install-dvi install-dvi-am \
704
+ install-exec install-exec-am install-html install-html-am \
705
+ install-info install-info-am install-libLIBRARIES install-man \
706
+ install-nobase_includeHEADERS install-pdf install-pdf-am \
707
+ install-ps install-ps-am install-strip installcheck \
708
+ installcheck-am installdirs maintainer-clean \
709
+ maintainer-clean-generic mostlyclean mostlyclean-compile \
710
+ mostlyclean-generic pdf pdf-am ps ps-am tags uninstall \
711
+ uninstall-am uninstall-libLIBRARIES \
712
+ uninstall-nobase_includeHEADERS
713
+
714
+ # Tell versions [3.59,3.63) of GNU make to not export all variables.
715
+ # Otherwise a system limit (for SysV at least) may be exceeded.
716
+ .NOEXPORT: