jameskilton-rice 1.2.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (196) hide show
  1. data/COPYING +23 -0
  2. data/Doxyfile +1253 -0
  3. data/Makefile.am +26 -0
  4. data/Makefile.in +749 -0
  5. data/README +879 -0
  6. data/README.mingw +8 -0
  7. data/Rakefile +72 -0
  8. data/aclocal.m4 +891 -0
  9. data/bootstrap +8 -0
  10. data/config.guess +1526 -0
  11. data/config.sub +1658 -0
  12. data/configure +7668 -0
  13. data/configure.ac +52 -0
  14. data/depcomp +589 -0
  15. data/doxygen.ac +314 -0
  16. data/doxygen.am +186 -0
  17. data/extconf.rb +22 -0
  18. data/install-sh +519 -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.hpp +7 -0
  23. data/rice/Address_Registration_Guard.ipp +34 -0
  24. data/rice/Address_Registration_Guard_defn.hpp +65 -0
  25. data/rice/Allocation_Strategies.hpp +37 -0
  26. data/rice/Arg.hpp +8 -0
  27. data/rice/Arg_impl.hpp +116 -0
  28. data/rice/Arg_operators.cpp +21 -0
  29. data/rice/Arg_operators.hpp +18 -0
  30. data/rice/Array.hpp +220 -0
  31. data/rice/Array.ipp +263 -0
  32. data/rice/Builtin_Object.hpp +8 -0
  33. data/rice/Builtin_Object.ipp +50 -0
  34. data/rice/Builtin_Object_defn.hpp +51 -0
  35. data/rice/Class.cpp +57 -0
  36. data/rice/Class.hpp +8 -0
  37. data/rice/Class.ipp +6 -0
  38. data/rice/Class_defn.hpp +83 -0
  39. data/rice/Constructor.hpp +339 -0
  40. data/rice/Critical_Guard.hpp +40 -0
  41. data/rice/Critical_Guard.ipp +26 -0
  42. data/rice/Data_Object.hpp +8 -0
  43. data/rice/Data_Object.ipp +133 -0
  44. data/rice/Data_Object_defn.hpp +132 -0
  45. data/rice/Data_Type.cpp +21 -0
  46. data/rice/Data_Type.hpp +8 -0
  47. data/rice/Data_Type.ipp +306 -0
  48. data/rice/Data_Type_defn.hpp +219 -0
  49. data/rice/Data_Type_fwd.hpp +12 -0
  50. data/rice/Director.cpp +19 -0
  51. data/rice/Director.hpp +47 -0
  52. data/rice/Enum.hpp +118 -0
  53. data/rice/Enum.ipp +246 -0
  54. data/rice/Exception.cpp +59 -0
  55. data/rice/Exception.hpp +9 -0
  56. data/rice/Exception_Base.hpp +8 -0
  57. data/rice/Exception_Base.ipp +13 -0
  58. data/rice/Exception_Base_defn.hpp +27 -0
  59. data/rice/Exception_defn.hpp +69 -0
  60. data/rice/Hash.hpp +210 -0
  61. data/rice/Hash.ipp +338 -0
  62. data/rice/Identifier.cpp +8 -0
  63. data/rice/Identifier.hpp +50 -0
  64. data/rice/Identifier.ipp +33 -0
  65. data/rice/Jump_Tag.hpp +24 -0
  66. data/rice/Makefile.am +140 -0
  67. data/rice/Makefile.in +740 -0
  68. data/rice/Module.cpp +84 -0
  69. data/rice/Module.hpp +8 -0
  70. data/rice/Module.ipp +6 -0
  71. data/rice/Module_defn.hpp +88 -0
  72. data/rice/Module_impl.hpp +281 -0
  73. data/rice/Module_impl.ipp +348 -0
  74. data/rice/Object.cpp +153 -0
  75. data/rice/Object.hpp +8 -0
  76. data/rice/Object.ipp +19 -0
  77. data/rice/Object_defn.hpp +183 -0
  78. data/rice/Require_Guard.hpp +21 -0
  79. data/rice/String.cpp +94 -0
  80. data/rice/String.hpp +89 -0
  81. data/rice/Struct.cpp +117 -0
  82. data/rice/Struct.hpp +162 -0
  83. data/rice/Struct.ipp +26 -0
  84. data/rice/Symbol.cpp +25 -0
  85. data/rice/Symbol.hpp +66 -0
  86. data/rice/Symbol.ipp +44 -0
  87. data/rice/VM.cpp +92 -0
  88. data/rice/VM.hpp +32 -0
  89. data/rice/config.hpp +44 -0
  90. data/rice/config.hpp.in +43 -0
  91. data/rice/detail/Arguments.hpp +126 -0
  92. data/rice/detail/Auto_Function_Wrapper.hpp +861 -0
  93. data/rice/detail/Auto_Function_Wrapper.ipp +2929 -0
  94. data/rice/detail/Auto_Member_Function_Wrapper.hpp +828 -0
  95. data/rice/detail/Auto_Member_Function_Wrapper.ipp +2326 -0
  96. data/rice/detail/Caster.hpp +63 -0
  97. data/rice/detail/Exception_Handler.hpp +8 -0
  98. data/rice/detail/Exception_Handler.ipp +68 -0
  99. data/rice/detail/Exception_Handler_defn.hpp +96 -0
  100. data/rice/detail/Iterator.hpp +93 -0
  101. data/rice/detail/Not_Copyable.hpp +25 -0
  102. data/rice/detail/Wrapped_Function.hpp +33 -0
  103. data/rice/detail/check_ruby_type.cpp +27 -0
  104. data/rice/detail/check_ruby_type.hpp +23 -0
  105. data/rice/detail/creation_funcs.hpp +37 -0
  106. data/rice/detail/creation_funcs.ipp +36 -0
  107. data/rice/detail/default_allocation_func.hpp +23 -0
  108. data/rice/detail/default_allocation_func.ipp +11 -0
  109. data/rice/detail/define_method_and_auto_wrap.hpp +31 -0
  110. data/rice/detail/define_method_and_auto_wrap.ipp +30 -0
  111. data/rice/detail/demangle.cpp +56 -0
  112. data/rice/detail/demangle.hpp +19 -0
  113. data/rice/detail/env.hpp +19 -0
  114. data/rice/detail/from_ruby.hpp +43 -0
  115. data/rice/detail/from_ruby.ipp +60 -0
  116. data/rice/detail/method_data.cpp +392 -0
  117. data/rice/detail/method_data.cpp.rpp +301 -0
  118. data/rice/detail/method_data.hpp +21 -0
  119. data/rice/detail/mininode.cpp +1220 -0
  120. data/rice/detail/mininode.cpp.rpp +62 -0
  121. data/rice/detail/mininode.hpp +320 -0
  122. data/rice/detail/mininode.hpp.rpp +119 -0
  123. data/rice/detail/node.hpp +13 -0
  124. data/rice/detail/object_call.hpp +85 -0
  125. data/rice/detail/object_call.ipp +147 -0
  126. data/rice/detail/protect.cpp +29 -0
  127. data/rice/detail/protect.hpp +34 -0
  128. data/rice/detail/remove_const.hpp +21 -0
  129. data/rice/detail/ruby.hpp +89 -0
  130. data/rice/detail/ruby_version_code.hpp +6 -0
  131. data/rice/detail/ruby_version_code.hpp.in +6 -0
  132. data/rice/detail/rubysig.hpp +19 -0
  133. data/rice/detail/st.hpp +60 -0
  134. data/rice/detail/to_ruby.hpp +22 -0
  135. data/rice/detail/to_ruby.ipp +37 -0
  136. data/rice/detail/win32.hpp +16 -0
  137. data/rice/detail/wrap_function.hpp +345 -0
  138. data/rice/detail/wrap_function.ipp +531 -0
  139. data/rice/generate_code.rb +1311 -0
  140. data/rice/global_function.hpp +33 -0
  141. data/rice/global_function.ipp +22 -0
  142. data/rice/protect.hpp +91 -0
  143. data/rice/protect.ipp +803 -0
  144. data/rice/ruby_mark.hpp +13 -0
  145. data/rice/ruby_try_catch.hpp +86 -0
  146. data/rice/rubypp.rb +97 -0
  147. data/rice/to_from_ruby.hpp +8 -0
  148. data/rice/to_from_ruby.ipp +299 -0
  149. data/rice/to_from_ruby_defn.hpp +71 -0
  150. data/ruby.ac +150 -0
  151. data/ruby/Makefile.am +1 -0
  152. data/ruby/Makefile.in +497 -0
  153. data/ruby/lib/Makefile.am +3 -0
  154. data/ruby/lib/Makefile.in +374 -0
  155. data/ruby/lib/mkmf-rice.rb.in +209 -0
  156. data/ruby/lib/version.rb +3 -0
  157. data/sample/Makefile.am +47 -0
  158. data/sample/Makefile.in +380 -0
  159. data/sample/enum/extconf.rb +3 -0
  160. data/sample/enum/sample_enum.cpp +54 -0
  161. data/sample/enum/test.rb +8 -0
  162. data/sample/inheritance/animals.cpp +98 -0
  163. data/sample/inheritance/extconf.rb +3 -0
  164. data/sample/inheritance/test.rb +7 -0
  165. data/sample/map/extconf.rb +3 -0
  166. data/sample/map/map.cpp +81 -0
  167. data/sample/map/test.rb +7 -0
  168. data/test/Makefile.am +49 -0
  169. data/test/Makefile.in +603 -0
  170. data/test/test_Address_Registration_Guard.cpp +43 -0
  171. data/test/test_Allocation_Strategies.cpp +77 -0
  172. data/test/test_Array.cpp +241 -0
  173. data/test/test_Builtin_Object.cpp +72 -0
  174. data/test/test_Class.cpp +398 -0
  175. data/test/test_Constructor.cpp +238 -0
  176. data/test/test_Critical_Guard.cpp +51 -0
  177. data/test/test_Data_Object.cpp +275 -0
  178. data/test/test_Data_Type.cpp +121 -0
  179. data/test/test_Director.cpp +225 -0
  180. data/test/test_Enum.cpp +162 -0
  181. data/test/test_Exception.cpp +46 -0
  182. data/test/test_Hash.cpp +195 -0
  183. data/test/test_Identifier.cpp +70 -0
  184. data/test/test_Jump_Tag.cpp +17 -0
  185. data/test/test_Module.cpp +428 -0
  186. data/test/test_Object.cpp +148 -0
  187. data/test/test_String.cpp +94 -0
  188. data/test/test_Struct.cpp +192 -0
  189. data/test/test_Symbol.cpp +63 -0
  190. data/test/test_To_From_Ruby.cpp +263 -0
  191. data/test/test_VM.cpp +26 -0
  192. data/test/test_global_functions.cpp +97 -0
  193. data/test/test_rice.rb +35 -0
  194. data/test/unittest.cpp +136 -0
  195. data/test/unittest.hpp +292 -0
  196. metadata +247 -0
