rice 2.1.3 → 4.0.2
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.
- checksums.yaml +4 -4
 - data/CHANGELOG.md +121 -0
 - data/CONTRIBUTORS.md +19 -0
 - data/COPYING +2 -2
 - data/Gemfile +3 -0
 - data/README.md +45 -1028
 - data/Rakefile +95 -12
 - data/include/rice/rice.hpp +7766 -0
 - data/include/rice/stl.hpp +1113 -0
 - data/lib/mkmf-rice.rb +127 -0
 - data/lib/version.rb +3 -0
 - data/rice/Address_Registration_Guard.ipp +75 -32
 - data/rice/Address_Registration_Guard_defn.hpp +60 -56
 - data/rice/Arg.hpp +80 -4
 - data/rice/Arg.ipp +51 -0
 - data/rice/Constructor.hpp +30 -376
 - data/rice/Data_Object.ipp +234 -107
 - data/rice/Data_Object_defn.hpp +77 -117
 - data/rice/Data_Type.hpp +1 -2
 - data/rice/Data_Type.ipp +251 -295
 - data/rice/Data_Type_defn.hpp +175 -243
 - data/rice/Director.hpp +14 -9
 - data/rice/Enum.hpp +54 -104
 - data/rice/Enum.ipp +104 -230
 - data/rice/Exception.hpp +2 -8
 - data/rice/Exception.ipp +65 -0
 - data/rice/Exception_defn.hpp +46 -47
 - data/rice/Identifier.hpp +28 -28
 - data/rice/Identifier.ipp +23 -27
 - data/rice/Return.hpp +39 -0
 - data/rice/Return.ipp +33 -0
 - data/rice/detail/Exception_Handler.ipp +22 -62
 - data/rice/detail/Exception_Handler_defn.hpp +76 -91
 - data/rice/detail/Iterator.hpp +18 -88
 - data/rice/detail/Iterator.ipp +47 -0
 - data/rice/detail/Jump_Tag.hpp +21 -0
 - data/rice/detail/MethodInfo.hpp +44 -0
 - data/rice/detail/MethodInfo.ipp +78 -0
 - data/rice/detail/NativeAttribute.hpp +53 -0
 - data/rice/detail/NativeAttribute.ipp +83 -0
 - data/rice/detail/NativeFunction.hpp +69 -0
 - data/rice/detail/NativeFunction.ipp +248 -0
 - data/rice/detail/RubyFunction.hpp +39 -0
 - data/rice/detail/RubyFunction.ipp +92 -0
 - data/rice/detail/Type.hpp +29 -0
 - data/rice/detail/Type.ipp +138 -0
 - data/rice/detail/TypeRegistry.hpp +50 -0
 - data/rice/detail/TypeRegistry.ipp +106 -0
 - data/rice/detail/Wrapper.hpp +51 -0
 - data/rice/detail/Wrapper.ipp +151 -0
 - data/rice/detail/default_allocation_func.hpp +8 -19
 - data/rice/detail/default_allocation_func.ipp +9 -8
 - data/rice/detail/from_ruby.hpp +2 -37
 - data/rice/detail/from_ruby.ipp +1020 -46
 - data/rice/detail/from_ruby_defn.hpp +38 -0
 - data/rice/detail/function_traits.hpp +124 -0
 - data/rice/detail/method_data.hpp +23 -15
 - data/rice/detail/method_data.ipp +53 -0
 - data/rice/detail/rice_traits.hpp +116 -0
 - data/rice/detail/ruby.hpp +9 -50
 - data/rice/detail/to_ruby.hpp +3 -17
 - data/rice/detail/to_ruby.ipp +409 -31
 - data/rice/detail/to_ruby_defn.hpp +48 -0
 - data/rice/forward_declares.ipp +82 -0
 - data/rice/global_function.hpp +16 -20
 - data/rice/global_function.ipp +8 -17
 - data/rice/rice.hpp +59 -0
 - data/rice/ruby_mark.hpp +5 -3
 - data/rice/ruby_try_catch.hpp +4 -4
 - data/rice/stl.hpp +11 -0
 - data/sample/callbacks/extconf.rb +6 -0
 - data/sample/callbacks/sample_callbacks.cpp +35 -0
 - data/sample/callbacks/test.rb +28 -0
 - data/sample/enum/extconf.rb +3 -0
 - data/sample/enum/sample_enum.cpp +3 -17
 - data/sample/enum/test.rb +2 -2
 - data/sample/inheritance/animals.cpp +8 -24
 - data/sample/inheritance/extconf.rb +3 -0
 - data/sample/inheritance/test.rb +1 -1
 - data/sample/map/extconf.rb +3 -0
 - data/sample/map/map.cpp +10 -18
 - data/sample/map/test.rb +1 -1
 - data/test/embed_ruby.cpp +34 -0
 - data/test/embed_ruby.hpp +4 -0
 - data/test/ext/t1/extconf.rb +3 -0
 - data/test/ext/t1/t1.cpp +1 -3
 - data/test/ext/t2/extconf.rb +3 -0
 - data/test/ext/t2/t2.cpp +1 -1
 - data/test/extconf.rb +23 -0
 - data/test/ruby/test_callbacks_sample.rb +28 -0
 - data/test/ruby/test_multiple_extensions.rb +18 -0
 - data/test/ruby/test_multiple_extensions_same_class.rb +14 -0
 - data/test/ruby/test_multiple_extensions_with_inheritance.rb +20 -0
 - data/test/test_Address_Registration_Guard.cpp +25 -11
 - data/test/test_Array.cpp +131 -74
 - data/test/test_Attribute.cpp +147 -0
 - data/test/test_Builtin_Object.cpp +36 -15
 - data/test/test_Class.cpp +151 -276
 - data/test/test_Constructor.cpp +10 -9
 - data/test/test_Data_Object.cpp +135 -193
 - data/test/test_Data_Type.cpp +323 -252
 - data/test/test_Director.cpp +56 -42
 - data/test/test_Enum.cpp +230 -104
 - data/test/test_Exception.cpp +7 -7
 - data/test/test_Hash.cpp +33 -31
 - data/test/test_Identifier.cpp +6 -6
 - data/test/test_Inheritance.cpp +221 -0
 - data/test/test_Iterator.cpp +161 -0
 - data/test/test_Jump_Tag.cpp +1 -1
 - data/test/test_Keep_Alive.cpp +161 -0
 - data/test/test_Memory_Management.cpp +4 -5
 - data/test/test_Module.cpp +169 -111
 - data/test/test_Object.cpp +51 -19
 - data/test/test_Ownership.cpp +275 -0
 - data/test/test_Self.cpp +205 -0
 - data/test/test_Stl_Optional.cpp +90 -0
 - data/test/test_Stl_Pair.cpp +144 -0
 - data/test/test_Stl_SmartPointer.cpp +200 -0
 - data/test/test_Stl_String.cpp +74 -0
 - data/test/test_Stl_Vector.cpp +652 -0
 - data/test/test_String.cpp +3 -3
 - data/test/test_Struct.cpp +31 -40
 - data/test/test_Symbol.cpp +3 -3
 - data/test/test_To_From_Ruby.cpp +283 -218
 - data/test/test_global_functions.cpp +41 -20
 - data/test/unittest.cpp +34 -8
 - data/test/unittest.hpp +0 -4
 - metadata +121 -136
 - data/Doxyfile +0 -2268
 - data/Makefile.am +0 -26
 - data/Makefile.in +0 -923
 - data/README.mingw +0 -8
 - data/aclocal.m4 +0 -1088
 - data/bootstrap +0 -8
 - data/check_stdcxx_11.ac +0 -103
 - data/config.guess +0 -1421
 - data/config.sub +0 -1807
 - data/configure +0 -7367
 - data/configure.ac +0 -55
 - data/depcomp +0 -791
 - data/doxygen.ac +0 -314
 - data/doxygen.am +0 -186
 - data/extconf.rb +0 -69
 - data/install-sh +0 -501
 - data/missing +0 -215
 - data/post-autoconf.rb +0 -22
 - data/post-automake.rb +0 -28
 - data/rice/Address_Registration_Guard.cpp +0 -22
 - data/rice/Arg_impl.hpp +0 -129
 - data/rice/Arg_operators.cpp +0 -21
 - data/rice/Arg_operators.hpp +0 -19
 - data/rice/Array.hpp +0 -214
 - data/rice/Array.ipp +0 -256
 - data/rice/Builtin_Object.hpp +0 -8
 - data/rice/Builtin_Object.ipp +0 -50
 - data/rice/Builtin_Object_defn.hpp +0 -50
 - data/rice/Class.cpp +0 -57
 - data/rice/Class.hpp +0 -8
 - data/rice/Class.ipp +0 -6
 - data/rice/Class_defn.hpp +0 -83
 - data/rice/Data_Type.cpp +0 -54
 - data/rice/Data_Type_fwd.hpp +0 -12
 - data/rice/Director.cpp +0 -13
 - data/rice/Exception.cpp +0 -59
 - data/rice/Exception_Base.hpp +0 -8
 - data/rice/Exception_Base.ipp +0 -13
 - data/rice/Exception_Base_defn.hpp +0 -27
 - data/rice/Hash.hpp +0 -227
 - data/rice/Hash.ipp +0 -329
 - data/rice/Identifier.cpp +0 -8
 - data/rice/Jump_Tag.hpp +0 -24
 - data/rice/Makefile.am +0 -125
 - data/rice/Makefile.in +0 -888
 - data/rice/Module.cpp +0 -84
 - data/rice/Module.hpp +0 -8
 - data/rice/Module.ipp +0 -6
 - data/rice/Module_defn.hpp +0 -88
 - data/rice/Module_impl.hpp +0 -281
 - data/rice/Module_impl.ipp +0 -345
 - data/rice/Object.cpp +0 -169
 - data/rice/Object.hpp +0 -8
 - data/rice/Object.ipp +0 -19
 - data/rice/Object_defn.hpp +0 -191
 - data/rice/Require_Guard.hpp +0 -21
 - data/rice/String.cpp +0 -94
 - data/rice/String.hpp +0 -91
 - data/rice/Struct.cpp +0 -117
 - data/rice/Struct.hpp +0 -162
 - data/rice/Struct.ipp +0 -26
 - data/rice/Symbol.cpp +0 -25
 - data/rice/Symbol.hpp +0 -66
 - data/rice/Symbol.ipp +0 -44
 - data/rice/config.hpp +0 -47
 - data/rice/config.hpp.in +0 -46
 - data/rice/detail/Arguments.hpp +0 -118
 - data/rice/detail/Auto_Function_Wrapper.hpp +0 -898
 - data/rice/detail/Auto_Function_Wrapper.ipp +0 -3694
 - data/rice/detail/Auto_Member_Function_Wrapper.hpp +0 -897
 - data/rice/detail/Auto_Member_Function_Wrapper.ipp +0 -2774
 - data/rice/detail/Caster.hpp +0 -103
 - data/rice/detail/Not_Copyable.hpp +0 -25
 - data/rice/detail/Wrapped_Function.hpp +0 -33
 - data/rice/detail/cfp.hpp +0 -24
 - data/rice/detail/cfp.ipp +0 -51
 - data/rice/detail/check_ruby_type.cpp +0 -27
 - data/rice/detail/check_ruby_type.hpp +0 -23
 - data/rice/detail/creation_funcs.hpp +0 -37
 - data/rice/detail/creation_funcs.ipp +0 -36
 - data/rice/detail/define_method_and_auto_wrap.hpp +0 -31
 - data/rice/detail/define_method_and_auto_wrap.ipp +0 -30
 - data/rice/detail/demangle.cpp +0 -56
 - data/rice/detail/demangle.hpp +0 -19
 - data/rice/detail/env.hpp +0 -11
 - data/rice/detail/method_data.cpp +0 -86
 - data/rice/detail/node.hpp +0 -13
 - data/rice/detail/object_call.hpp +0 -69
 - data/rice/detail/object_call.ipp +0 -131
 - data/rice/detail/protect.cpp +0 -29
 - data/rice/detail/protect.hpp +0 -34
 - data/rice/detail/ruby_version_code.hpp +0 -6
 - data/rice/detail/ruby_version_code.hpp.in +0 -6
 - data/rice/detail/st.hpp +0 -22
 - data/rice/detail/traits.hpp +0 -43
 - data/rice/detail/win32.hpp +0 -16
 - data/rice/detail/wrap_function.hpp +0 -341
 - data/rice/detail/wrap_function.ipp +0 -514
 - data/rice/protect.hpp +0 -92
 - data/rice/protect.ipp +0 -1134
 - data/rice/rubypp.rb +0 -97
 - data/rice/to_from_ruby.hpp +0 -8
 - data/rice/to_from_ruby.ipp +0 -294
 - data/rice/to_from_ruby_defn.hpp +0 -70
 - data/ruby.ac +0 -135
 - data/ruby/Makefile.am +0 -1
 - data/ruby/Makefile.in +0 -628
 - data/ruby/lib/Makefile.am +0 -3
 - data/ruby/lib/Makefile.in +0 -506
 - data/ruby/lib/mkmf-rice.rb.in +0 -217
 - data/ruby/lib/version.rb +0 -3
 - data/sample/Makefile.am +0 -47
 - data/sample/Makefile.in +0 -489
 - data/test/Makefile.am +0 -72
 - data/test/Makefile.in +0 -1213
 - data/test/ext/Makefile.am +0 -41
 - data/test/ext/Makefile.in +0 -483
 - data/test/test_rice.rb +0 -41
 
    
        data/Makefile.am
    DELETED
    
    | 
         @@ -1,26 +0,0 @@ 
     | 
|
| 
       1 
     | 
    
         
            -
            AUTOMAKE_OPTIONS = foreign 1.5
         
     | 
| 
       2 
     | 
    
         
            -
            SUBDIRS = rice test sample ruby
         
     | 
| 
       3 
     | 
    
         
            -
             
     | 
| 
       4 
     | 
    
         
            -
            include doxygen.am
         
     | 
| 
       5 
     | 
    
         
            -
             
     | 
| 
       6 
     | 
    
         
            -
            doc: doxygen-doc
         
     | 
| 
       7 
     | 
    
         
            -
             
     | 
| 
       8 
     | 
    
         
            -
            noinst_EXTRA = rice/README.doxygen
         
     | 
