keyme-rice 1.5.1.keyme

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