1999-03-22 14:55:25 +00:00
|
|
|
"""distutils.command.build
|
|
|
|
|
|
|
|
Implements the Distutils 'build' command."""
|
|
|
|
|
|
|
|
# created 1999/03/08, Greg Ward
|
|
|
|
|
|
|
|
__rcsid__ = "$Id$"
|
|
|
|
|
|
|
|
import os
|
|
|
|
from distutils.core import Command
|
|
|
|
|
|
|
|
|
2000-02-18 00:13:53 +00:00
|
|
|
class build (Command):
|
1999-03-22 14:55:25 +00:00
|
|
|
|
2000-01-30 18:34:15 +00:00
|
|
|
description = "build everything needed to install"
|
|
|
|
|
2000-02-18 00:25:39 +00:00
|
|
|
user_options = [
|
|
|
|
('build-base=', 'b',
|
|
|
|
"base directory for build library"),
|
|
|
|
('build-lib=', 'l',
|
|
|
|
"directory for platform-shared files"),
|
|
|
|
('build-platlib=', 'p',
|
|
|
|
"directory for platform-specific files"),
|
|
|
|
('debug', 'g',
|
|
|
|
"compile extensions and libraries with debugging information"),
|
|
|
|
]
|
1999-03-22 14:55:25 +00:00
|
|
|
|
2000-02-18 00:35:22 +00:00
|
|
|
def initialize_options (self):
|
1999-09-29 12:38:18 +00:00
|
|
|
self.build_base = 'build'
|
|
|
|
# these are decided only after 'build_base' has its final value
|
1999-03-22 14:55:25 +00:00
|
|
|
# (unless overridden by the user or client)
|
1999-09-29 12:38:18 +00:00
|
|
|
self.build_lib = None
|
|
|
|
self.build_platlib = None
|
2000-02-09 02:19:49 +00:00
|
|
|
self.debug = None
|
1999-03-22 14:55:25 +00:00
|
|
|
|
2000-02-18 00:35:22 +00:00
|
|
|
def finalize_options (self):
|
1999-09-29 12:38:18 +00:00
|
|
|
# 'build_lib' and 'build_platlib' just default to 'lib' and
|
|
|
|
# 'platlib' under the base build directory
|
|
|
|
if self.build_lib is None:
|
|
|
|
self.build_lib = os.path.join (self.build_base, 'lib')
|
|
|
|
if self.build_platlib is None:
|
|
|
|
self.build_platlib = os.path.join (self.build_base, 'platlib')
|
1999-03-22 14:55:25 +00:00
|
|
|
|
|
|
|
|
|
|
|
def run (self):
|
|
|
|
|
|
|
|
# For now, "build" means "build_py" then "build_ext". (Eventually
|
|
|
|
# it should also build documentation.)
|
|
|
|
|
1999-09-21 18:27:55 +00:00
|
|
|
# Invoke the 'build_py' command to "build" pure Python modules
|
|
|
|
# (ie. copy 'em into the build tree)
|
|
|
|
if self.distribution.packages or self.distribution.py_modules:
|
|
|
|
self.run_peer ('build_py')
|
|
|
|
|
2000-02-05 02:24:16 +00:00
|
|
|
# Build any standalone C libraries next -- they're most likely to
|
|
|
|
# be needed by extension modules, so obviously have to be done
|
|
|
|
# first!
|
|
|
|
if self.distribution.libraries:
|
|
|
|
self.run_peer ('build_lib')
|
|
|
|
|
1999-09-21 18:27:55 +00:00
|
|
|
# And now 'build_ext' -- compile extension modules and put them
|
|
|
|
# into the build tree
|
|
|
|
if self.distribution.ext_modules:
|
|
|
|
self.run_peer ('build_ext')
|
1999-03-22 14:55:25 +00:00
|
|
|
|
|
|
|
# end class Build
|