| 
       9 
     | 
    
         
            -
             
     | 
| 
       10 
     | 
    
         
            -
            DX_EXTRA_DEPEND = rice/README.doxygen
         
     | 
| 
       11 
     | 
    
         
            -
             
     | 
| 
       12 
     | 
    
         
            -
            EXTRA_DIST = \
         
     | 
| 
       13 
     | 
    
         
            -
            	README.mingw \
         
     | 
| 
       14 
     | 
    
         
            -
            	post-autoconf.rb \
         
     | 
| 
       15 
     | 
    
         
            -
            	post-automake.rb \
         
     | 
| 
       16 
     | 
    
         
            -
            	bootstrap \
         
     | 
| 
       17 
     | 
    
         
            -
            	Doxyfile \
         
     | 
| 
       18 
     | 
    
         
            -
            	ruby.ac \
         
     | 
| 
       19 
     | 
    
         
            -
            	doxygen.ac \
         
     | 
| 
       20 
     | 
    
         
            -
            	doxygen.am \
         
     | 
| 
       21 
     | 
    
         
            -
            	doc
         
     | 
| 
       22 
     | 
    
         
            -
             
     | 
| 
       23 
     | 
    
         
            -
            rice/README.doxygen: README.md
         
     | 
| 
       24 
     | 
    
         
            -
            	@echo Generating documentation
         
     | 
| 
       25 
     | 
    
         
            -
            	@$(RUBY) -e 'File.open("README.md") { |i| File.open("rice/README.doxygen", "w") { |o| o.puts "/*! #{i.gets}"; i.each_line { |l| o.puts "    #{l}" if l !~ /^\\comment/ and l !~ /^vim:/ }; o.puts " */" } }'.md
         
     | 
| 
       26 
     | 
    
         
            -
             
     | 
    
        data/Makefile.in
    DELETED
    
    | 
         @@ -1,923 +0,0 @@ 
     | 
|
| 
       1 
     | 
    
         
            -
            # Makefile.in generated by automake 1.16.1 from Makefile.am.
         
     | 
| 
       2 
     | 
    
         
            -
            # @configure_input@
         
     | 
| 
       3 
     | 
    
         
            -
             
     | 
| 
       4 
     | 
    
         
            -
            # Copyright (C) 1994-2018 Free Software Foundation, Inc.
         
     | 
| 
       5 
     | 
    
         
            -
             
     | 
| 
       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 
     | 
    
         
            -
            # Copyright (C) 2004 Oren Ben-Kiki
         
     | 
| 
       18 
     | 
    
         
            -
            # This file is distributed under the same terms as the Automake macro files.
         
     | 
| 
       19 
     | 
    
         
            -
             
     | 
| 
       20 
     | 
    
         
            -
            # Generate automatic documentation using Doxygen. Goals and variables values
         
     | 
| 
       21 
     | 
    
         
            -
            # are controlled by the various DX_COND_??? conditionals set by autoconf.
         
     | 
| 
       22 
     | 
    
         
            -
            #
         
     | 
| 
       23 
     | 
    
         
            -
            # The provided goals are:
         
     | 
| 
       24 
     | 
    
         
            -
            # doxygen-doc: Generate all doxygen documentation.
         
     | 
| 
       25 
     | 
    
         
            -
            # doxygen-run: Run doxygen, which will generate some of the documentation
         
     | 
| 
       26 
     | 
    
         
            -
            #              (HTML, CHM, CHI, MAN, RTF, XML) but will not do the post
         
     | 
| 
       27 
     | 
    
         
            -
            #              processing required for the rest of it (PS, PDF, and some MAN).
         
     | 
| 
       28 
     | 
    
         
            -
            # doxygen-man: Rename some doxygen generated man pages.
         
     | 
| 
       29 
     | 
    
         
            -
            # doxygen-ps: Generate doxygen PostScript documentation.
         
     | 
| 
       30 
     | 
    
         
            -
            # doxygen-pdf: Generate doxygen PDF documentation.
         
     | 
| 
       31 
     | 
    
         
            -
            #
         
     | 
| 
       32 
     | 
    
         
            -
            # Note that by default these are not integrated into the automake goals. If
         
     | 
| 
       33 
     | 
    
         
            -
            # doxygen is used to generate man pages, you can achieve this integration by
         
     | 
| 
       34 
     | 
    
         
            -
            # setting man3_MANS to the list of man pages generated and then adding the
         
     | 
| 
       35 
     | 
    
         
            -
            # dependency:
         
     | 
| 
       36 
     | 
    
         
            -
            #
         
     | 
| 
       37 
     | 
    
         
            -
            #   $(man3_MANS): doxygen-doc
         
     | 
| 
       38 
     | 
    
         
            -
            #
         
     | 
| 
       39 
     | 
    
         
            -
            # This will cause make to run doxygen and generate all the documentation.
         
     | 
| 
       40 
     | 
    
         
            -
            #
         
     | 
| 
       41 
     | 
    
         
            -
            # The following variable is intended for use in Makefile.am:
         
     | 
| 
       42 
     | 
    
         
            -
            #
         
     | 
| 
       43 
     | 
    
         
            -
            # DX_CLEANFILES = everything to clean.
         
     | 
| 
       44 
     | 
    
         
            -
            #
         
     | 
| 
       45 
     | 
    
         
            -
            # This is usually added to MOSTLYCLEANFILES.
         
     | 
| 
       46 
     | 
    
         
            -
            VPATH = @srcdir@
         
     | 
| 
       47 
     | 
    
         
            -
            am__is_gnu_make = { \
         
     | 
| 
       48 
     | 
    
         
            -
              if test -z '$(MAKELEVEL)'; then \
         
     | 
| 
       49 
     | 
    
         
            -
                false; \
         
     | 
| 
       50 
     | 
    
         
            -
              elif test -n '$(MAKE_HOST)'; then \
         
     | 
| 
       51 
     | 
    
         
            -
                true; \
         
     | 
| 
       52 
     | 
    
         
            -
              elif test -n '$(MAKE_VERSION)' && test -n '$(CURDIR)'; then \
         
     | 
| 
       53 
     | 
    
         
            -
                true; \
         
     | 
| 
       54 
     | 
    
         
            -
              else \
         
     | 
| 
       55 
     | 
    
         
            -
                false; \
         
     | 
| 
       56 
     | 
    
         
            -
              fi; \
         
     | 
| 
       57 
     | 
    
         
            -
            }
         
     | 
| 
       58 
     | 
    
         
            -
            am__make_running_with_option = \
         
     | 
| 
       59 
     | 
    
         
            -
              case $${target_option-} in \
         
     | 
| 
       60 
     | 
    
         
            -
                  ?) ;; \
         
     | 
| 
       61 
     | 
    
         
            -
                  *) echo "am__make_running_with_option: internal error: invalid" \
         
     | 
| 
       62 
     | 
    
         
            -
                          "target option '$${target_option-}' specified" >&2; \
         
     | 
| 
       63 
     | 
    
         
            -
                     exit 1;; \
         
     | 
| 
       64 
     | 
    
         
            -
              esac; \
         
     | 
| 
       65 
     | 
    
         
            -
              has_opt=no; \
         
     | 
| 
       66 
     | 
    
         
            -
              sane_makeflags=$$MAKEFLAGS; \
         
     | 
| 
       67 
     | 
    
         
            -
              if $(am__is_gnu_make); then \
         
     | 
| 
       68 
     | 
    
         
            -
                sane_makeflags=$$MFLAGS; \
         
     | 
| 
       69 
     | 
    
         
            -
              else \
         
     | 
| 
       70 
     | 
    
         
            -
                case $$MAKEFLAGS in \
         
     | 
| 
       71 
     | 
    
         
            -
                  *\\[\ \	]*) \
         
     | 
| 
       72 
     | 
    
         
            -
                    bs=\\; \
         
     | 
| 
       73 
     | 
    
         
            -
                    sane_makeflags=`printf '%s\n' "$$MAKEFLAGS" \
         
     | 
| 
       74 
     | 
    
         
            -
                      | sed "s/$$bs$$bs[$$bs $$bs	]*//g"`;; \
         
     | 
| 
       75 
     | 
    
         
            -
                esac; \
         
     | 
| 
       76 
     | 
    
         
            -
              fi; \
         
     | 
| 
       77 
     | 
    
         
            -
              skip_next=no; \
         
     | 
| 
       78 
     | 
    
         
            -
              strip_trailopt () \
         
     | 
| 
       79 
     | 
    
         
            -
              { \
         
     | 
| 
       80 
     | 
    
         
            -
                flg=`printf '%s\n' "$$flg" | sed "s/$$1.*$$//"`; \
         
     | 
| 
       81 
     | 
    
         
            -
              }; \
         
     | 
| 
       82 
     | 
    
         
            -
              for flg in $$sane_makeflags; do \
         
     | 
| 
       83 
     | 
    
         
            -
                test $$skip_next = yes && { skip_next=no; continue; }; \
         
     | 
| 
       84 
     | 
    
         
            -
                case $$flg in \
         
     | 
| 
       85 
     | 
    
         
            -
                  *=*|--*) continue;; \
         
     | 
| 
       86 
     | 
    
         
            -
                    -*I) strip_trailopt 'I'; skip_next=yes;; \
         
     | 
| 
       87 
     | 
    
         
            -
                  -*I?*) strip_trailopt 'I';; \
         
     | 
| 
       88 
     | 
    
         
            -
                    -*O) strip_trailopt 'O'; skip_next=yes;; \
         
     | 
| 
       89 
     | 
    
         
            -
                  -*O?*) strip_trailopt 'O';; \
         
     | 
| 
       90 
     | 
    
         
            -
                    -*l) strip_trailopt 'l'; skip_next=yes;; \
         
     | 
| 
       91 
     | 
    
         
            -
                  -*l?*) strip_trailopt 'l';; \
         
     | 
| 
       92 
     | 
    
         
            -
                  -[dEDm]) skip_next=yes;; \
         
     | 
| 
       93 
     | 
    
         
            -
                  -[JT]) skip_next=yes;; \
         
     | 
| 
       94 
     | 
    
         
            -
                esac; \
         
     | 
| 
       95 
     | 
    
         
            -
                case $$flg in \
         
     | 
| 
       96 
     | 
    
         
            -
                  *$$target_option*) has_opt=yes; break;; \
         
     | 
| 
       97 
     | 
    
         
            -
                esac; \
         
     | 
| 
       98 
     | 
    
         
            -
              done; \
         
     | 
| 
       99 
     | 
    
         
            -
              test $$has_opt = yes
         
     | 
| 
       100 
     | 
    
         
            -
            am__make_dryrun = (target_option=n; $(am__make_running_with_option))
         
     | 
| 
       101 
     | 
    
         
            -
            am__make_keepgoing = (target_option=k; $(am__make_running_with_option))
         
     | 
| 
       102 
     | 
    
         
            -
            pkgdatadir = $(datadir)/@PACKAGE@
         
     | 
| 
       103 
     | 
    
         
            -
            pkgincludedir = $(includedir)/@PACKAGE@
         
     | 
| 
       104 
     | 
    
         
            -
            pkglibdir = $(libdir)/@PACKAGE@
         
     | 
| 
       105 
     | 
    
         
            -
            pkglibexecdir = $(libexecdir)/@PACKAGE@
         
     | 
| 
       106 
     | 
    
         
            -
            am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd
         
     | 
| 
       107 
     | 
    
         
            -
            install_sh_DATA = $(install_sh) -c -m 644
         
     | 
| 
       108 
     | 
    
         
            -
            install_sh_PROGRAM = $(install_sh) -c
         
     | 
| 
       109 
     | 
    
         
            -
            install_sh_SCRIPT = $(install_sh) -c
         
     | 
| 
       110 
     | 
    
         
            -
            INSTALL_HEADER = $(INSTALL_DATA)
         
     | 
| 
       111 
     | 
    
         
            -
            transform = $(program_transform_name)
         
     | 
| 
       112 
     | 
    
         
            -
            NORMAL_INSTALL = :
         
     | 
| 
       113 
     | 
    
         
            -
            PRE_INSTALL = :
         
     | 
| 
       114 
     | 
    
         
            -
            POST_INSTALL = :
         
     | 
| 
       115 
     | 
    
         
            -
            NORMAL_UNINSTALL = :
         
     | 
| 
       116 
     | 
    
         
            -
            PRE_UNINSTALL = :
         
     | 
| 
       117 
     | 
    
         
            -
            POST_UNINSTALL = :
         
     | 
| 
       118 
     | 
    
         
            -
            build_triplet = @build@
         
     | 
| 
       119 
     | 
    
         
            -
            host_triplet = @host@
         
     | 
| 
       120 
     | 
    
         
            -
            subdir = .
         
     | 
| 
       121 
     | 
    
         
            -
            ACLOCAL_M4 = $(top_srcdir)/aclocal.m4
         
     | 
| 
       122 
     | 
    
         
            -
            am__aclocal_m4_deps = $(top_srcdir)/check_stdcxx_11.ac \
         
     | 
| 
       123 
     | 
    
         
            -
            	$(top_srcdir)/ruby.ac $(top_srcdir)/doxygen.ac \
         
     | 
| 
       124 
     | 
    
         
            -
            	$(top_srcdir)/configure.ac
         
     | 
| 
       125 
     | 
    
         
            -
            am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \
         
     | 
| 
       126 
     | 
    
         
            -
            	$(ACLOCAL_M4)
         
     | 
| 
       127 
     | 
    
         
            -
            DIST_COMMON = $(srcdir)/Makefile.am $(top_srcdir)/configure \
         
     | 
| 
       128 
     | 
    
         
            -
            	$(am__configure_deps) $(am__DIST_COMMON)
         
     | 
| 
       129 
     | 
    
         
            -
            am__CONFIG_DISTCLEAN_FILES = config.status config.cache config.log \
         
     | 
| 
       130 
     | 
    
         
            -
             configure.lineno config.status.lineno
         
     | 
| 
       131 
     | 
    
         
            -
            mkinstalldirs = $(install_sh) -d
         
     | 
| 
       132 
     | 
    
         
            -
            CONFIG_HEADER = $(top_builddir)/rice/config.hpp
         
     | 
| 
       133 
     | 
    
         
            -
            CONFIG_CLEAN_FILES = rice/detail/ruby_version_code.hpp
         
     | 
