0
0
mirror of https://github.com/python/cpython.git synced 2024-12-01 11:15:56 +01:00
cpython/Lib/distutils
Jeremy Hylton c18fde5d82 Extend dependency tracking so that .o files are rebuilt.
Two new tests are needed:

Don't skip building an extension if any of the depends files are newer
than the target.

Pass ext.depends to compiler.compile() so that it can track individual
files.
2002-06-13 17:32:20 +00:00
..
command Extend dependency tracking so that .o files are rebuilt. 2002-06-13 17:32:20 +00:00
__init__.py
archive_util.py
bcppcompiler.py Refactor compile() method implementations. 2002-06-13 17:28:18 +00:00
ccompiler.py Extend compiler() method with optional depends argument. 2002-06-13 17:26:30 +00:00
cmd.py
core.py
cygwinccompiler.py Refactor compile() method implementations. 2002-06-13 17:28:18 +00:00
dep_util.py
dir_util.py
dist.py
emxccompiler.py Refactor compile() method implementations. 2002-06-13 17:28:18 +00:00
errors.py
extension.py Add a new definition to Extension objects: depends. 2002-06-12 20:08:56 +00:00
fancy_getopt.py
file_util.py
filelist.py
log.py
msvccompiler.py Refactor compile() method implementations. 2002-06-13 17:28:18 +00:00
mwerkscompiler.py Add depends=None to the arglist for compile(). 2002-06-13 17:27:13 +00:00
README
spawn.py
sysconfig.py
text_file.py
unixccompiler.py Refactor compile() method implementations. 2002-06-13 17:28:18 +00:00
util.py
version.py

This directory contains only a subset of the Distutils, specifically the
Python modules in the 'distutils' and 'distutils.command' packages.
Technically, this is all you need to distribute and install Python modules
using the Distutils.  Most people will want some documentation and other
help, though.  Currently, everything can be found at the Distutils web page:

    http://www.python.org/sigs/distutils-sig/

From there you can access the latest documentation, or download a standalone
Distutils release that includes all the code in this directory, plus
documentation, test scripts, examples, etc.

The Distutils documentation isn't yet part of the standard Python
documentation set, but will be soon.

        Greg Ward (gward@python.net)

$Id$