rice 1.0.0

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