| 
       134 
     | 
    
         
            -
            CONFIG_CLEAN_VPATH_FILES =
         
     | 
| 
       135 
     | 
    
         
            -
            AM_V_P = $(am__v_P_@AM_V@)
         
     | 
| 
       136 
     | 
    
         
            -
            am__v_P_ = $(am__v_P_@AM_DEFAULT_V@)
         
     | 
| 
       137 
     | 
    
         
            -
            am__v_P_0 = false
         
     | 
| 
       138 
     | 
    
         
            -
            am__v_P_1 = :
         
     | 
| 
       139 
     | 
    
         
            -
            AM_V_GEN = $(am__v_GEN_@AM_V@)
         
     | 
| 
       140 
     | 
    
         
            -
            am__v_GEN_ = $(am__v_GEN_@AM_DEFAULT_V@)
         
     | 
| 
       141 
     | 
    
         
            -
            am__v_GEN_0 = @echo "  GEN     " $@;
         
     | 
| 
       142 
     | 
    
         
            -
            am__v_GEN_1 = 
         
     | 
| 
       143 
     | 
    
         
            -
            AM_V_at = $(am__v_at_@AM_V@)
         
     | 
| 
       144 
     | 
    
         
            -
            am__v_at_ = $(am__v_at_@AM_DEFAULT_V@)
         
     | 
| 
       145 
     | 
    
         
            -
            am__v_at_0 = @
         
     | 
| 
       146 
     | 
    
         
            -
            am__v_at_1 = 
         
     | 
| 
       147 
     | 
    
         
            -
            SOURCES =
         
     | 
| 
       148 
     | 
    
         
            -
            DIST_SOURCES =
         
     | 
| 
       149 
     | 
    
         
            -
            RECURSIVE_TARGETS = all-recursive check-recursive cscopelist-recursive \
         
     | 
| 
       150 
     | 
    
         
            -
            	ctags-recursive dvi-recursive html-recursive info-recursive \
         
     | 
| 
       151 
     | 
    
         
            -
            	install-data-recursive install-dvi-recursive \
         
     | 
| 
       152 
     | 
    
         
            -
            	install-exec-recursive install-html-recursive \
         
     | 
| 
       153 
     | 
    
         
            -
            	install-info-recursive install-pdf-recursive \
         
     | 
| 
       154 
     | 
    
         
            -
            	install-ps-recursive install-recursive installcheck-recursive \
         
     | 
| 
       155 
     | 
    
         
            -
            	installdirs-recursive pdf-recursive ps-recursive \
         
     | 
| 
       156 
     | 
    
         
            -
            	tags-recursive uninstall-recursive
         
     | 
| 
       157 
     | 
    
         
            -
            am__can_run_installinfo = \
         
     | 
| 
       158 
     | 
    
         
            -
              case $$AM_UPDATE_INFO_DIR in \
         
     | 
| 
       159 
     | 
    
         
            -
                n|no|NO) false;; \
         
     | 
| 
       160 
     | 
    
         
            -
                *) (install-info --version) >/dev/null 2>&1;; \
         
     | 
| 
       161 
     | 
    
         
            -
              esac
         
     | 
| 
       162 
     | 
    
         
            -
            RECURSIVE_CLEAN_TARGETS = mostlyclean-recursive clean-recursive	\
         
     | 
| 
       163 
     | 
    
         
            -
              distclean-recursive maintainer-clean-recursive
         
     | 
| 
       164 
     | 
    
         
            -
            am__recursive_targets = \
         
     | 
| 
       165 
     | 
    
         
            -
              $(RECURSIVE_TARGETS) \
         
     | 
| 
       166 
     | 
    
         
            -
              $(RECURSIVE_CLEAN_TARGETS) \
         
     | 
| 
       167 
     | 
    
         
            -
              $(am__extra_recursive_targets)
         
     | 
| 
       168 
     | 
    
         
            -
            AM_RECURSIVE_TARGETS = $(am__recursive_targets:-recursive=) TAGS CTAGS \
         
     | 
| 
       169 
     | 
    
         
            -
            	cscope distdir distdir-am dist dist-all distcheck
         
     | 
| 
       170 
     | 
    
         
            -
            am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) $(LISP)
         
     | 
| 
       171 
     | 
    
         
            -
            # Read a list of newline-separated strings from the standard input,
         
     | 
| 
       172 
     | 
    
         
            -
            # and print each of them once, without duplicates.  Input order is
         
     | 
| 
       173 
     | 
    
         
            -
            # *not* preserved.
         
     | 
| 
       174 
     | 
    
         
            -
            am__uniquify_input = $(AWK) '\
         
     | 
| 
       175 
     | 
    
         
            -
              BEGIN { nonempty = 0; } \
         
     | 
| 
       176 
     | 
    
         
            -
              { items[$$0] = 1; nonempty = 1; } \
         
     | 
| 
       177 
     | 
    
         
            -
              END { if (nonempty) { for (i in items) print i; }; } \
         
     | 
| 
       178 
     | 
    
         
            -
            '
         
     | 
| 
       179 
     | 
    
         
            -
            # Make sure the list of sources is unique.  This is necessary because,
         
     | 
| 
       180 
     | 
    
         
            -
            # e.g., the same source file might be shared among _SOURCES variables
         
     | 
| 
       181 
     | 
    
         
            -
            # for different programs/libraries.
         
     | 
| 
       182 
     | 
    
         
            -
            am__define_uniq_tagged_files = \
         
     | 
| 
       183 
     | 
    
         
            -
              list='$(am__tagged_files)'; \
         
     | 
| 
       184 
     | 
    
         
            -
              unique=`for i in $$list; do \
         
     | 
| 
       185 
     | 
    
         
            -
                if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
         
     | 
| 
       186 
     | 
    
         
            -
              done | $(am__uniquify_input)`
         
     | 
| 
       187 
     | 
    
         
            -
            ETAGS = etags
         
     | 
| 
       188 
     | 
    
         
            -
            CTAGS = ctags
         
     | 
| 
       189 
     | 
    
         
            -
            CSCOPE = cscope
         
     | 
| 
       190 
     | 
    
         
            -
            DIST_SUBDIRS = $(SUBDIRS)
         
     | 
| 
       191 
     | 
    
         
            -
            am__DIST_COMMON = $(srcdir)/Makefile.in $(srcdir)/doxygen.am \
         
     | 
| 
       192 
     | 
    
         
            -
            	$(top_srcdir)/rice/detail/ruby_version_code.hpp.in COPYING \
         
     | 
| 
       193 
     | 
    
         
            -
            	TODO config.guess config.sub depcomp install-sh missing
         
     | 
| 
       194 
     | 
    
         
            -
            DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST)
         
     | 
| 
       195 
     | 
    
         
            -
            distdir = $(PACKAGE)-$(VERSION)
         
     | 
| 
       196 
     | 
    
         
            -
            top_distdir = "$(distdir)"
         
     | 
| 
       197 
     | 
    
         
            -
            am__remove_distdir = \
         
     | 
| 
       198 
     | 
    
         
            -
              if test -d "$(distdir)"; then \
         
     | 
| 
       199 
     | 
    
         
            -
                find "$(distdir)" -type d ! -perm -200 -exec chmod u+w {} ';' \
         
     | 
| 
       200 
     | 
    
         
            -
                  && rm -rf "$(distdir)" \
         
     | 
| 
       201 
     | 
    
         
            -
                  || { sleep 5 && rm -rf "$(distdir)"; }; \
         
     | 
| 
       202 
     | 
    
         
            -
              else :; fi
         
     | 
| 
       203 
     | 
    
         
            -
            am__post_remove_distdir = $(am__remove_distdir)
         
     | 
| 
       204 
     | 
    
         
            -
            am__relativize = \
         
     | 
| 
       205 
     | 
    
         
            -
              dir0=`pwd`; \
         
     | 
| 
       206 
     | 
    
         
            -
              sed_first='s,^\([^/]*\)/.*$$,\1,'; \
         
     | 
| 
       207 
     | 
    
         
            -
              sed_rest='s,^[^/]*/*,,'; \
         
     | 
| 
       208 
     | 
    
         
            -
              sed_last='s,^.*/\([^/]*\)$$,\1,'; \
         
     | 
| 
       209 
     | 
    
         
            -
              sed_butlast='s,/*[^/]*$$,,'; \
         
     | 
| 
       210 
     | 
    
         
            -
              while test -n "$$dir1"; do \
         
     | 
| 
       211 
     | 
    
         
            -
                first=`echo "$$dir1" | sed -e "$$sed_first"`; \
         
     | 
| 
       212 
     | 
    
         
            -
                if test "$$first" != "."; then \
         
     | 
| 
       213 
     | 
    
         
            -
                  if test "$$first" = ".."; then \
         
     | 
| 
       214 
     | 
    
         
            -
                    dir2=`echo "$$dir0" | sed -e "$$sed_last"`/"$$dir2"; \
         
     | 
| 
       215 
     | 
    
         
            -
                    dir0=`echo "$$dir0" | sed -e "$$sed_butlast"`; \
         
     | 
| 
       216 
     | 
    
         
            -
                  else \
         
     | 
| 
       217 
     | 
    
         
            -
                    first2=`echo "$$dir2" | sed -e "$$sed_first"`; \
         
     | 
| 
       218 
     | 
    
         
            -
                    if test "$$first2" = "$$first"; then \
         
     | 
| 
       219 
     | 
    
         
            -
                      dir2=`echo "$$dir2" | sed -e "$$sed_rest"`; \
         
     | 
| 
       220 
     | 
    
         
            -
                    else \
         
     | 
| 
       221 
     | 
    
         
            -
                      dir2="../$$dir2"; \
         
     | 
| 
       222 
     | 
    
         
            -
                    fi; \
         
     | 
| 
       223 
     | 
    
         
            -
                    dir0="$$dir0"/"$$first"; \
         
     | 
| 
       224 
     | 
    
         
            -
                  fi; \
         
     | 
| 
       225 
     | 
    
         
            -
                fi; \
         
     | 
| 
       226 
     | 
    
         
            -
                dir1=`echo "$$dir1" | sed -e "$$sed_rest"`; \
         
     | 
| 
       227 
     | 
    
         
            -
              done; \
         
     | 
| 
       228 
     | 
    
         
            -
              reldir="$$dir2"
         
     | 
| 
       229 
     | 
    
         
            -
            DIST_ARCHIVES = "$(distdir)".tar.gz
         
     | 
| 
       230 
     | 
    
         
            -
            GZIP_ENV = --best
         
     | 
| 
       231 
     | 
    
         
            -
            DIST_TARGETS = dist-gzip
         
     | 
| 
       232 
     | 
    
         
            -
            distuninstallcheck_listfiles = find . -type f -print
         
     | 
| 
       233 
     | 
    
         
            -
            am__distuninstallcheck_listfiles = $(distuninstallcheck_listfiles) \
         
     | 
| 
       234 
     | 
    
         
            -
              | sed 's|^\./|$(prefix)/|' | grep -v '$(infodir)/dir$$'
         
     | 
| 
       235 
     | 
    
         
            -
            distcleancheck_listfiles = find . -type f -print
         
     | 
| 
       236 
     | 
    
         
            -
            ACLOCAL = @ACLOCAL@
         
     | 
| 
       237 
     | 
    
         
            -
            AMTAR = @AMTAR@
         
     | 
| 
       238 
     | 
    
         
            -
            AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@
         
     | 
| 
       239 
     | 
    
         
            -
            AUTOCONF = @AUTOCONF@
         
     | 
| 
       240 
     | 
    
         
            -
            AUTOHEADER = @AUTOHEADER@
         
     | 
| 
       241 
     | 
    
         
            -
            AUTOMAKE = @AUTOMAKE@
         
     | 
| 
       242 
     | 
    
         
            -
            AWK = @AWK@
         
     | 
| 
       243 
     | 
    
         
            -
            CPPFLAGS = @CPPFLAGS@
         
     | 
| 
       244 
     | 
    
         
            -
            CXX = @CXX@
         
     | 
| 
       245 
     | 
    
         
            -
            CXXDEPMODE = @CXXDEPMODE@
         
     | 
| 
       246 
     | 
    
         
            -
            CXXFLAGS = @CXXFLAGS@
         
     | 
| 
       247 
     | 
    
         
            -
            CYGPATH_W = @CYGPATH_W@
         
     | 
| 
       248 
     | 
    
         
            -
            DEFS = @DEFS@
         
     | 
| 
       249 
     | 
    
         
            -
            DEPDIR = @DEPDIR@
         
     | 
| 
       250 
     | 
    
         
            -
            DOXYGEN_PAPER_SIZE = @DOXYGEN_PAPER_SIZE@
         
     | 
| 
       251 
     | 
    
         
            -
            DX_CONFIG = @DX_CONFIG@
         
     | 
| 
       252 
     | 
    
         
            -
            DX_DOCDIR = @DX_DOCDIR@
         
     | 
| 
       253 
     | 
    
         
            -
            DX_DOT = @DX_DOT@
         
     | 
| 
       254 
     | 
    
         
            -
            DX_DOXYGEN = @DX_DOXYGEN@
         
     | 
| 
       255 
     | 
    
         
            -
            DX_DVIPS = @DX_DVIPS@
         
     | 
| 
       256 
     | 
    
         
            -
            DX_EGREP = @DX_EGREP@
         
     | 
| 
       257 
     | 
    
         
            -
            DX_ENV = @DX_ENV@
         
     | 
| 
       258 
     | 
    
         
            -
            DX_FLAG_chi = @DX_FLAG_chi@
         
     | 
| 
       259 
     | 
    
         
            -
            DX_FLAG_chm = @DX_FLAG_chm@
         
     | 
| 
       260 
     | 
    
         
            -
            DX_FLAG_doc = @DX_FLAG_doc@
         
     | 
| 
       261 
     | 
    
         
            -
            DX_FLAG_dot = @DX_FLAG_dot@
         
     | 
| 
       262 
     | 
    
         
            -
            DX_FLAG_html = @DX_FLAG_html@
         
     | 
| 
       263 
     | 
    
         
            -
            DX_FLAG_man = @DX_FLAG_man@
         
     | 
| 
       264 
     | 
    
         
            -
            DX_FLAG_pdf = @DX_FLAG_pdf@
         
     | 