@@ -0,0 +1,8 @@
1
+ require 'sample_enum'
2
+
3
+ Sample_Enum.each { |x| p x }
4
+ s = Sample_Enum::FOO
5
+ puts s
6
+ puts s.inspect
7
+ puts s < Sample_Enum::BAR
8
+
@@ -0,0 +1,98 @@
1
+ #include "rice/Data_Type.hpp"
2
+ #include "rice/Constructor.hpp"
3
+
4
+ using namespace Rice;
5
+
6
+ class Organism
7
+ {
8
+ public:
9
+ virtual ~Organism() = 0;
10
+ virtual char const * name() = 0;
11
+ };
12
+
13
+ Organism::
14
+ ~Organism()
15
+ {
16
+ }
17
+
18
+ class Animal
19
+ : public Organism
20
+ {
21
+ public:
22
+ virtual ~Animal() = 0;
23
+ virtual char const * speak() = 0;
24
+ };
25
+
26
+ Animal::
27
+ ~Animal()
28
+ {
29
+ }
30
+
31
+ class Bear
32
+ : public Animal
33
+ {
34
+ public:
35
+ virtual char const * name()
36
+ {
37
+ return "Bear";
38
+ }
39
+
40
+ virtual char const * speak()
41
+ {
42
+ return "I'm smarter than the average bear";
43
+ }
44
+ };
45
+
46
+ class Dog
47
+ : public Animal
48
+ {
49
+ public:
50
+ virtual char const * name()
51
+ {
52
+ return "Dog";
53
+ }
54
+
55
+ virtual char const * speak()
56
+ {
57
+ return "Woof woof";
58
+ }
59
+ };
60
+
61
+ class Rabbit
62
+ : public Animal
63
+ {
64
+ public:
65
+ virtual char const * name()
66
+ {
67
+ return "Rabbit";
68
+ }
69
+
70
+ virtual char const * speak()
71
+ {
72
+ return "What's up, doc?";
73
+ }
74
+ };
75
+
76
+ extern "C"
77
+ void Init_animals(void)
78
+ {
79
+ RUBY_TRY
80
+ {
81
+ define_class<Organism>("Organism")
82
+ .define_method("name", &Organism::name);
83
+
84
+ define_class<Animal, Organism>("Animal")
85
+ .define_method("speak", &Animal::speak);
86
+
87
+ define_class<Bear, Animal>("Bear")
88
+ .define_constructor(Constructor<Bear>());
89
+
90
+ define_class<Dog, Animal>("Dog")
91
+ .define_constructor(Constructor<Dog>());
92
+
93
+ define_class<Rabbit, Animal>("Rabbit")
94
+ .define_constructor(Constructor<Rabbit>());
95
+ }
96
+ RUBY_CATCH
97
+ }
98
+
@@ -0,0 +1,3 @@
1
+ require 'mkmf-rice'
2
+ create_makefile('animals')
3
+
@@ -0,0 +1,7 @@
1
+ require 'animals'
2
+
3
+ [ Bear, Dog, Rabbit].each do |klass|
4
+ animal = klass.new
5
+ puts "A #{animal.name} says: #{animal.speak}"
6
+ end
7
+
@@ -0,0 +1,3 @@
1
+ require 'mkmf-rice'
2
+ create_makefile('map')
3
+
@@ -0,0 +1,81 @@
1
+ #include "rice/Data_Type.hpp"
2
+ #include "rice/Constructor.hpp"
3
+
4
+ #include <map>
5
+
6
+ using namespace Rice;
7
+
8
+ namespace
9
+ {
10
+
11
+ class Map
12
+ {
13
+ private:
14
+ struct Ruby_Value_Compare
15
+ {
16
+ bool operator()(Object lhs, Object rhs) const
17
+ {
18
+ Object result = lhs.call("<", rhs);
19
+ return result.test();
20
+ }
21
+ };
22
+
23
+ typedef std::map<Object, Object, Ruby_Value_Compare> Value_Map;
24
+
25
+ public:
26
+ Object bracket(Object k)
27
+ {
28
+ Value_Map::iterator it = map_.find(k);
29
+ return it == map_.end() ? Object(Qnil) : it->second;
30
+ }
31
+
32
+ Object bracket_equals(Object k, Object v)
33
+ {
34
+ map_[k] = v;
35
+ return Qnil;
36
+ }
37
+
38
+ Value_Map::iterator begin() { return map_.begin(); }
39
+ Value_Map::iterator end() { return map_.end(); }
40
+
41
+ typedef Value_Map::value_type value_type;
42
+ typedef Value_Map::iterator iterator;
43
+
44
+ private:
45
+ Value_Map map_;
46
+ };
47
+
48
+ Data_Type<Map> rb_cMap;
49
+
50
+ } // namespace
51
+
52
+ template<>
53
+ Object to_ruby<Map::value_type>(Map::value_type const & p)
54
+ {
55
+ return protect(rb_assoc_new, p.first, p.second);
56
+ }
57
+
58
+ #include <iostream>
59
+ extern "C"
60
+ void Init_map(void)
61
+ {
62
+ RUBY_TRY
63
+ {
64
+ Map::iterator (Map::*begin)() = &Map::begin;
65
+ Map::iterator (Map::*end)() = &Map::end;
66
+ Rice::Module rb_mStd = define_module("Std");
67
+
68
+ // TODO: no delete method on the map, because I'm not sure how to
69
+ // make delete work properly while iterating
70
+ rb_cMap =
71
+ define_class_under<Map>(rb_mStd, "Map")
72
+ .define_constructor(Constructor<Map>())
73
+ .define_method("[]", &Map::bracket)
74
+ .define_method("[]=", &Map::bracket_equals)
75
+ .define_iterator(begin, end)
76
+ .include_module(rb_mEnumerable)
77
+ ;
78
+ }
79
+ RUBY_CATCH
80
+ }
81
+
@@ -0,0 +1,7 @@
1
+ require 'map'
2
+ m = Std::Map.new
3
+ m[0] = 1
4
+ m[1] = 2
5
+ m[3] = 3
6
+ m.each { |x| p x }
7
+
data/test/Makefile.am ADDED
@@ -0,0 +1,49 @@
1
+ noinst_PROGRAMS = unittest vm_unittest
2
+
3
+ TESTS = unittest vm_unittest
4
+
5
+ unittest_SOURCES = \
6
+ unittest.cpp \
7
+ test_Address_Registration_Guard.cpp \
8
+ test_Allocation_Strategies.cpp \
9
+ test_Array.cpp \
10
+ test_Builtin_Object.cpp \
11
+ test_Class.cpp \
12
+ test_Constructor.cpp \
13
+ test_Critical_Guard.cpp \
14
+ test_Data_Object.cpp \
15
+ test_Data_Type.cpp \
16
+ test_Director.cpp \
17
+ test_Enum.cpp \
18
+ test_Exception.cpp \
19
+ test_Hash.cpp \
20
+ test_Identifier.cpp \
21
+ test_Jump_Tag.cpp \
22
+ test_Module.cpp \
23
+ test_Object.cpp \
24
+ test_String.cpp \
25
+ test_Struct.cpp \
26
+ test_Symbol.cpp \
27
+ test_To_From_Ruby.cpp \
28
+ test_global_functions.cpp
29
+
30
+ vm_unittest_SOURCES = \
31
+ unittest.cpp \
32
+ test_VM.cpp
33
+
34
+ AM_CPPFLAGS = \
35
+ -I.. \
36
+ $(RUBY_CPPFLAGS)
37
+
38
+ AM_CXXLAGS = \
39
+ $(RUBY_CXXFLAGS)
40
+
41
+ AM_LDFLAGS = \
42
+ $(RUBY_LDFLAGS) \
43
+ -L../rice
44
+
45
+ LIBS = \
46
+ -lrice \
47
+ $(RUBY_LIBS) \
48
+ $(RUBY_LIBRUBYARG)
49
+
data/test/Makefile.in ADDED
@@ -0,0 +1,603 @@
1
+ # Makefile.in generated by automake 1.10.2 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 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
+ VPATH = @srcdir@
18
+ pkgdatadir = $(datadir)/@PACKAGE@
19
+ pkglibdir = $(libdir)/@PACKAGE@
20
+ pkgincludedir = $(includedir)/@PACKAGE@
21
+ am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd
22
+ install_sh_DATA = $(install_sh) -c -m 644
23
+ install_sh_PROGRAM = $(install_sh) -c
24
+ install_sh_SCRIPT = $(install_sh) -c
25
+ INSTALL_HEADER = $(INSTALL_DATA)
26
+ transform = $(program_transform_name)
27
+ NORMAL_INSTALL = :
28
+ PRE_INSTALL = :
29
+ POST_INSTALL = :
30
+ NORMAL_UNINSTALL = :
31
+ PRE_UNINSTALL = :
32
+ POST_UNINSTALL = :
33
+ build_triplet = @build@
34
+ host_triplet = @host@
35
+ noinst_PROGRAMS = unittest$(EXEEXT) vm_unittest$(EXEEXT)
36
+ TESTS = unittest$(EXEEXT) vm_unittest$(EXEEXT)
37
+ subdir = test
38
+ DIST_COMMON = $(srcdir)/Makefile.am $(srcdir)/Makefile.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 = $(top_builddir)/rice/config.hpp
46
+ CONFIG_CLEAN_FILES =
47
+ PROGRAMS = $(noinst_PROGRAMS)
48
+ am_unittest_OBJECTS = unittest.$(OBJEXT) \
49
+ test_Address_Registration_Guard.$(OBJEXT) \
50
+ test_Allocation_Strategies.$(OBJEXT) test_Array.$(OBJEXT) \
51
+ test_Builtin_Object.$(OBJEXT) test_Class.$(OBJEXT) \
52
+ test_Constructor.$(OBJEXT) test_Critical_Guard.$(OBJEXT) \
53
+ test_Data_Object.$(OBJEXT) test_Data_Type.$(OBJEXT) \
54
+ test_Director.$(OBJEXT) test_Enum.$(OBJEXT) \
55
+ test_Exception.$(OBJEXT) test_Hash.$(OBJEXT) \
56
+ test_Identifier.$(OBJEXT) test_Jump_Tag.$(OBJEXT) \
57
+ test_Module.$(OBJEXT) test_Object.$(OBJEXT) \
58
+ test_String.$(OBJEXT) test_Struct.$(OBJEXT) \
59
+ test_Symbol.$(OBJEXT) test_To_From_Ruby.$(OBJEXT) \
60
+ test_global_functions.$(OBJEXT)
61
+ unittest_OBJECTS = $(am_unittest_OBJECTS)
62
+ unittest_LDADD = $(LDADD)
63
+ am_vm_unittest_OBJECTS = unittest.$(OBJEXT) test_VM.$(OBJEXT)
64
+ vm_unittest_OBJECTS = $(am_vm_unittest_OBJECTS)
65
+ vm_unittest_LDADD = $(LDADD)
66
+ DEFAULT_INCLUDES = -I.@am__isrc@ -I$(top_builddir)/rice
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 = $(unittest_SOURCES) $(vm_unittest_SOURCES)
75
+ DIST_SOURCES = $(unittest_SOURCES) $(vm_unittest_SOURCES)
76
+ ETAGS = etags
77
+ CTAGS = ctags
78
+ DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST)
79
+ ACLOCAL = @ACLOCAL@
80
+ AMTAR = @AMTAR@
81
+ AUTOCONF = @AUTOCONF@
82
+ AUTOHEADER = @AUTOHEADER@
83
+ AUTOMAKE = @AUTOMAKE@
84
+ AWK = @AWK@
85
+ CPPFLAGS = @CPPFLAGS@
86
+ CXX = @CXX@
87
+ CXXDEPMODE = @CXXDEPMODE@
88
+ CXXFLAGS = @CXXFLAGS@
89
+ CYGPATH_W = @CYGPATH_W@
90
+ DEFS = @DEFS@
91
+ DEPDIR = @DEPDIR@
92
+ DOXYGEN_PAPER_SIZE = @DOXYGEN_PAPER_SIZE@
93
+ DX_CONFIG = @DX_CONFIG@
94
+ DX_DOCDIR = @DX_DOCDIR@
95
+ DX_DOT = @DX_DOT@
96
+ DX_DOXYGEN = @DX_DOXYGEN@
97
+ DX_DVIPS = @DX_DVIPS@
98
+ DX_EGREP = @DX_EGREP@
99
+ DX_ENV = @DX_ENV@
100
+ DX_FLAG_chi = @DX_FLAG_chi@
101
+ DX_FLAG_chm = @DX_FLAG_chm@
102
+ DX_FLAG_doc = @DX_FLAG_doc@
103
+ DX_FLAG_dot = @DX_FLAG_dot@
104
+ DX_FLAG_html = @DX_FLAG_html@
105
+ DX_FLAG_man = @DX_FLAG_man@
106
+ DX_FLAG_pdf = @DX_FLAG_pdf@
107
+ DX_FLAG_ps = @DX_FLAG_ps@
108
+ DX_FLAG_rtf = @DX_FLAG_rtf@
109
+ DX_FLAG_xml = @DX_FLAG_xml@
110
+ DX_HHC = @DX_HHC@
111
+ DX_LATEX = @DX_LATEX@
112
+ DX_MAKEINDEX = @DX_MAKEINDEX@
113
+ DX_PDFLATEX = @DX_PDFLATEX@
114
+ DX_PERL = @DX_PERL@
115
+ DX_PROJECT = @DX_PROJECT@
116
+ ECHO_C = @ECHO_C@
117
+ ECHO_N = @ECHO_N@
118
+ ECHO_T = @ECHO_T@
119
+ EXEEXT = @EXEEXT@
120
+ INSTALL = @INSTALL@
121
+ INSTALL_DATA = @INSTALL_DATA@
122
+ INSTALL_PROGRAM = @INSTALL_PROGRAM@
123
+ INSTALL_SCRIPT = @INSTALL_SCRIPT@
124
+ INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@
125
+ LDFLAGS = @LDFLAGS@
126
+ LIBOBJS = @LIBOBJS@
127
+ LIBS = \
128
+ -lrice \
129
+ $(RUBY_LIBS) \
130
+ $(RUBY_LIBRUBYARG)
131
+
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 = @includedir@
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_build_prefix = @top_build_prefix@
211
+ top_builddir = @top_builddir@
212
+ top_srcdir = @top_srcdir@
213
+ unittest_SOURCES = \
214
+ unittest.cpp \
215
+ test_Address_Registration_Guard.cpp \
216
+ test_Allocation_Strategies.cpp \
217
+ test_Array.cpp \
218
+ test_Builtin_Object.cpp \
219
+ test_Class.cpp \
220
+ test_Constructor.cpp \
221
+ test_Critical_Guard.cpp \
222
+ test_Data_Object.cpp \
223
+ test_Data_Type.cpp \
224
+ test_Director.cpp \
225
+ test_Enum.cpp \
226
+ test_Exception.cpp \
227
+ test_Hash.cpp \
228
+ test_Identifier.cpp \
229
+ test_Jump_Tag.cpp \
230
+ test_Module.cpp \
231
+ test_Object.cpp \
232
+ test_String.cpp \
233
+ test_Struct.cpp \
234
+ test_Symbol.cpp \
235
+ test_To_From_Ruby.cpp \
236
+ test_global_functions.cpp
237
+
238
+ vm_unittest_SOURCES = \
239
+ unittest.cpp \
240
+ test_VM.cpp
241
+
242
+ AM_CPPFLAGS = \
243
+ -I.. \
244
+ $(RUBY_CPPFLAGS)
245
+
246
+ AM_CXXLAGS = \
247
+ $(RUBY_CXXFLAGS)
248
+
249
+ AM_LDFLAGS = \
250
+ $(RUBY_LDFLAGS) \
251
+ -L../rice
252
+
253
+ all: all-am
254
+
255
+ .SUFFIXES:
256
+ .SUFFIXES: .cpp .o .obj
257
+ $(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(am__configure_deps)
258
+ @for dep in $?; do \
259
+ case '$(am__configure_deps)' in \
260
+ *$$dep*) \
261
+ ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \
262
+ && { if test -f $@; then exit 0; else break; fi; }; \
263
+ exit 1;; \
264
+ esac; \
265
+ done; \
266
+ echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu test/Makefile'; \
267
+ cd $(top_srcdir) && \
268
+ $(AUTOMAKE) --gnu test/Makefile
269
+ .PRECIOUS: Makefile
270
+ Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
271
+ @case '$?' in \
272
+ *config.status*) \
273
+ cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \
274
+ *) \
275
+ echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \
276
+ cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \
277
+ esac;
278
+
279
+ $(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES)
280
+ cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
281
+
282
+ $(top_srcdir)/configure: $(am__configure_deps)
283
+ cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
284
+ $(ACLOCAL_M4): $(am__aclocal_m4_deps)
285
+ cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
286
+
287
+ clean-noinstPROGRAMS:
288
+ -test -z "$(noinst_PROGRAMS)" || rm -f $(noinst_PROGRAMS)
289
+ unittest$(EXEEXT): $(unittest_OBJECTS) $(unittest_DEPENDENCIES)
290
+ @rm -f unittest$(EXEEXT)
291
+ $(CXXLINK) $(unittest_OBJECTS) $(unittest_LDADD) $(LIBS)
292
+ vm_unittest$(EXEEXT): $(vm_unittest_OBJECTS) $(vm_unittest_DEPENDENCIES)
293
+ @rm -f vm_unittest$(EXEEXT)
294
+ $(CXXLINK) $(vm_unittest_OBJECTS) $(vm_unittest_LDADD) $(LIBS)
295
+
296
+ mostlyclean-compile:
297
+ -rm -f *.$(OBJEXT)
298
+
299
+ distclean-compile:
300
+ -rm -f *.tab.c
301
+
302
+ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/test_Address_Registration_Guard.Po@am__quote@
303
+ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/test_Allocation_Strategies.Po@am__quote@
304
+ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/test_Array.Po@am__quote@
305
+ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/test_Builtin_Object.Po@am__quote@
306
+ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/test_Class.Po@am__quote@
307
+ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/test_Constructor.Po@am__quote@
308
+ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/test_Critical_Guard.Po@am__quote@
309
+ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/test_Data_Object.Po@am__quote@
310
+ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/test_Data_Type.Po@am__quote@
311
+ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/test_Director.Po@am__quote@
312
+ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/test_Enum.Po@am__quote@
313
+ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/test_Exception.Po@am__quote@
314
+ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/test_Hash.Po@am__quote@
315
+ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/test_Identifier.Po@am__quote@
316
+ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/test_Jump_Tag.Po@am__quote@
317
+ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/test_Module.Po@am__quote@
318
+ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/test_Object.Po@am__quote@
319
+ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/test_String.Po@am__quote@
320
+ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/test_Struct.Po@am__quote@
321
+ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/test_Symbol.Po@am__quote@
322
+ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/test_To_From_Ruby.Po@am__quote@
323
+ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/test_VM.Po@am__quote@
324
+ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/test_global_functions.Po@am__quote@
325
+ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/unittest.Po@am__quote@
326
+
327
+ .cpp.o:
328
+ @am__fastdepCXX_TRUE@ $(CXXCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $<
329
+ @am__fastdepCXX_TRUE@ mv -f $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po
330
+ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@
331
+ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
332
+ @am__fastdepCXX_FALSE@ $(CXXCOMPILE) -c -o $@ $<
333
+
334
+ .cpp.obj:
335
+ @am__fastdepCXX_TRUE@ $(CXXCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ `$(CYGPATH_W) '$<'`
336
+ @am__fastdepCXX_TRUE@ mv -f $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po
337
+ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@
338
+ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
339
+ @am__fastdepCXX_FALSE@ $(CXXCOMPILE) -c -o $@ `$(CYGPATH_W) '$<'`
340
+
341
+ ID: $(HEADERS) $(SOURCES) $(LISP) $(TAGS_FILES)
342
+ list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \
343
+ unique=`for i in $$list; do \
344
+ if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
345
+ done | \
346
+ $(AWK) '{ files[$$0] = 1; nonempty = 1; } \
347
+ END { if (nonempty) { for (i in files) print i; }; }'`; \
348
+ mkid -fID $$unique
349
+ tags: TAGS
350
+
351
+ TAGS: $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \
352
+ $(TAGS_FILES) $(LISP)
353
+ tags=; \
354
+ here=`pwd`; \
355
+ list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \
356
+ unique=`for i in $$list; do \
357
+ if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
358
+ done | \
359
+ $(AWK) '{ files[$$0] = 1; nonempty = 1; } \
360
+ END { if (nonempty) { for (i in files) print i; }; }'`; \
361
+ if test -z "$(ETAGS_ARGS)$$tags$$unique"; then :; else \
362
+ test -n "$$unique" || unique=$$empty_fix; \
363
+ $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \
364
+ $$tags $$unique; \
365
+ fi
366
+ ctags: CTAGS
367
+ CTAGS: $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \
368
+ $(TAGS_FILES) $(LISP)
369
+ tags=; \
370
+ list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \
371
+ unique=`for i in $$list; do \
372
+ if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
373
+ done | \
374
+ $(AWK) '{ files[$$0] = 1; nonempty = 1; } \
375
+ END { if (nonempty) { for (i in files) print i; }; }'`; \
376
+ test -z "$(CTAGS_ARGS)$$tags$$unique" \
377
+ || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \
378
+ $$tags $$unique
379
+
380
+ GTAGS:
381
+ here=`$(am__cd) $(top_builddir) && pwd` \
382
+ && cd $(top_srcdir) \
383
+ && gtags -i $(GTAGS_ARGS) $$here
384
+
385
+ distclean-tags:
386
+ -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags
387
+
388
+ check-TESTS: $(TESTS)
389
+ @failed=0; all=0; xfail=0; xpass=0; skip=0; \
390
+ srcdir=$(srcdir); export srcdir; \
391
+ list=' $(TESTS) '; \
392
+ if test -n "$$list"; then \
393
+ for tst in $$list; do \
394
+ if test -f ./$$tst; then dir=./; \
395
+ elif test -f $$tst; then dir=; \
396
+ else dir="$(srcdir)/"; fi; \
397
+ if $(TESTS_ENVIRONMENT) $${dir}$$tst; then \
398
+ all=`expr $$all + 1`; \
399
+ case " $(XFAIL_TESTS) " in \
400
+ *[\ \ ]$$tst[\ \ ]*) \
401
+ xpass=`expr $$xpass + 1`; \
402
+ failed=`expr $$failed + 1`; \
403
+ echo "XPASS: $$tst"; \
404
+ ;; \
405
+ *) \
406
+ echo "PASS: $$tst"; \
407
+ ;; \
408
+ esac; \
409
+ elif test $$? -ne 77; then \
410
+ all=`expr $$all + 1`; \
411
+ case " $(XFAIL_TESTS) " in \
412
+ *[\ \ ]$$tst[\ \ ]*) \
413
+ xfail=`expr $$xfail + 1`; \
414
+ echo "XFAIL: $$tst"; \
415
+ ;; \
416
+ *) \
417
+ failed=`expr $$failed + 1`; \
418
+ echo "FAIL: $$tst"; \
419
+ ;; \
420
+ esac; \
421
+ else \
422
+ skip=`expr $$skip + 1`; \
423
+ echo "SKIP: $$tst"; \
424
+ fi; \
425
+ done; \
426
+ if test "$$all" -eq 1; then \
427
+ tests="test"; \
428
+ All=""; \
429
+ else \
430
+ tests="tests"; \
431
+ All="All "; \
432
+ fi; \
433
+ if test "$$failed" -eq 0; then \
434
+ if test "$$xfail" -eq 0; then \
435
+ banner="$$All$$all $$tests passed"; \
436
+ else \
437
+ if test "$$xfail" -eq 1; then failures=failure; else failures=failures; fi; \
438
+ banner="$$All$$all $$tests behaved as expected ($$xfail expected $$failures)"; \
439
+ fi; \
440
+ else \
441
+ if test "$$xpass" -eq 0; then \
442
+ banner="$$failed of $$all $$tests failed"; \
443
+ else \
444
+ if test "$$xpass" -eq 1; then passes=pass; else passes=passes; fi; \
445
+ banner="$$failed of $$all $$tests did not behave as expected ($$xpass unexpected $$passes)"; \
446
+ fi; \
447
+ fi; \
448
+ dashes="$$banner"; \
449
+ skipped=""; \
450
+ if test "$$skip" -ne 0; then \
451
+ if test "$$skip" -eq 1; then \
452
+ skipped="($$skip test was not run)"; \
453
+ else \
454
+ skipped="($$skip tests were not run)"; \
455
+ fi; \
456
+ test `echo "$$skipped" | wc -c` -le `echo "$$banner" | wc -c` || \
457
+ dashes="$$skipped"; \
458
+ fi; \
459
+ report=""; \
460
+ if test "$$failed" -ne 0 && test -n "$(PACKAGE_BUGREPORT)"; then \
461
+ report="Please report to $(PACKAGE_BUGREPORT)"; \
462
+ test `echo "$$report" | wc -c` -le `echo "$$banner" | wc -c` || \
463
+ dashes="$$report"; \
464
+ fi; \
465
+ dashes=`echo "$$dashes" | sed s/./=/g`; \
466
+ echo "$$dashes"; \
467
+ echo "$$banner"; \
468
+ test -z "$$skipped" || echo "$$skipped"; \
469
+ test -z "$$report" || echo "$$report"; \
470
+ echo "$$dashes"; \
471
+ test "$$failed" -eq 0; \
472
+ else :; fi
473
+
474
+ distdir: $(DISTFILES)
475
+ @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
476
+ topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
477
+ list='$(DISTFILES)'; \
478
+ dist_files=`for file in $$list; do echo $$file; done | \
479
+ sed -e "s|^$$srcdirstrip/||;t" \
480
+ -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \
481
+ case $$dist_files in \
482
+ */*) eval $(MKDIR_P) `echo "$$dist_files" | \
483
+ sed '/\//!d;s|^|"$(distdir)"/|;s,/[^/]*$$,,' | \
484
+ sort -u` ;; \
485
+ esac; \
486
+ for file in $$dist_files; do \
487
+ if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \
488
+ if test -d $$d/$$file; then \
489
+ dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \
490
+ if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \
491
+ cp -pR $(srcdir)/$$file "$(distdir)"$$dir || exit 1; \
492
+ fi; \
493
+ cp -pR $$d/$$file "$(distdir)"$$dir || exit 1; \
494
+ else \
495
+ test -f "$(distdir)"/$$file \
496
+ || cp -p $$d/$$file "$(distdir)"/$$file \
497
+ || exit 1; \
498
+ fi; \
499
+ done
500
+ check-am: all-am
501
+ $(MAKE) $(AM_MAKEFLAGS) check-TESTS
502
+ check: check-am
503
+ all-am: Makefile $(PROGRAMS)
504
+ installdirs:
505
+ install: install-am
506
+ install-exec: install-exec-am
507
+ install-data: install-data-am
508
+ uninstall: uninstall-am
509
+
510
+ install-am: all-am
511
+ @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am
512
+
513
+ installcheck: installcheck-am
514
+ install-strip:
515
+ $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \
516
+ install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \
517
+ `test -z '$(STRIP)' || \
518
+ echo "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'"` install
519
+ mostlyclean-generic:
520
+
521
+ clean-generic:
522
+
523
+ distclean-generic:
524
+ -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES)
525
+
526
+ maintainer-clean-generic:
527
+ @echo "This command is intended for maintainers to use"
528
+ @echo "it deletes files that may require special tools to rebuild."
529
+ clean: clean-am
530
+
531
+ clean-am: clean-generic clean-noinstPROGRAMS mostlyclean-am
532
+
533
+ distclean: distclean-am
534
+ -rm -rf ./$(DEPDIR)
535
+ -rm -f Makefile
536
+ distclean-am: clean-am distclean-compile distclean-generic \
537
+ distclean-tags
538
+
539
+ dvi: dvi-am
540
+
541
+ dvi-am:
542
+
543
+ html: html-am
544
+
545
+ info: info-am
546
+
547
+ info-am:
548
+
549
+ install-data-am:
550
+
551
+ install-dvi: install-dvi-am
552
+
553
+ install-exec-am:
554
+
555
+ install-html: install-html-am
556
+
557
+ install-info: install-info-am
558
+
559
+ install-man:
560
+
561
+ install-pdf: install-pdf-am
562
+
563
+ install-ps: install-ps-am
564
+
565
+ installcheck-am:
566
+
567
+ maintainer-clean: maintainer-clean-am
568
+ -rm -rf ./$(DEPDIR)
569
+ -rm -f Makefile
570
+ maintainer-clean-am: distclean-am maintainer-clean-generic
571
+
572
+ mostlyclean: mostlyclean-am
573
+
574
+ mostlyclean-am: mostlyclean-compile mostlyclean-generic
575
+
576
+ pdf: pdf-am
577
+
578
+ pdf-am:
579
+
580
+ ps: ps-am
581
+
582
+ ps-am:
583
+
584
+ uninstall-am:
585
+
586
+ .MAKE: install-am install-strip
587
+
588
+ .PHONY: CTAGS GTAGS all all-am check check-TESTS check-am clean \
589
+ clean-generic clean-noinstPROGRAMS ctags distclean \
590
+ distclean-compile distclean-generic distclean-tags distdir dvi \
591
+ dvi-am html html-am info info-am install install-am \
592
+ install-data install-data-am install-dvi install-dvi-am \
593
+ install-exec install-exec-am install-html install-html-am \
594
+ install-info install-info-am install-man install-pdf \
595
+ install-pdf-am install-ps install-ps-am install-strip \
596
+ installcheck installcheck-am installdirs maintainer-clean \
597
+ maintainer-clean-generic mostlyclean mostlyclean-compile \
598
+ mostlyclean-generic pdf pdf-am ps ps-am tags uninstall \
599
+ uninstall-am
600
+
601
+ # Tell versions [3.59,3.63) of GNU make to not export all variables.
602
+ # Otherwise a system limit (for SysV at least) may be exceeded.
603
+ .NOEXPORT: