‡Æ
5Oö9c       sZ     d  Z    d Z 
 d k Z d k Z  d k T d f  d „  ƒ  YZ p d „  Z d S(   sm   distutils.extension

Provides the Extension class, used to describe C/C++ extension
modules in setup scripts.s7   $Id: extension.py,v 1.6 2000/09/17 00:45:18 gward Exp $N(   s   *s	   Extensionc      s8    d  Z  L N e e e e e e e e e e d „
 Z RS(   sà
  Just a collection of attributes that describes an extension
    module and everything needed to build it (hopefully in a portable
    way, but there are hooks that let you be as unportable as you need).

    Instance attributes:
      name : string
        the full name of the extension, including any packages -- ie.
        *not* a filename or pathname, but Python dotted name
      sources : [string]
        list of source filenames, relative to the distribution root
        (where the setup script lives), in Unix form (slash-separated)
        for portability.  Source files may be C, C++, SWIG (.i),
        platform-specific resource files, or whatever else is recognized
        by the "build_ext" command as source for a Python extension.
      include_dirs : [string]
        list of directories to search for C/C++ header files (in Unix
        form for portability)
      define_macros : [(name : string, value : string|None)]
        list of macros to define; each macro is defined using a 2-tuple,
        where 'value' is either the string to define it to or None to
        define it without a particular value (equivalent of "#define
        FOO" in source or -DFOO on Unix C compiler command line)
      undef_macros : [string]
        list of macros to undefine explicitly
      library_dirs : [string]
        list of directories to search for C/C++ libraries at link time
      libraries : [string]
        list of library names (not filenames or paths) to link against
      runtime_library_dirs : [string]
        list of directories to search for C/C++ libraries at run time
        (for shared extensions, this is when the extension is loaded)
      extra_objects : [string]
        list of extra files to link with (eg. object files not implied
        by 'sources', static library that must be explicitly specified,
        binary resource files, etc.)
      extra_compile_args : [string]
        any extra platform- and compiler-specific information to use
        when compiling the source files in 'sources'.  For platforms and
        compilers where "command line" makes sense, this is typically a
        list of command-line arguments, but for other platforms it could
        be anything.
      extra_link_args : [string]
        any extra platform- and compiler-specific information to use
        when linking object files together to create the extension (or
        to create a new static Python interpreter).  Similar
        interpretation as for 'extra_compile_args'.
      export_symbols : [string]
        list of symbols to be exported from a shared extension.  Not
        used on all platforms, and not generally necessary for Python
        extensions, which typically export exactly one symbol: "init" +
        extension_name.
    c    sN  N [ t  o t | ƒ t j p
 t d ‚ \ t  o@ t | ƒ t j o  t t | ƒ t g t | ƒ j p
 t d ‚ ` | |  _ a | |  _ b | p g  |  _
 c | p g  |  _ d | p g  |  _ e | p g  |  _ f | p g  |  _ g | p g  |  _ h |	 p g  |  _ i |
 p g  |  _ j | p g  |  _ k | p g  |  _ d  S(   Ns   'name' must be a strings#   'sources' must be a list of strings(   s	   __debug__s   types   names
   StringTypes   AssertionErrors   sourcess   ListTypes   maps   lens   selfs   include_dirss   define_macross   undef_macross   library_dirss	   librariess   runtime_library_dirss   extra_objectss   extra_compile_argss   extra_link_argss   export_symbols(   s   selfs   names   sourcess   include_dirss   define_macross   undef_macross   library_dirss	   librariess   runtime_library_dirss   extra_objectss   extra_compile_argss   extra_link_argss   export_symbolss0   /mit/python/lib/python2.0/distutils/extension.pys   __init__N s   'J(   s   __doc__s   Nones   __init__(    s0   /mit/python/lib/python2.0/distutils/extension.pys	   Extension s   	4c    sz  p q d k  l } l } l } s d k l } t d k l } w | |  ƒ } { | |  | d d d d d d } d d d	 d ƒ} ~ g  } € xß€ d oÔ | i ƒ  }	 ‚ |	 t j o ƒ Pn „ | i |	 ƒ o
 … q n ‡ |	 d
 |	 d j o
 d j n o ˆ | i d |	 ƒ ‰ q n Œ | |	 | ƒ }	  | |	 ƒ }
 – |
 d
 } — t | g  ƒ } ˜ t } š xå|
 d d
 š rÔ} › | t j	 o# œ | i | ƒ  t } ž qn   t i i | ƒ d } ¡ | d
 d !} | d } £ | d d d d d f j o § | i i | ƒ n3¨ | d j o © | i i | ƒ nª | d j oo « t  i! | d ƒ } ¬ | d j o ­ | i# i | t f ƒ n) ¯ | i# i | d
 | !| | d f ƒ n± | d j o ² | i$ i | ƒ nf³ | d j o ´ | i% i | ƒ n?µ | d j o ¶ | i& i | ƒ n· | d j o ¸ | i' i | ƒ nñ ¹ | d j o º | i( i | ƒ nÊ » | d j o ¼ | i( } nª ½ | d j o ¾ | i) } nŠ ¿ | d j o2 À | i) i | ƒ Á | o Â | i) } n nH Ã | d d d  d! f j o È | i* i | ƒ n Ê | i d" | ƒ qWÌ | i | ƒ q W× | Sd  S(#   N(   s   parse_makefiles   expand_makefile_varss   _variable_rx(   s   TextFile(   s   split_quoteds   strip_commentsi   s   skip_blankss
   join_liness	   lstrip_wss	   rstrip_wsi    s   *s   '%s' lines not handled yeti   s   .cs   .ccs   .cpps   .cxxs   .c++s   -Is   -Ds   =s   -Us   -Cs   -ls   -Ls   -Rs   -rpaths   -Xlinkers   -us   .as   .sos   .sls   .os   unrecognized argument '%s'(+   s   distutils.sysconfigs   parse_makefiles   expand_makefile_varss   _variable_rxs   distutils.text_files   TextFiles   distutils.utils   split_quoteds   filenames   varss   files
   extensionss   readlines   lines   Nones   matchs   warns   wordss   modules	   Extensions   exts   append_next_words   words   appends   oss   paths   splitexts   suffixs   switchs   values   sourcess   include_dirss   strings   finds   equalss   define_macross   undef_macross   extra_compile_argss	   librariess   library_dirss   runtime_library_dirss   extra_link_argss   extra_objects(   s   filenames   parse_makefiles   expand_makefile_varss   _variable_rxs   TextFiles   split_quoteds   varss   files
   extensionss   lines   wordss   modules   exts   append_next_words   words   suffixs   switchs   values   equalss0   /mit/python/lib/python2.0/distutils/extension.pys   read_setup_filep s~   		 

*
		 		
,(   s   __doc__s   __revision__s   oss   strings   typess	   Extensions   read_setup_file(    s0   /mit/python/lib/python2.0/distutils/extension.pys   ? s
   	
X