| 
       265 
     | 
    
         
            -
            DX_FLAG_ps = @DX_FLAG_ps@
         
     | 
| 
       266 
     | 
    
         
            -
            DX_FLAG_rtf = @DX_FLAG_rtf@
         
     | 
| 
       267 
     | 
    
         
            -
            DX_FLAG_xml = @DX_FLAG_xml@
         
     | 
| 
       268 
     | 
    
         
            -
            DX_HHC = @DX_HHC@
         
     | 
| 
       269 
     | 
    
         
            -
            DX_LATEX = @DX_LATEX@
         
     | 
| 
       270 
     | 
    
         
            -
            DX_MAKEINDEX = @DX_MAKEINDEX@
         
     | 
| 
       271 
     | 
    
         
            -
            DX_PDFLATEX = @DX_PDFLATEX@
         
     | 
| 
       272 
     | 
    
         
            -
            DX_PERL = @DX_PERL@
         
     | 
| 
       273 
     | 
    
         
            -
            DX_PROJECT = @DX_PROJECT@
         
     | 
| 
       274 
     | 
    
         
            -
            ECHO_C = @ECHO_C@
         
     | 
| 
       275 
     | 
    
         
            -
            ECHO_N = @ECHO_N@
         
     | 
| 
       276 
     | 
    
         
            -
            ECHO_T = @ECHO_T@
         
     | 
| 
       277 
     | 
    
         
            -
            EXEEXT = @EXEEXT@
         
     | 
| 
       278 
     | 
    
         
            -
            HAVE_CXX11 = @HAVE_CXX11@
         
     | 
| 
       279 
     | 
    
         
            -
            INSTALL = @INSTALL@
         
     | 
| 
       280 
     | 
    
         
            -
            INSTALL_DATA = @INSTALL_DATA@
         
     | 
| 
       281 
     | 
    
         
            -
            INSTALL_PROGRAM = @INSTALL_PROGRAM@
         
     | 
| 
       282 
     | 
    
         
            -
            INSTALL_SCRIPT = @INSTALL_SCRIPT@
         
     | 
| 
       283 
     | 
    
         
            -
            INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@
         
     | 
| 
       284 
     | 
    
         
            -
            LDFLAGS = @LDFLAGS@
         
     | 
| 
       285 
     | 
    
         
            -
            LIBOBJS = @LIBOBJS@
         
     | 
| 
       286 
     | 
    
         
            -
            LIBS = @LIBS@
         
     | 
| 
       287 
     | 
    
         
            -
            LTLIBOBJS = @LTLIBOBJS@
         
     | 
| 
       288 
     | 
    
         
            -
            MAKEINFO = @MAKEINFO@
         
     | 
| 
       289 
     | 
    
         
            -
            MKDIR_P = @MKDIR_P@
         
     | 
| 
       290 
     | 
    
         
            -
            OBJEXT = @OBJEXT@
         
     | 
| 
       291 
     | 
    
         
            -
            PACKAGE = @PACKAGE@
         
     | 
| 
       292 
     | 
    
         
            -
            PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@
         
     | 
| 
       293 
     | 
    
         
            -
            PACKAGE_NAME = @PACKAGE_NAME@
         
     | 
| 
       294 
     | 
    
         
            -
            PACKAGE_STRING = @PACKAGE_STRING@
         
     | 
| 
       295 
     | 
    
         
            -
            PACKAGE_TARNAME = @PACKAGE_TARNAME@
         
     | 
| 
       296 
     | 
    
         
            -
            PACKAGE_URL = @PACKAGE_URL@
         
     | 
| 
       297 
     | 
    
         
            -
            PACKAGE_VERSION = @PACKAGE_VERSION@
         
     | 
| 
       298 
     | 
    
         
            -
            PATH_SEPARATOR = @PATH_SEPARATOR@
         
     | 
| 
       299 
     | 
    
         
            -
            RANLIB = @RANLIB@
         
     | 
| 
       300 
     | 
    
         
            -
            RICE_CPPFLAGS = @RICE_CPPFLAGS@
         
     | 
| 
       301 
     | 
    
         
            -
            RICE_LDFLAGS = @RICE_LDFLAGS@
         
     | 
| 
       302 
     | 
    
         
            -
            RICE_ROOT = @RICE_ROOT@
         
     | 
| 
       303 
     | 
    
         
            -
            RICE_SAMPLES = @RICE_SAMPLES@
         
     | 
| 
       304 
     | 
    
         
            -
            RICE_USING_MINGW32 = @RICE_USING_MINGW32@
         
     | 
| 
       305 
     | 
    
         
            -
            RUBY = @RUBY@
         
     | 
| 
       306 
     | 
    
         
            -
            RUBY_CFLAGS = @RUBY_CFLAGS@
         
     | 
| 
       307 
     | 
    
         
            -
            RUBY_CPPFLAGS = @RUBY_CPPFLAGS@
         
     | 
| 
       308 
     | 
    
         
            -
            RUBY_CXXFLAGS = @RUBY_CXXFLAGS@
         
     | 
| 
       309 
     | 
    
         
            -
            RUBY_LDFLAGS = @RUBY_LDFLAGS@
         
     | 
| 
       310 
     | 
    
         
            -
            RUBY_LIBRUBYARG = @RUBY_LIBRUBYARG@
         
     | 
| 
       311 
     | 
    
         
            -
            RUBY_LIBRUBYARG_STATIC = @RUBY_LIBRUBYARG_STATIC@
         
     | 
| 
       312 
     | 
    
         
            -
            RUBY_LIBS = @RUBY_LIBS@
         
     | 
| 
       313 
     | 
    
         
            -
            RUBY_SITELIBDIR = @RUBY_SITELIBDIR@
         
     | 
| 
       314 
     | 
    
         
            -
            RUBY_VERSION_CODE = @RUBY_VERSION_CODE@
         
     | 
| 
       315 
     | 
    
         
            -
            SET_MAKE = @SET_MAKE@
         
     | 
| 
       316 
     | 
    
         
            -
            SHELL = @SHELL@
         
     | 
| 
       317 
     | 
    
         
            -
            STRIP = @STRIP@
         
     | 
| 
       318 
     | 
    
         
            -
            VERSION = @VERSION@
         
     | 
| 
       319 
     | 
    
         
            -
            abs_builddir = @abs_builddir@
         
     | 
| 
       320 
     | 
    
         
            -
            abs_srcdir = @abs_srcdir@
         
     | 
| 
       321 
     | 
    
         
            -
            abs_top_builddir = @abs_top_builddir@
         
     | 
| 
       322 
     | 
    
         
            -
            abs_top_srcdir = @abs_top_srcdir@
         
     | 
| 
       323 
     | 
    
         
            -
            ac_ct_CXX = @ac_ct_CXX@
         
     | 
| 
       324 
     | 
    
         
            -
            am__include = @am__include@
         
     | 
| 
       325 
     | 
    
         
            -
            am__leading_dot = @am__leading_dot@
         
     | 
| 
       326 
     | 
    
         
            -
            am__quote = @am__quote@
         
     | 
| 
       327 
     | 
    
         
            -
            am__tar = @am__tar@
         
     | 
| 
       328 
     | 
    
         
            -
            am__untar = @am__untar@
         
     | 
| 
       329 
     | 
    
         
            -
            bindir = @bindir@
         
     | 
| 
       330 
     | 
    
         
            -
            build = @build@
         
     | 
| 
       331 
     | 
    
         
            -
            build_alias = @build_alias@
         
     | 
| 
       332 
     | 
    
         
            -
            build_cpu = @build_cpu@
         
     | 
| 
       333 
     | 
    
         
            -
            build_os = @build_os@
         
     | 
| 
       334 
     | 
    
         
            -
            build_vendor = @build_vendor@
         
     | 
| 
       335 
     | 
    
         
            -
            builddir = @builddir@
         
     | 
| 
       336 
     | 
    
         
            -
            datadir = @datadir@
         
     | 
| 
       337 
     | 
    
         
            -
            datarootdir = @datarootdir@
         
     | 
| 
       338 
     | 
    
         
            -
            docdir = @docdir@
         
     | 
| 
       339 
     | 
    
         
            -
            dvidir = @dvidir@
         
     | 
| 
       340 
     | 
    
         
            -
            exec_prefix = @exec_prefix@
         
     | 
| 
       341 
     | 
    
         
            -
            host = @host@
         
     | 
| 
       342 
     | 
    
         
            -
            host_alias = @host_alias@
         
     | 
| 
       343 
     | 
    
         
            -
            host_cpu = @host_cpu@
         
     | 
| 
       344 
     | 
    
         
            -
            host_os = @host_os@
         
     | 
| 
       345 
     | 
    
         
            -
            host_vendor = @host_vendor@
         
     | 
| 
       346 
     | 
    
         
            -
            htmldir = @htmldir@
         
     | 
| 
       347 
     | 
    
         
            -
            includedir = @includedir@
         
     | 
| 
       348 
     | 
    
         
            -
            infodir = @infodir@
         
     | 
| 
       349 
     | 
    
         
            -
            install_sh = @install_sh@
         
     | 
| 
       350 
     | 
    
         
            -
            libdir = @libdir@
         
     | 
| 
       351 
     | 
    
         
            -
            libexecdir = @libexecdir@
         
     | 
| 
       352 
     | 
    
         
            -
            localedir = @localedir@
         
     | 
| 
       353 
     | 
    
         
            -
            localstatedir = @localstatedir@
         
     | 
| 
       354 
     | 
    
         
            -
            mandir = @mandir@
         
     | 
| 
       355 
     | 
    
         
            -
            mkdir_p = @mkdir_p@
         
     | 
| 
       356 
     | 
    
         
            -
            oldincludedir = @oldincludedir@
         
     | 
| 
       357 
     | 
    
         
            -
            pdfdir = @pdfdir@
         
     | 
| 
       358 
     | 
    
         
            -
            prefix = @prefix@
         
     | 
| 
       359 
     | 
    
         
            -
            program_transform_name = @program_transform_name@
         
     | 
| 
       360 
     | 
    
         
            -
            psdir = @psdir@
         
     | 
| 
       361 
     | 
    
         
            -
            sbindir = @sbindir@
         
     | 
| 
       362 
     | 
    
         
            -
            sharedstatedir = @sharedstatedir@
         
     | 
| 
       363 
     | 
    
         
            -
            srcdir = @srcdir@
         
     | 
| 
       364 
     | 
    
         
            -
            sysconfdir = @sysconfdir@
         
     | 
| 
       365 
     | 
    
         
            -
            target_alias = @target_alias@
         
     | 
| 
       366 
     | 
    
         
            -
            top_build_prefix = @top_build_prefix@
         
     | 
| 
       367 
     | 
    
         
            -
            top_builddir = @top_builddir@
         
     | 
| 
       368 
     | 
    
         
            -
            top_srcdir = @top_srcdir@
         
     | 
| 
       369 
     | 
    
         
            -
            AUTOMAKE_OPTIONS = foreign 1.5
         
     | 
| 
       370 
     | 
    
         
            -
            SUBDIRS = rice test sample ruby
         
     | 
| 
       371 
     | 
    
         
            -
            @DX_COND_doc_TRUE@@DX_COND_html_TRUE@DX_CLEAN_HTML = @DX_DOCDIR@/html
         
     | 
| 
       372 
     | 
    
         
            -
            @DX_COND_chm_TRUE@@DX_COND_doc_TRUE@DX_CLEAN_CHM = @DX_DOCDIR@/chm
         
     | 
| 
       373 
     | 
    
         
            -
            @DX_COND_chi_TRUE@@DX_COND_chm_TRUE@@DX_COND_doc_TRUE@DX_CLEAN_CHI = @DX_DOCDIR@/@PACKAGE@.chi
         
     | 
| 
       374 
     | 
    
         
            -
            @DX_COND_doc_TRUE@@DX_COND_man_TRUE@DX_CLEAN_MAN = @DX_DOCDIR@/man
         
     | 
| 
       375 
     | 
    
         
            -
            @DX_COND_doc_TRUE@@DX_COND_rtf_TRUE@DX_CLEAN_RTF = @DX_DOCDIR@/rtf
         
     | 
| 
       376 
     | 
    
         
            -
            @DX_COND_doc_TRUE@@DX_COND_xml_TRUE@DX_CLEAN_XML = @DX_DOCDIR@/xml
         
     | 
| 
       377 
     | 
    
         
            -
            @DX_COND_doc_TRUE@@DX_COND_ps_TRUE@DX_CLEAN_PS = @DX_DOCDIR@/@PACKAGE@.ps
         
     | 
| 
       378 
     | 
    
         
            -
            @DX_COND_doc_TRUE@@DX_COND_ps_TRUE@DX_PS_GOAL = doxygen-ps
         
     | 
| 
       379 
     | 
    
         
            -
            @DX_COND_doc_TRUE@@DX_COND_pdf_TRUE@DX_CLEAN_PDF = @DX_DOCDIR@/@PACKAGE@.pdf
         
     | 
| 
       380 
     | 
    
         
            -
            @DX_COND_doc_TRUE@@DX_COND_pdf_TRUE@DX_PDF_GOAL = doxygen-pdf
         
     | 
| 
       381 
     | 
    
         
            -
            @DX_COND_doc_TRUE@@DX_COND_latex_TRUE@DX_CLEAN_LATEX = @DX_DOCDIR@/latex
         
     | 
| 
       382 
     | 
    
         
            -
            @DX_COND_doc_TRUE@DX_CLEANFILES = \
         
     | 
| 
       383 
     | 
    
         
            -
            @DX_COND_doc_TRUE@    @DX_DOCDIR@/@PACKAGE@.tag \
         
     | 
| 
       384 
     | 
    
         
            -
            @DX_COND_doc_TRUE@    -r \
         
     | 
| 
       385 
     | 
    
         
            -
            @DX_COND_doc_TRUE@    $(DX_CLEAN_HTML) \
         
     | 
| 
       386 
     | 
    
         
            -
            @DX_COND_doc_TRUE@    $(DX_CLEAN_CHM) \
         
     | 
| 
       387 
     | 
    
         
            -
            @DX_COND_doc_TRUE@    $(DX_CLEAN_CHI) \
         
     | 
| 
       388 
     | 
    
         
            -
            @DX_COND_doc_TRUE@    $(DX_CLEAN_MAN) \
         
     | 
| 
       389 
     | 
    
         
            -
            @DX_COND_doc_TRUE@    $(DX_CLEAN_RTF) \
         
     | 
| 
       390 
     | 
    
         
            -
            @DX_COND_doc_TRUE@    $(DX_CLEAN_XML) \
         
     | 
| 
       391 
     | 
    
         
            -
            @DX_COND_doc_TRUE@    $(DX_CLEAN_PS) \
         
     | 
| 
       392 
     | 
    
         
            -
            @DX_COND_doc_TRUE@    $(DX_CLEAN_PDF) \
         
     | 
| 
       393 
     | 
    
         
            -
            @DX_COND_doc_TRUE@    $(DX_CLEAN_LATEX)
         
     | 
| 
       394 
     | 
    
         
            -
             
     | 
| 
       395 
     | 
    
         
            -
            noinst_EXTRA = rice/README.doxygen
         
     | 
| 
       396 
     | 
    
         
            -
            DX_EXTRA_DEPEND = rice/README.doxygen
         
     | 
| 
       397 
     | 
    
         
            -
            EXTRA_DIST = \
         
     | 
| 
       398 
     | 
    
         
            -
            	README.mingw \
         
     | 
| 
       399 
     | 
    
         
            -
            	post-autoconf.rb \
         
     | 
| 
       400 
     | 
    
         
            -
            	post-automake.rb \
         
     | 
| 
       401 
     | 
    
         
            -
            	bootstrap \
         
     | 
| 
       402 
     | 
    
         
            -
            	Doxyfile \
         
     | 
| 
       403 
     | 
    
         
            -
            	ruby.ac \
         
     | 
| 
       404 
     | 
    
         
            -
            	doxygen.ac \
         
     | 
| 
       405 
     | 
    
         
            -
            	doxygen.am \
         
     | 
| 
       406 
     | 
    
         
            -
            	doc
         
     | 
| 
       407 
     | 
    
         
            -
             
     | 
| 
       408 
     | 
    
         
            -
            all: all-recursive
         
     | 
| 
       409 
     | 
    
         
            -
             
     | 
| 
       410 
     | 
    
         
            -
            .SUFFIXES:
         
     | 
| 
       411 
     | 
    
         
            -
            am--refresh: Makefile
         
     | 
| 
       412 
     | 
    
         
            -
            	@:
         
     | 
| 
       413 
     | 
    
         
            -
            $(srcdir)/Makefile.in:  $(srcdir)/Makefile.am $(srcdir)/doxygen.am $(am__configure_deps)
         
     | 
| 
       414 
     | 
    
         
            -
            	@for dep in $?; do \
         
     | 
| 
       415 
     | 
    
         
            -
            	  case '$(am__configure_deps)' in \
         
     | 
| 
       416 
     | 
    
         
            -
            	    *$$dep*) \
         
     | 
| 
       417 
     | 
    
         
            -
            	      echo ' cd $(srcdir) && $(AUTOMAKE) --foreign'; \
         
     | 
| 
       418 
     | 
    
         
            -
            	      $(am__cd) $(srcdir) && $(AUTOMAKE) --foreign \
         
     | 
| 
       419 
     | 
    
         
            -
            		&& exit 0; \
         
     | 
| 
       420 
     | 
    
         
            -
            	      exit 1;; \
         
     | 
| 
       421 
     | 
    
         
            -
            	  esac; \
         
     | 
| 
       422 
     | 
    
         
            -
            	done; \
         
     | 
| 
       423 
     | 
    
         
            -
            	echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign Makefile'; \
         
     | 
| 
       424 
     | 
    
         
            -
            	$(am__cd) $(top_srcdir) && \
         
     | 
| 
       425 
     | 
    
         
            -
            	  $(AUTOMAKE) --foreign Makefile
         
     | 
| 
       426 
     | 
    
         
            -
            Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
         
     | 
| 
       427 
     | 
    
         
            -
            	@case '$?' in \
         
     | 
| 
       428 
     | 
    
         
            -
            	  *config.status*) \
         
     | 
| 
       429 
     | 
    
         
            -
            	    echo ' $(SHELL) ./config.status'; \
         
     | 
| 
       430 
     | 
    
         
            -
            	    $(SHELL) ./config.status;; \
         
     | 
| 
       431 
     | 
    
         
            -
            	  *) \
         
     | 
| 
       432 
     | 
    
         
            -
            	    echo ' cd $(top_builddir) && $(SHELL) ./config.status $@ $(am__maybe_remake_depfiles)'; \
         
     | 
| 
       433 
     | 
    
         
            -
            	    cd $(top_builddir) && $(SHELL) ./config.status $@ $(am__maybe_remake_depfiles);; \
         
     | 
| 
       434 
     | 
    
         
            -
            	esac;
         
     | 
| 
       435 
     | 
    
         
            -
            $(srcdir)/doxygen.am $(am__empty):
         
     | 
| 
       436 
     | 
    
         
            -
             
     | 
| 
       437 
     | 
    
         
            -
            $(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES)
         
     | 
| 
       438 
     | 
    
         
            -
            	$(SHELL) ./config.status --recheck
         
     | 
| 
       439 
     | 
    
         
            -
             
     | 
| 
       440 
     | 
    
         
            -
            $(top_srcdir)/configure:  $(am__configure_deps)
         
     | 
| 
       441 
     | 
    
         
            -
            	$(am__cd) $(srcdir) && $(AUTOCONF)
         
     | 
| 
       442 
     | 
    
         
            -
            $(ACLOCAL_M4):  $(am__aclocal_m4_deps)
         
     | 
| 
       443 
     | 
    
         
            -
            	$(am__cd) $(srcdir) && $(ACLOCAL) $(ACLOCAL_AMFLAGS)
         
     | 
| 
       444 
     | 
    
         
            -
            $(am__aclocal_m4_deps):
         
     | 
| 
       445 
     | 
    
         
            -
            rice/detail/ruby_version_code.hpp: $(top_builddir)/config.status $(top_srcdir)/rice/detail/ruby_version_code.hpp.in
         
     | 
| 
       446 
     | 
    
         
            -
            	cd $(top_builddir) && $(SHELL) ./config.status $@
         
     | 
| 
       447 
     | 
    
         
            -
             
     | 
| 
       448 
     | 
    
         
            -
            # This directory's subdirectories are mostly independent; you can cd
         
     | 
| 
       449 
     | 
    
         
            -
            # into them and run 'make' without going through this Makefile.
         
     | 
| 
       450 
     | 
    
         
            -
            # To change the values of 'make' variables: instead of editing Makefiles,
         
     | 
| 
       451 
     | 
    
         
            -
            # (1) if the variable is set in 'config.status', edit 'config.status'
         
     | 
| 
       452 
     | 
    
         
            -
            #     (which will cause the Makefiles to be regenerated when you run 'make');
         
     | 
| 
       453 
     | 
    
         
            -
            # (2) otherwise, pass the desired values on the 'make' command line.
         
     | 
| 
       454 
     | 
    
         
            -
            $(am__recursive_targets):
         
     | 
| 
       455 
     | 
    
         
            -
            	@fail=; \
         
     | 
| 
       456 
     | 
    
         
            -
            	if $(am__make_keepgoing); then \
         
     | 
| 
       457 
     | 
    
         
            -
            	  failcom='fail=yes'; \
         
     | 
| 
       458 
     | 
    
         
            -
            	else \
         
     | 
| 
       459 
     | 
    
         
            -
            	  failcom='exit 1'; \
         
     | 
| 
       460 
     | 
    
         
            -
            	fi; \
         
     | 
| 
       461 
     | 
    
         
            -
            	dot_seen=no; \
         
     | 
| 
       462 
     | 
    
         
            -
            	target=`echo $@ | sed s/-recursive//`; \
         
     | 
| 
       463 
     | 
    
         
            -
            	case "$@" in \
         
     | 
| 
       464 
     | 
    
         
            -
            	  distclean-* | maintainer-clean-*) list='$(DIST_SUBDIRS)' ;; \
         
     | 
| 
       465 
     | 
    
         
            -
            	  *) list='$(SUBDIRS)' ;; \
         
     | 
| 
       466 
     | 
    
         
            -
            	esac; \
         
     | 
| 
       467 
     | 
    
         
            -
            	for subdir in $$list; do \
         
     | 
| 
       468 
     | 
    
         
            -
            	  echo "Making $$target in $$subdir"; \
         
     | 
| 
       469 
     | 
    
         
            -
            	  if test "$$subdir" = "."; then \
         
     | 
| 
       470 
     | 
    
         
            -
            	    dot_seen=yes; \
         
     | 
| 
       471 
     | 
    
         
            -
            	    local_target="$$target-am"; \
         
     | 
| 
       472 
     | 
    
         
            -
            	  else \
         
     | 
| 
       473 
     | 
    
         
            -
            	    local_target="$$target"; \
         
     | 
| 
       474 
     | 
    
         
            -
            	  fi; \
         
     | 
| 
       475 
     | 
    
         
            -
            	  ($(am__cd) $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$local_target) \
         
     | 
| 
       476 
     | 
    
         
            -
            	  || eval $$failcom; \
         
     | 
| 
       477 
     | 
    
         
            -
            	done; \
         
     | 
| 
       478 
     | 
    
         
            -
            	if test "$$dot_seen" = "no"; then \
         
     | 
| 
       479 
     | 
    
         
            -
            	  $(MAKE) $(AM_MAKEFLAGS) "$$target-am" || exit 1; \
         
     | 
| 
       480 
     | 
    
         
            -
            	fi; test -z "$$fail"
         
     | 
| 
       481 
     | 
    
         
            -
             
     | 
| 
       482 
     | 
    
         
            -
            ID: $(am__tagged_files)
         
     | 
| 
       483 
     | 
    
         
            -
            	$(am__define_uniq_tagged_files); mkid -fID $$unique
         
     | 
| 
       484 
     | 
    
         
            -
            tags: tags-recursive
         
     | 
| 
       485 
     | 
    
         
            -
            TAGS: tags
         
     | 
| 
       486 
     | 
    
         
            -
             
     | 
| 
       487 
     | 
    
         
            -
            tags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files)
         
     | 
| 
       488 
     | 
    
         
            -
            	set x; \
         
     | 
| 
       489 
     | 
    
         
            -
            	here=`pwd`; \
         
     | 
| 
       490 
     | 
    
         
            -
            	if ($(ETAGS) --etags-include --version) >/dev/null 2>&1; then \
         
     | 
| 
       491 
     | 
    
         
            -
            	  include_option=--etags-include; \
         
     | 
| 
       492 
     | 
    
         
            -
            	  empty_fix=.; \
         
     | 
| 
       493 
     | 
    
         
            -
            	else \
         
     | 
| 
       494 
     | 
    
         
            -
            	  include_option=--include; \
         
     | 
| 
       495 
     | 
    
         
            -
            	  empty_fix=; \
         
     | 
| 
       496 
     | 
    
         
            -
            	fi; \
         
     | 
| 
       497 
     | 
    
         
            -
            	list='$(SUBDIRS)'; for subdir in $$list; do \
         
     | 
| 
       498 
     | 
    
         
            -
            	  if test "$$subdir" = .; then :; else \
         
     | 
| 
       499 
     | 
    
         
            -
            	    test ! -f $$subdir/TAGS || \
         
     | 
| 
       500 
     | 
    
         
            -
            	      set "$$@" "$$include_option=$$here/$$subdir/TAGS"; \
         
     | 
| 
       501 
     | 
    
         
            -
            	  fi; \
         
     | 
| 
       502 
     | 
    
         
            -
            	done; \
         
     | 
| 
       503 
     | 
    
         
            -
            	$(am__define_uniq_tagged_files); \
         
     | 
| 
       504 
     | 
    
         
            -
            	shift; \
         
     | 
| 
       505 
     | 
    
         
            -
            	if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \
         
     | 
| 
       506 
     | 
    
         
            -
            	  test -n "$$unique" || unique=$$empty_fix; \
         
     | 
| 
       507 
     | 
    
         
            -
            	  if test $$# -gt 0; then \
         
     | 
| 
       508 
     | 
    
         
            -
            	    $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \
         
     | 
| 
       509 
     | 
    
         
            -
            	      "$$@" $$unique; \
         
     | 
| 
       510 
     | 
    
         
            -
            	  else \
         
     | 
| 
       511 
     | 
    
         
            -
            	    $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \
         
     | 
| 
       512 
     | 
    
         
            -
            	      $$unique; \
         
     | 
| 
       513 
     | 
    
         
            -
            	  fi; \
         
     | 
| 
       514 
     | 
    
         
            -
            	fi
         
     | 
| 
       515 
     | 
    
         
            -
            ctags: ctags-recursive
         
     | 
| 
       516 
     | 
    
         
            -
             
     | 
| 
       517 
     | 
    
         
            -
            CTAGS: ctags
         
     | 
| 
       518 
     | 
    
         
            -
            ctags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files)
         
     | 
| 
       519 
     | 
    
         
            -
            	$(am__define_uniq_tagged_files); \
         
     | 
| 
       520 
     | 
    
         
            -
            	test -z "$(CTAGS_ARGS)$$unique" \
         
     | 
| 
       521 
     | 
    
         
            -
            	  || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \
         
     | 
| 
       522 
     | 
    
         
            -
            	     $$unique
         
     | 
| 
       523 
     | 
    
         
            -
             
     | 
| 
       524 
     | 
    
         
            -
            GTAGS:
         
     | 
| 
       525 
     | 
    
         
            -
            	here=`$(am__cd) $(top_builddir) && pwd` \
         
     | 
| 
       526 
     | 
    
         
            -
            	  && $(am__cd) $(top_srcdir) \
         
     | 
| 
       527 
     | 
    
         
            -
            	  && gtags -i $(GTAGS_ARGS) "$$here"
         
     | 
| 
       528 
     | 
    
         
            -
            cscope: cscope.files
         
     | 
| 
       529 
     | 
    
         
            -
            	test ! -s cscope.files \
         
     | 
| 
       530 
     | 
    
         
            -
            	  || $(CSCOPE) -b -q $(AM_CSCOPEFLAGS) $(CSCOPEFLAGS) -i cscope.files $(CSCOPE_ARGS)
         
     | 
| 
       531 
     | 
    
         
            -
            clean-cscope:
         
     | 
| 
       532 
     | 
    
         
            -
            	-rm -f cscope.files
         
     | 
| 
       533 
     | 
    
         
            -
            cscope.files: clean-cscope cscopelist
         
     | 
| 
       534 
     | 
    
         
            -
            cscopelist: cscopelist-recursive
         
     | 
| 
       535 
     | 
    
         
            -
             
     | 
| 
       536 
     | 
    
         
            -
            cscopelist-am: $(am__tagged_files)
         
     | 
| 
       537 
     | 
    
         
            -
            	list='$(am__tagged_files)'; \
         
     | 
| 
       538 
     | 
    
         
            -
            	case "$(srcdir)" in \
         
     | 
| 
       539 
     | 
    
         
            -
            	  [\\/]* | ?:[\\/]*) sdir="$(srcdir)" ;; \
         
     | 
| 
       540 
     | 
    
         
            -
            	  *) sdir=$(subdir)/$(srcdir) ;; \
         
     | 
| 
       541 
     | 
    
         
            -
            	esac; \
         
     | 
| 
       542 
     | 
    
         
            -
            	for i in $$list; do \
         
     | 
| 
       543 
     | 
    
         
            -
            	  if test -f "$$i"; then \
         
     | 
| 
       544 
     | 
    
         
            -
            	    echo "$(subdir)/$$i"; \
         
     | 
| 
       545 
     | 
    
         
            -
            	  else \
         
     | 
| 
       546 
     | 
    
         
            -
            	    echo "$$sdir/$$i"; \
         
     | 
| 
       547 
     | 
    
         
            -
            	  fi; \
         
     | 
| 
       548 
     | 
    
         
            -
            	done >> $(top_builddir)/cscope.files
         
     | 
| 
       549 
     | 
    
         
            -
             
     | 
| 
       550 
     | 
    
         
            -
            distclean-tags:
         
     | 
| 
       551 
     | 
    
         
            -
            	-rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags
         
     | 
| 
       552 
     | 
    
         
            -
            	-rm -f cscope.out cscope.in.out cscope.po.out cscope.files
         
     | 
| 
       553 
     | 
    
         
            -
             
     | 
| 
       554 
     | 
    
         
            -
            distdir: $(BUILT_SOURCES)
         
     | 
| 
       555 
     | 
    
         
            -
            	$(MAKE) $(AM_MAKEFLAGS) distdir-am
         
     | 
| 
       556 
     | 
    
         
            -
             
     | 
| 
       557 
     | 
    
         
            -
            distdir-am: $(DISTFILES)
         
     | 
| 
       558 
     | 
    
         
            -
            	$(am__remove_distdir)
         
     | 
| 
       559 
     | 
    
         
            -
            	test -d "$(distdir)" || mkdir "$(distdir)"
         
     | 
| 
       560 
     | 
    
         
            -
            	@srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
         
     | 
| 
       561 
     | 
    
         
            -
            	topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
         
     | 
| 
       562 
     | 
    
         
            -
            	list='$(DISTFILES)'; \
         
     | 
| 
       563 
     | 
    
         
            -
            	  dist_files=`for file in $$list; do echo $$file; done | \
         
     | 
| 
       564 
     | 
    
         
            -
            	  sed -e "s|^$$srcdirstrip/||;t" \
         
     | 
| 
       565 
     | 
    
         
            -
            	      -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \
         
     | 
| 
       566 
     | 
    
         
            -
            	case $$dist_files in \
         
     | 
| 
       567 
     | 
    
         
            -
            	  */*) eval $(MKDIR_P) `echo "$$dist_files" | \
         
     | 
| 
       568 
     | 
    
         
            -
            			   sed '/\//!d;s|^|"$(distdir)"/|;s,/[^/]*$$,,' | \
         
     | 
| 
       569 
     | 
    
         
            -
            			   sort -u` ;; \
         
     | 
| 
       570 
     | 
    
         
            -
            	esac; \
         
     | 
| 
       571 
     | 
    
         
            -
            	for file in $$dist_files; do \
         
     | 
| 
       572 
     | 
    
         
            -
            	  if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \
         
     | 
| 
       573 
     | 
    
         
            -
            	  if test -d $$d/$$file; then \
         
     | 
| 
       574 
     | 
    
         
            -
            	    dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \
         
     | 
| 
       575 
     | 
    
         
            -
            	    if test -d "$(distdir)/$$file"; then \
         
     | 
| 
       576 
     | 
    
         
            -
            	      find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \
         
     | 
| 
       577 
     | 
    
         
            -
            	    fi; \
         
     | 
| 
       578 
     | 
    
         
            -
            	    if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \
         
     | 
| 
       579 
     | 
    
         
            -
            	      cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \
         
     | 
| 
       580 
     | 
    
         
            -
            	      find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \
         
     | 
| 
       581 
     | 
    
         
            -
            	    fi; \
         
     | 
| 
       582 
     | 
    
         
            -
            	    cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \
         
     | 
| 
       583 
     | 
    
         
            -
            	  else \
         
     | 
| 
       584 
     | 
    
         
            -
            	    test -f "$(distdir)/$$file" \
         
     | 
| 
       585 
     | 
    
         
            -
            	    || cp -p $$d/$$file "$(distdir)/$$file" \
         
     | 
| 
       586 
     | 
    
         
            -
            	    || exit 1; \
         
     | 
| 
       587 
     | 
    
         
            -
            	  fi; \
         
     | 
| 
       588 
     | 
    
         
            -
            	done
         
     | 
| 
       589 
     | 
    
         
            -
            	@list='$(DIST_SUBDIRS)'; for subdir in $$list; do \
         
     | 
| 
       590 
     | 
    
         
            -
            	  if test "$$subdir" = .; then :; else \
         
     | 
| 
       591 
     | 
    
         
            -
            	    $(am__make_dryrun) \
         
     | 
| 
       592 
     | 
    
         
            -
            	      || test -d "$(distdir)/$$subdir" \
         
     | 
| 
       593 
     | 
    
         
            -
            	      || $(MKDIR_P) "$(distdir)/$$subdir" \
         
     | 
| 
       594 
     | 
    
         
            -
            	      || exit 1; \
         
     | 
| 
       595 
     | 
    
         
            -
            	    dir1=$$subdir; dir2="$(distdir)/$$subdir"; \
         
     | 
| 
       596 
     | 
    
         
            -
            	    $(am__relativize); \
         
     | 
| 
       597 
     | 
    
         
            -
            	    new_distdir=$$reldir; \
         
     | 
| 
       598 
     | 
    
         
            -
            	    dir1=$$subdir; dir2="$(top_distdir)"; \
         
     | 
| 
       599 
     | 
    
         
            -
            	    $(am__relativize); \
         
     | 
| 
       600 
     | 
    
         
            -
            	    new_top_distdir=$$reldir; \
         
     | 
| 
       601 
     | 
    
         
            -
            	    echo " (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) top_distdir="$$new_top_distdir" distdir="$$new_distdir" \\"; \
         
     | 
| 
       602 
     | 
    
         
            -
            	    echo "     am__remove_distdir=: am__skip_length_check=: am__skip_mode_fix=: distdir)"; \
         
     | 
| 
       603 
     | 
    
         
            -
            	    ($(am__cd) $$subdir && \
         
     | 
| 
       604 
     | 
    
         
            -
            	      $(MAKE) $(AM_MAKEFLAGS) \
         
     | 
| 
       605 
     | 
    
         
            -
            	        top_distdir="$$new_top_distdir" \
         
     | 
| 
       606 
     | 
    
         
            -
            	        distdir="$$new_distdir" \
         
     | 
| 
       607 
     | 
    
         
            -
            		am__remove_distdir=: \
         
     | 
| 
       608 
     | 
    
         
            -
            		am__skip_length_check=: \
         
     | 
| 
       609 
     | 
    
         
            -
            		am__skip_mode_fix=: \
         
     | 
| 
       610 
     | 
    
         
            -
            	        distdir) \
         
     | 
| 
       611 
     | 
    
         
            -
            	      || exit 1; \
         
     | 
| 
       612 
     | 
    
         
            -
            	  fi; \
         
     | 
| 
       613 
     | 
    
         
            -
            	done
         
     | 
| 
       614 
     | 
    
         
            -
            	-test -n "$(am__skip_mode_fix)" \
         
     | 
| 
       615 
     | 
    
         
            -
            	|| find "$(distdir)" -type d ! -perm -755 \
         
     | 
| 
       616 
     | 
    
         
            -
            		-exec chmod u+rwx,go+rx {} \; -o \
         
     | 
| 
       617 
     | 
    
         
            -
            	  ! -type d ! -perm -444 -links 1 -exec chmod a+r {} \; -o \
         
     | 
| 
       618 
     | 
    
         
            -
            	  ! -type d ! -perm -400 -exec chmod a+r {} \; -o \
         
     | 
| 
       619 
     | 
    
         
            -
            	  ! -type d ! -perm -444 -exec $(install_sh) -c -m a+r {} {} \; \
         
     | 
| 
       620 
     | 
    
         
            -
            	|| chmod -R a+r "$(distdir)"
         
     | 
| 
       621 
     | 
    
         
            -
            dist-gzip: distdir
         
     | 
| 
       622 
     | 
    
         
            -
            	tardir="$(distdir)" && $(am__tar) | eval GZIP= gzip $(GZIP_ENV) -c >"$(distdir)".tar.gz
         
     | 
| 
       623 
     | 
    
         
            -
            	$(am__post_remove_distdir)
         
     | 
| 
       624 
     | 
    
         
            -
             
     | 
| 
       625 
     | 
    
         
            -
            dist-bzip2: distdir
         
     | 
| 
       626 
     | 
    
         
            -
            	tardir="$(distdir)" && $(am__tar) | BZIP2=$${BZIP2--9} bzip2 -c >"$(distdir)".tar.bz2
         
     | 
| 
       627 
     | 
    
         
            -
            	$(am__post_remove_distdir)
         
     | 
| 
       628 
     | 
    
         
            -
             
     | 
| 
       629 
     | 
    
         
            -
            dist-lzip: distdir
         
     | 
| 
       630 
     | 
    
         
            -
            	tardir="$(distdir)" && $(am__tar) | lzip -c $${LZIP_OPT--9} >"$(distdir)".tar.lz
         
     | 
| 
       631 
     | 
    
         
            -
            	$(am__post_remove_distdir)
         
     | 
| 
       632 
     | 
    
         
            -
             
     | 
| 
       633 
     | 
    
         
            -
            dist-xz: distdir
         
     | 
| 
       634 
     | 
    
         
            -
            	tardir="$(distdir)" && $(am__tar) | XZ_OPT=$${XZ_OPT--e} xz -c >"$(distdir)".tar.xz
         
     | 
| 
       635 
     | 
    
         
            -
            	$(am__post_remove_distdir)
         
     | 
| 
       636 
     | 
    
         
            -
             
     | 
| 
       637 
     | 
    
         
            -
            dist-tarZ: distdir
         
     | 
| 
       638 
     | 
    
         
            -
            	@echo WARNING: "Support for distribution archives compressed with" \
         
     | 
| 
       639 
     | 
    
         
            -
            		       "legacy program 'compress' is deprecated." >&2
         
     | 
| 
       640 
     | 
    
         
            -
            	@echo WARNING: "It will be removed altogether in Automake 2.0" >&2
         
     | 
| 
       641 
     | 
    
         
            -
            	tardir="$(distdir)" && $(am__tar) | compress -c >"$(distdir)".tar.Z
         
     | 
| 
       642 
     | 
    
         
            -
            	$(am__post_remove_distdir)
         
     | 
| 
       643 
     | 
    
         
            -
             
     | 
| 
       644 
     | 
    
         
            -
            dist-shar: distdir
         
     | 
| 
       645 
     | 
    
         
            -
            	@echo WARNING: "Support for shar distribution archives is" \
         
     | 
| 
       646 
     | 
    
         
            -
            	               "deprecated." >&2
         
     | 
| 
       647 
     | 
    
         
            -
            	@echo WARNING: "It will be removed altogether in Automake 2.0" >&2
         
     | 
| 
       648 
     | 
    
         
            -
            	shar "$(distdir)" | eval GZIP= gzip $(GZIP_ENV) -c >"$(distdir)".shar.gz
         
     | 
| 
       649 
     | 
    
         
            -
            	$(am__post_remove_distdir)
         
     | 
| 
       650 
     | 
    
         
            -
             
     | 
| 
       651 
     | 
    
         
            -
            dist-zip: distdir
         
     | 
| 
       652 
     | 
    
         
            -
            	-rm -f "$(distdir)".zip
         
     | 
| 
       653 
     | 
    
         
            -
            	zip -rq "$(distdir)".zip "$(distdir)"
         
     | 
| 
       654 
     | 
    
         
            -
            	$(am__post_remove_distdir)
         
     | 
| 
       655 
     | 
    
         
            -
             
     | 
| 
       656 
     | 
    
         
            -
            dist dist-all:
         
     | 
| 
       657 
     | 
    
         
            -
            	$(MAKE) $(AM_MAKEFLAGS) $(DIST_TARGETS) am__post_remove_distdir='@:'
         
     | 
| 
       658 
     | 
    
         
            -
            	$(am__post_remove_distdir)
         
     | 
| 
       659 
     | 
    
         
            -
             
     | 
| 
       660 
     | 
    
         
            -
            # This target untars the dist file and tries a VPATH configuration.  Then
         
     | 
| 
       661 
     | 
    
         
            -
            # it guarantees that the distribution is self-contained by making another
         
     | 
| 
       662 
     | 
    
         
            -
            # tarfile.
         
     | 
| 
       663 
     | 
    
         
            -
            distcheck: dist
         
     | 
| 
       664 
     | 
    
         
            -
            	case '$(DIST_ARCHIVES)' in \
         
     | 
| 
       665 
     | 
    
         
            -
            	*.tar.gz*) \
         
     | 
| 
       666 
     | 
    
         
            -
            	  eval GZIP= gzip $(GZIP_ENV) -dc "$(distdir)".tar.gz | $(am__untar) ;;\
         
     | 
| 
       667 
     | 
    
         
            -
            	*.tar.bz2*) \
         
     | 
| 
       668 
     | 
    
         
            -
            	  bzip2 -dc "$(distdir)".tar.bz2 | $(am__untar) ;;\
         
     | 
| 
       669 
     | 
    
         
            -
            	*.tar.lz*) \
         
     | 
| 
       670 
     | 
    
         
            -
            	  lzip -dc "$(distdir)".tar.lz | $(am__untar) ;;\
         
     | 
| 
       671 
     | 
    
         
            -
            	*.tar.xz*) \
         
     | 
| 
       672 
     | 
    
         
            -
            	  xz -dc "$(distdir)".tar.xz | $(am__untar) ;;\
         
     | 
| 
       673 
     | 
    
         
            -
            	*.tar.Z*) \
         
     | 
| 
       674 
     | 
    
         
            -
            	  uncompress -c "$(distdir)".tar.Z | $(am__untar) ;;\
         
     | 
| 
       675 
     | 
    
         
            -
            	*.shar.gz*) \
         
     | 
| 
       676 
     | 
    
         
            -
            	  eval GZIP= gzip $(GZIP_ENV) -dc "$(distdir)".shar.gz | unshar ;;\
         
     | 
| 
       677 
     | 
    
         
            -
            	*.zip*) \
         
     | 
| 
       678 
     | 
    
         
            -
            	  unzip "$(distdir)".zip ;;\
         
     | 
| 
       679 
     | 
    
         
            -
            	esac
         
     | 
| 
       680 
     | 
    
         
            -
            	chmod -R a-w "$(distdir)"
         
     | 
| 
       681 
     | 
    
         
            -
            	chmod u+w "$(distdir)"
         
     | 
| 
       682 
     | 
    
         
            -
            	mkdir "$(distdir)"/_build "$(distdir)"/_build/sub "$(distdir)"/_inst
         
     | 
| 
       683 
     | 
    
         
            -
            	chmod a-w "$(distdir)"
         
     | 
| 
       684 
     | 
    
         
            -
            	test -d "$(distdir)"/_build || exit 0; \
         
     | 
| 
       685 
     | 
    
         
            -
            	dc_install_base=`$(am__cd) "$(distdir)"/_inst && pwd | sed -e 's,^[^:\\/]:[\\/],/,'` \
         
     | 
| 
       686 
     | 
    
         
            -
            	  && dc_destdir="$${TMPDIR-/tmp}/am-dc-$$$$/" \
         
     | 
| 
       687 
     | 
    
         
            -
            	  && am__cwd=`pwd` \
         
     | 
| 
       688 
     | 
    
         
            -
            	  && $(am__cd) "$(distdir)"/_build/sub \
         
     | 
| 
       689 
     | 
    
         
            -
            	  && ../../configure \
         
     | 
| 
       690 
     | 
    
         
            -
            	    $(AM_DISTCHECK_CONFIGURE_FLAGS) \
         
     | 
| 
       691 
     | 
    
         
            -
            	    $(DISTCHECK_CONFIGURE_FLAGS) \
         
     | 
| 
       692 
     | 
    
         
            -
            	    --srcdir=../.. --prefix="$$dc_install_base" \
         
     | 
| 
       693 
     | 
    
         
            -
            	  && $(MAKE) $(AM_MAKEFLAGS) \
         
     | 
| 
       694 
     | 
    
         
            -
            	  && $(MAKE) $(AM_MAKEFLAGS) dvi \
         
     | 
| 
       695 
     | 
    
         
            -
            	  && $(MAKE) $(AM_MAKEFLAGS) check \
         
     | 
| 
       696 
     | 
    
         
            -
            	  && $(MAKE) $(AM_MAKEFLAGS) install \
         
     | 
| 
       697 
     | 
    
         
            -
            	  && $(MAKE) $(AM_MAKEFLAGS) installcheck \
         
     | 
| 
       698 
     | 
    
         
            -
            	  && $(MAKE) $(AM_MAKEFLAGS) uninstall \
         
     | 
| 
       699 
     | 
    
         
            -
            	  && $(MAKE) $(AM_MAKEFLAGS) distuninstallcheck_dir="$$dc_install_base" \
         
     | 
| 
       700 
     | 
    
         
            -
            	        distuninstallcheck \
         
     | 
| 
       701 
     | 
    
         
            -
            	  && chmod -R a-w "$$dc_install_base" \
         
     | 
| 
       702 
     | 
    
         
            -
            	  && ({ \
         
     | 
| 
       703 
     | 
    
         
            -
            	       (cd ../.. && umask 077 && mkdir "$$dc_destdir") \
         
     | 
| 
       704 
     | 
    
         
            -
            	       && $(MAKE) $(AM_MAKEFLAGS) DESTDIR="$$dc_destdir" install \
         
     | 
| 
       705 
     | 
    
         
            -
            	       && $(MAKE) $(AM_MAKEFLAGS) DESTDIR="$$dc_destdir" uninstall \
         
     | 
| 
       706 
     | 
    
         
            -
            	       && $(MAKE) $(AM_MAKEFLAGS) DESTDIR="$$dc_destdir" \
         
     | 
| 
       707 
     | 
    
         
            -
            	            distuninstallcheck_dir="$$dc_destdir" distuninstallcheck; \
         
     | 
| 
       708 
     | 
    
         
            -
            	      } || { rm -rf "$$dc_destdir"; exit 1; }) \
         
     | 
| 
       709 
     | 
    
         
            -
            	  && rm -rf "$$dc_destdir" \
         
     | 
| 
       710 
     | 
    
         
            -
            	  && $(MAKE) $(AM_MAKEFLAGS) dist \
         
     | 
| 
       711 
     | 
    
         
            -
            	  && rm -rf $(DIST_ARCHIVES) \
         
     | 
| 
       712 
     | 
    
         
            -
            	  && $(MAKE) $(AM_MAKEFLAGS) distcleancheck \
         
     | 
| 
       713 
     | 
    
         
            -
            	  && cd "$$am__cwd" \
         
     | 
| 
       714 
     | 
    
         
            -
            	  || exit 1
         
     | 
| 
       715 
     | 
    
         
            -
            	$(am__post_remove_distdir)
         
     | 
| 
       716 
     | 
    
         
            -
            	@(echo "$(distdir) archives ready for distribution: "; \
         
     | 
| 
       717 
     | 
    
         
            -
            	  list='$(DIST_ARCHIVES)'; for i in $$list; do echo $$i; done) | \
         
     | 
| 
       718 
     | 
    
         
            -
            	  sed -e 1h -e 1s/./=/g -e 1p -e 1x -e '$$p' -e '$$x'
         
     | 
| 
       719 
     | 
    
         
            -
            distuninstallcheck:
         
     | 
| 
       720 
     | 
    
         
            -
            	@test -n '$(distuninstallcheck_dir)' || { \
         
     | 
| 
       721 
     | 
    
         
            -
            	  echo 'ERROR: trying to run $@ with an empty' \
         
     | 
| 
       722 
     | 
    
         
            -
            	       '$$(distuninstallcheck_dir)' >&2; \
         
     | 
| 
       723 
     | 
    
         
            -
            	  exit 1; \
         
     | 
| 
       724 
     | 
    
         
            -
            	}; \
         
     | 
| 
       725 
     | 
    
         
            -
            	$(am__cd) '$(distuninstallcheck_dir)' || { \
         
     | 
| 
       726 
     | 
    
         
            -
            	  echo 'ERROR: cannot chdir into $(distuninstallcheck_dir)' >&2; \
         
     | 
| 
       727 
     | 
    
         
            -
            	  exit 1; \
         
     | 
| 
       728 
     | 
    
         
            -
            	}; \
         
     | 
| 
       729 
     | 
    
         
            -
            	test `$(am__distuninstallcheck_listfiles) | wc -l` -eq 0 \
         
     | 
| 
       730 
     | 
    
         
            -
            	   || { echo "ERROR: files left after uninstall:" ; \
         
     | 
| 
       731 
     | 
    
         
            -
            	        if test -n "$(DESTDIR)"; then \
         
     | 
| 
       732 
     | 
    
         
            -
            	          echo "  (check DESTDIR support)"; \
         
     | 
| 
       733 
     | 
    
         
            -
            	        fi ; \
         
     | 
| 
       734 
     | 
    
         
            -
            	        $(distuninstallcheck_listfiles) ; \
         
     | 
| 
       735 
     | 
    
         
            -
            	        exit 1; } >&2
         
     | 
| 
       736 
     | 
    
         
            -
            distcleancheck: distclean
         
     | 
| 
       737 
     | 
    
         
            -
            	@if test '$(srcdir)' = . ; then \
         
     | 
| 
       738 
     | 
    
         
            -
            	  echo "ERROR: distcleancheck can only run from a VPATH build" ; \
         
     | 
| 
       739 
     | 
    
         
            -
            	  exit 1 ; \
         
     | 
| 
       740 
     | 
    
         
            -
            	fi
         
     | 
| 
       741 
     | 
    
         
            -
            	@test `$(distcleancheck_listfiles) | wc -l` -eq 0 \
         
     | 
| 
       742 
     | 
    
         
            -
            	  || { echo "ERROR: files left in build directory after distclean:" ; \
         
     | 
| 
       743 
     | 
    
         
            -
            	       $(distcleancheck_listfiles) ; \
         
     | 
| 
       744 
     | 
    
         
            -
            	       exit 1; } >&2
         
     | 
| 
       745 
     | 
    
         
            -
            check-am: all-am
         
     | 
| 
       746 
     | 
    
         
            -
            check: check-recursive
         
     | 
| 
       747 
     | 
    
         
            -
            all-am: Makefile
         
     | 
| 
       748 
     | 
    
         
            -
            installdirs: installdirs-recursive
         
     | 
| 
       749 
     | 
    
         
            -
            installdirs-am:
         
     | 
| 
       750 
     | 
    
         
            -
            install: install-recursive
         
     | 
| 
       751 
     | 
    
         
            -
            install-exec: install-exec-recursive
         
     | 
| 
       752 
     | 
    
         
            -
            install-data: install-data-recursive
         
     | 
| 
       753 
     | 
    
         
            -
            uninstall: uninstall-recursive
         
     | 
| 
       754 
     | 
    
         
            -
             
     | 
| 
       755 
     | 
    
         
            -
            install-am: all-am
         
     | 
| 
       756 
     | 
    
         
            -
            	@$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am
         
     | 
| 
       757 
     | 
    
         
            -
             
     | 
| 
       758 
     | 
    
         
            -
            installcheck: installcheck-recursive
         
     | 
| 
       759 
     | 
    
         
            -
            install-strip:
         
     | 
| 
       760 
     | 
    
         
            -
            	if test -z '$(STRIP)'; then \
         
     | 
| 
       761 
     | 
    
         
            -
            	  $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \
         
     | 
| 
       762 
     | 
    
         
            -
            	    install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \
         
     | 
| 
       763 
     | 
    
         
            -
            	      install; \
         
     | 
| 
       764 
     | 
    
         
            -
            	else \
         
     | 
| 
       765 
     | 
    
         
            -
            	  $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \
         
     | 
| 
       766 
     | 
    
         
            -
            	    install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \
         
     | 
| 
       767 
     | 
    
         
            -
            	    "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'" install; \
         
     | 
| 
       768 
     | 
    
         
            -
            	fi
         
     | 
| 
       769 
     | 
    
         
            -
            mostlyclean-generic:
         
     | 
| 
       770 
     | 
    
         
            -
             
     | 
| 
       771 
     | 
    
         
            -
            clean-generic:
         
     | 
| 
       772 
     | 
    
         
            -
             
     | 
| 
       773 
     | 
    
         
            -
            distclean-generic:
         
     | 
| 
       774 
     | 
    
         
            -
            	-test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES)
         
     | 
| 
       775 
     | 
    
         
            -
            	-test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES)
         
     | 
| 
       776 
     | 
    
         
            -
             
     | 
| 
       777 
     | 
    
         
            -
            maintainer-clean-generic:
         
     | 
| 
       778 
     | 
    
         
            -
            	@echo "This command is intended for maintainers to use"
         
     | 
| 
       779 
     | 
    
         
            -
            	@echo "it deletes files that may require special tools to rebuild."
         
     | 
| 
       780 
     | 
    
         
            -
            clean: clean-recursive
         
     | 
| 
       781 
     | 
    
         
            -
             
     | 
| 
       782 
     | 
    
         
            -
            clean-am: clean-generic mostlyclean-am
         
     | 
| 
       783 
     | 
    
         
            -
             
     | 
| 
       784 
     | 
    
         
            -
            distclean: distclean-recursive
         
     | 
| 
       785 
     | 
    
         
            -
            	-rm -f $(am__CONFIG_DISTCLEAN_FILES)
         
     | 
| 
       786 
     | 
    
         
            -
            	-rm -f Makefile
         
     | 
| 
       787 
     | 
    
         
            -
            distclean-am: clean-am distclean-generic distclean-tags
         
     | 
| 
       788 
     | 
    
         
            -
             
     | 
| 
       789 
     | 
    
         
            -
            dvi: dvi-recursive
         
     | 
| 
       790 
     | 
    
         
            -
             
     | 
| 
       791 
     | 
    
         
            -
            dvi-am:
         
     | 
| 
       792 
     | 
    
         
            -
             
     | 
| 
       793 
     | 
    
         
            -
            html: html-recursive
         
     | 
| 
       794 
     | 
    
         
            -
             
     | 
| 
       795 
     | 
    
         
            -
            html-am:
         
     | 
| 
       796 
     | 
    
         
            -
             
     | 
| 
       797 
     | 
    
         
            -
            info: info-recursive
         
     | 
| 
       798 
     | 
    
         
            -
             
     | 
| 
       799 
     | 
    
         
            -
            info-am:
         
     | 
| 
       800 
     | 
    
         
            -
             
     | 
| 
       801 
     | 
    
         
            -
            install-data-am:
         
     | 
| 
       802 
     | 
    
         
            -
             
     | 
| 
       803 
     | 
    
         
            -
            install-dvi: install-dvi-recursive
         
     | 
| 
       804 
     | 
    
         
            -
             
     | 
| 
       805 
     | 
    
         
            -
            install-dvi-am:
         
     | 
| 
       806 
     | 
    
         
            -
             
     | 
| 
       807 
     | 
    
         
            -
            install-exec-am:
         
     | 
| 
       808 
     | 
    
         
            -
             
     | 
| 
       809 
     | 
    
         
            -
            install-html: install-html-recursive
         
     | 
| 
       810 
     | 
    
         
            -
             
     | 
| 
       811 
     | 
    
         
            -
            install-html-am:
         
     | 
| 
       812 
     | 
    
         
            -
             
     | 
| 
       813 
     | 
    
         
            -
            install-info: install-info-recursive
         
     | 
| 
       814 
     | 
    
         
            -
             
     | 
| 
       815 
     | 
    
         
            -
            install-info-am:
         
     | 
| 
       816 
     | 
    
         
            -
             
     | 
| 
       817 
     | 
    
         
            -
            install-man:
         
     | 
| 
       818 
     | 
    
         
            -
             
     | 
| 
       819 
     | 
    
         
            -
            install-pdf: install-pdf-recursive
         
     | 
| 
       820 
     | 
    
         
            -
             
     | 
| 
       821 
     | 
    
         
            -
            install-pdf-am:
         
     | 
| 
       822 
     | 
    
         
            -
             
     | 
| 
       823 
     | 
    
         
            -
            install-ps: install-ps-recursive
         
     | 
| 
       824 
     | 
    
         
            -
             
     | 
| 
       825 
     | 
    
         
            -
            install-ps-am:
         
     | 
| 
       826 
     | 
    
         
            -
             
     | 
| 
       827 
     | 
    
         
            -
            installcheck-am:
         
     | 
| 
       828 
     | 
    
         
            -
             
     | 
| 
       829 
     | 
    
         
            -
            maintainer-clean: maintainer-clean-recursive
         
     | 
| 
       830 
     | 
    
         
            -
            	-rm -f $(am__CONFIG_DISTCLEAN_FILES)
         
     | 
| 
       831 
     | 
    
         
            -
            	-rm -rf $(top_srcdir)/autom4te.cache
         
     | 
| 
       832 
     | 
    
         
            -
            	-rm -f Makefile
         
     | 
| 
       833 
     | 
    
         
            -
            maintainer-clean-am: distclean-am maintainer-clean-generic
         
     | 
| 
       834 
     | 
    
         
            -
             
     | 
| 
       835 
     | 
    
         
            -
            mostlyclean: mostlyclean-recursive
         
     | 
| 
       836 
     | 
    
         
            -
             
     | 
| 
       837 
     | 
    
         
            -
            mostlyclean-am: mostlyclean-generic
         
     | 
| 
       838 
     | 
    
         
            -
             
     | 
| 
       839 
     | 
    
         
            -
            pdf: pdf-recursive
         
     | 
| 
       840 
     | 
    
         
            -
             
     | 
| 
       841 
     | 
    
         
            -
            pdf-am:
         
     | 
| 
       842 
     | 
    
         
            -
             
     | 
| 
       843 
     | 
    
         
            -
            ps: ps-recursive
         
     | 
| 
       844 
     | 
    
         
            -
             
     | 
| 
       845 
     | 
    
         
            -
            ps-am:
         
     | 
| 
       846 
     | 
    
         
            -
             
     | 
| 
       847 
     | 
    
         
            -
            uninstall-am:
         
     | 
| 
       848 
     | 
    
         
            -
             
     | 
| 
       849 
     | 
    
         
            -
            .MAKE: $(am__recursive_targets) install-am install-strip
         
     | 
| 
       850 
     | 
    
         
            -
             
     | 
| 
       851 
     | 
    
         
            -
            .PHONY: $(am__recursive_targets) CTAGS GTAGS TAGS all all-am \
         
     | 
| 
       852 
     | 
    
         
            -
            	am--refresh check check-am clean clean-cscope clean-generic \
         
     | 
| 
       853 
     | 
    
         
            -
            	cscope cscopelist-am ctags ctags-am dist dist-all dist-bzip2 \
         
     | 
| 
       854 
     | 
    
         
            -
            	dist-gzip dist-lzip dist-shar dist-tarZ dist-xz dist-zip \
         
     | 
| 
       855 
     | 
    
         
            -
            	distcheck distclean distclean-generic distclean-tags \
         
     | 
| 
       856 
     | 
    
         
            -
            	distcleancheck distdir distuninstallcheck dvi dvi-am html \
         
     | 
| 
       857 
     | 
    
         
            -
            	html-am info info-am install install-am install-data \
         
     | 
| 
       858 
     | 
    
         
            -
            	install-data-am install-dvi install-dvi-am install-exec \
         
     | 
| 
       859 
     | 
    
         
            -
            	install-exec-am install-html install-html-am install-info \
         
     | 
| 
       860 
     | 
    
         
            -
            	install-info-am install-man install-pdf install-pdf-am \
         
     | 
| 
       861 
     | 
    
         
            -
            	install-ps install-ps-am install-strip installcheck \
         
     | 
| 
       862 
     | 
    
         
            -
            	installcheck-am installdirs installdirs-am maintainer-clean \
         
     | 
| 
       863 
     | 
    
         
            -
            	maintainer-clean-generic mostlyclean mostlyclean-generic pdf \
         
     | 
| 
       864 
     | 
    
         
            -
            	pdf-am ps ps-am tags tags-am uninstall uninstall-am
         
     | 
| 
       865 
     | 
    
         
            -
             
     | 
| 
       866 
     | 
    
         
            -
            .PRECIOUS: Makefile
         
     | 
| 
       867 
     | 
    
         
            -
             
     | 
| 
       868 
     | 
    
         
            -
             
     | 
| 
       869 
     | 
    
         
            -
            @DX_COND_doc_TRUE@@DX_COND_ps_TRUE@doxygen-ps: @DX_DOCDIR@/@PACKAGE@.ps
         
     | 
| 
       870 
     | 
    
         
            -
             
     | 
| 
       871 
     | 
    
         
            -
            @DX_COND_doc_TRUE@@DX_COND_ps_TRUE@@DX_DOCDIR@/@PACKAGE@.ps: @DX_DOCDIR@/@PACKAGE@.tag $(DX_EXTRA_DEPEND)
         
     | 
| 
       872 
     | 
    
         
            -
            @DX_COND_doc_TRUE@@DX_COND_ps_TRUE@	cd @DX_DOCDIR@/latex; \
         
     | 
| 
       873 
     | 
    
         
            -
            @DX_COND_doc_TRUE@@DX_COND_ps_TRUE@	rm -f *.aux *.toc *.idx *.ind *.ilg *.log *.out; \
         
     | 
| 
       874 
     | 
    
         
            -
            @DX_COND_doc_TRUE@@DX_COND_ps_TRUE@	$(DX_LATEX) refman.tex; \
         
     | 
| 
       875 
     | 
    
         
            -
            @DX_COND_doc_TRUE@@DX_COND_ps_TRUE@	$(MAKEINDEX_PATH) refman.idx; \
         
     | 
| 
       876 
     | 
    
         
            -
            @DX_COND_doc_TRUE@@DX_COND_ps_TRUE@	$(DX_LATEX) refman.tex; \
         
     | 
| 
       877 
     | 
    
         
            -
            @DX_COND_doc_TRUE@@DX_COND_ps_TRUE@	countdown=5; \
         
     | 
| 
       878 
     | 
    
         
            -
            @DX_COND_doc_TRUE@@DX_COND_ps_TRUE@	while $(DX_EGREP) 'Rerun (LaTeX|to get cross-references right)' \
         
     | 
| 
       879 
     | 
    
         
            -
            @DX_COND_doc_TRUE@@DX_COND_ps_TRUE@	                  refman.log > /dev/null 2>&1 \
         
     | 
| 
       880 
     | 
    
         
            -
            @DX_COND_doc_TRUE@@DX_COND_ps_TRUE@	   && test $$countdown -gt 0; do \
         
     | 
| 
       881 
     | 
    
         
            -
            @DX_COND_doc_TRUE@@DX_COND_ps_TRUE@	    $(DX_LATEX) refman.tex; \
         
     | 
| 
       882 
     | 
    
         
            -
            @DX_COND_doc_TRUE@@DX_COND_ps_TRUE@	    countdown=`expr $$countdown - 1`; \
         
     | 
| 
       883 
     | 
    
         
            -
            @DX_COND_doc_TRUE@@DX_COND_ps_TRUE@	done; \
         
     | 
| 
       884 
     | 
    
         
            -
            @DX_COND_doc_TRUE@@DX_COND_ps_TRUE@	$(DX_DVIPS) -o ../@PACKAGE@.ps refman.dvi
         
     | 
| 
       885 
     | 
    
         
            -
             
     | 
| 
       886 
     | 
    
         
            -
            @DX_COND_doc_TRUE@@DX_COND_pdf_TRUE@doxygen-pdf: @DX_DOCDIR@/@PACKAGE@.pdf
         
     | 
| 
       887 
     | 
    
         
            -
             
     | 
| 
       888 
     | 
    
         
            -
            @DX_COND_doc_TRUE@@DX_COND_pdf_TRUE@@DX_DOCDIR@/@PACKAGE@.pdf: @DX_DOCDIR@/@PACKAGE@.tag $(DX_EXTRA_DEPEND)
         
     | 
| 
       889 
     | 
    
         
            -
            @DX_COND_doc_TRUE@@DX_COND_pdf_TRUE@	cd @DX_DOCDIR@/latex; \
         
     | 
| 
       890 
     | 
    
         
            -
            @DX_COND_doc_TRUE@@DX_COND_pdf_TRUE@	rm -f *.aux *.toc *.idx *.ind *.ilg *.log *.out; \
         
     | 
| 
       891 
     | 
    
         
            -
            @DX_COND_doc_TRUE@@DX_COND_pdf_TRUE@	$(DX_PDFLATEX) refman.tex; \
         
     | 
| 
       892 
     | 
    
         
            -
            @DX_COND_doc_TRUE@@DX_COND_pdf_TRUE@	$(DX_MAKEINDEX) refman.idx; \
         
     | 
| 
       893 
     | 
    
         
            -
            @DX_COND_doc_TRUE@@DX_COND_pdf_TRUE@	$(DX_PDFLATEX) refman.tex; \
         
     | 
| 
       894 
     | 
    
         
            -
            @DX_COND_doc_TRUE@@DX_COND_pdf_TRUE@	countdown=5; \
         
     | 
| 
       895 
     | 
    
         
            -
            @DX_COND_doc_TRUE@@DX_COND_pdf_TRUE@	while $(DX_EGREP) 'Rerun (LaTeX|to get cross-references right)' \
         
     | 
| 
       896 
     | 
    
         
            -
            @DX_COND_doc_TRUE@@DX_COND_pdf_TRUE@	                  refman.log > /dev/null 2>&1 \
         
     | 
| 
       897 
     | 
    
         
            -
            @DX_COND_doc_TRUE@@DX_COND_pdf_TRUE@	   && test $$countdown -gt 0; do \
         
     | 
| 
       898 
     | 
    
         
            -
            @DX_COND_doc_TRUE@@DX_COND_pdf_TRUE@	    $(DX_PDFLATEX) refman.tex; \
         
     | 
| 
       899 
     | 
    
         
            -
            @DX_COND_doc_TRUE@@DX_COND_pdf_TRUE@	    countdown=`expr $$countdown - 1`; \
         
     | 
| 
       900 
     | 
    
         
            -
            @DX_COND_doc_TRUE@@DX_COND_pdf_TRUE@	done; \
         
     | 
| 
       901 
     | 
    
         
            -
            @DX_COND_doc_TRUE@@DX_COND_pdf_TRUE@	mv refman.pdf ../@PACKAGE@.pdf
         
     | 
| 
       902 
     | 
    
         
            -
             
     | 
| 
       903 
     | 
    
         
            -
            @DX_COND_doc_TRUE@.PHONY: doxygen-run doxygen-doc $(DX_PS_GOAL) $(DX_PDF_GOAL)
         
     | 
| 
       904 
     | 
    
         
            -
             
     | 
| 
       905 
     | 
    
         
            -
            @DX_COND_doc_TRUE@.INTERMEDIATE: doxygen-run $(DX_PS_GOAL) $(DX_PDF_GOAL)
         
     | 
| 
       906 
     | 
    
         
            -
             
     | 
| 
       907 
     | 
    
         
            -
            @DX_COND_doc_TRUE@doxygen-run: @DX_DOCDIR@/@PACKAGE@.tag
         
     | 
| 
       908 
     | 
    
         
            -
             
     | 
| 
       909 
     | 
    
         
            -
            @DX_COND_doc_TRUE@doxygen-doc: doxygen-run $(DX_PS_GOAL) $(DX_PDF_GOAL)
         
     | 
| 
       910 
     | 
    
         
            -
             
     | 
| 
       911 
     | 
    
         
            -
            @DX_COND_doc_TRUE@@DX_DOCDIR@/@PACKAGE@.tag: $(DX_CONFIG) $(pkginclude_HEADERS) $(DX_EXTRA_DEPEND)
         
     | 
| 
       912 
     | 
    
         
            -
            @DX_COND_doc_TRUE@	rm -rf @DX_DOCDIR@
         
     | 
| 
       913 
     | 
    
         
            -
            @DX_COND_doc_TRUE@	$(DX_ENV) $(DX_DOXYGEN) $(srcdir)/$(DX_CONFIG)
         
     | 
| 
       914 
     | 
    
         
            -
             
     | 
| 
       915 
     | 
    
         
            -
            doc: doxygen-doc
         
     | 
| 
       916 
     | 
    
         
            -
             
     | 
| 
       917 
     | 
    
         
            -
            rice/README.doxygen: README.md
         
     | 
| 
       918 
     | 
    
         
            -
            	@echo Generating documentation
         
     | 
| 
       919 
     | 
    
         
            -
            	@$(RUBY) -e 'File.open("README.md") { |i| File.open("rice/README.doxygen", "w") { |o| o.puts "/*! #{i.gets}"; i.each_line { |l| o.puts "    #{l}" if l !~ /^\\comment/ and l !~ /^vim:/ }; o.puts " */" } }'.md
         
     | 
| 
       920 
     | 
    
         
            -
             
     | 
| 
       921 
     | 
    
         
            -
            # Tell versions [3.59,3.63) of GNU make to not export all variables.
         
     | 
| 
       922 
     | 
    
         
            -
            # Otherwise a system limit (for SysV at least) may be exceeded.
         
     | 
| 
       923 
     | 
    
         
            -
            .NOEXPORT:
         
     |