summaryrefslogtreecommitdiffstats
path: root/src/engine/SCons/Builder.py
Commit message (Expand)AuthorAgeFilesLines
* Make RCS/SCCS/BitKeeper support more transparent.Steven Knight2003-03-221-1/+1
* Support fetching SConscript files from source code management systems.Steven Knight2003-02-211-1/+1
* Really remove the deprecated name attribute from Builders.Steven Knight2003-02-201-17/+5
* Add support for fetching files from rcs.Steven Knight2003-02-181-1/+5
* Remove deprecated features.Steven Knight2003-02-121-3/+0
* Fix adding a prefix when the target isn't specified.Steven Knight2003-01-251-1/+1
* Put the Copyright years in by script, not by hand.Steven Knight2003-01-201-1/+1
* Update Copyright years.Steven Knight2003-01-161-1/+1
* Test improvements suggested by Charles Crain.Steven Knight2003-01-131-1/+4
* Fix small problems found by PyChecker. (Steve Leblanc)Steven Knight2003-01-121-2/+0
* Fix files with the same name as subdirs.Steven Knight2003-01-071-3/+4
* Fix specifying only the source argument to a MultiStepBuilder (such as Program).Steven Knight2003-01-071-1/+5
* Performance improvement: cut down on Proxy.__getattr__ calls.Steven Knight2003-01-061-1/+1
* Finish the Action refactoring by removing Builder.execute() methods and movin...Steven Knight2002-12-191-19/+0
* Refactor action execution so it's controlled by the interface-specific Taskma...Steven Knight2002-12-171-0/+3
* Support overriding construction variables in builder call. (Anthony Roach)Steven Knight2002-09-271-37/+33
* Make sure auto-deducing target names works when a Node is passed in as a sour...Steven Knight2002-08-281-1/+2
* Put auto-deduced target names in the same directory as the source file.Steven Knight2002-08-261-12/+12
* Performance enhancements: use a more efficient splitext() method; cache sour...Steven Knight2002-07-061-30/+28
* Deduce the target if it's not supplied.Steven Knight2002-07-031-9/+22
* Fix handling file names with multiple dots. (Charles Crain)Steven Knight2002-06-211-1/+1
* Check in the Tool() interface. (SK and Charles Crain)Steven Knight2002-06-201-61/+126
* Add LIBS and LIBPATH dependencies for shared libraries. (Charles Crain)Steven Knight2002-06-151-21/+10
* Remove white-space split of file name lists.Steven Knight2002-06-111-4/+4
* Changes from Charles Crain.Steven Knight2002-06-051-5/+26
* Fix ListBuilder so it works with --implicit-cache. (Anthony Roach)Steven Knight2002-06-051-12/+3
* Fix a couple obscure bugs. (Anthony Roach)Steven Knight2002-05-151-18/+13
* Raise an error if a builder is called multiple times for a given target, unle...Steven Knight2002-05-061-10/+34
* Add a Split() function (like argmunge()) in anticipation of removing the auto...Steven Knight2002-05-021-0/+3
* Several bug fixes from Charles Crain.Steven Knight2002-04-221-3/+47
* Big change for shared libraries and a bunch of other flexibility. (Charles C...Steven Knight2002-04-151-130/+172
* Various performance enhancements. (Anthony Roach)Steven Knight2002-04-051-5/+3
* Fix --debug=tree for directory targets (Anthony Roach)Steven Knight2002-04-041-44/+38
* Add support for target Aliases.Steven Knight2002-03-251-5/+11
* Move SCons.Util.scons_str2nodes() to SCons.Node/__init__.py and shorten its n...Steven Knight2002-03-241-9/+10
* Fix subtle problems in end cases with using multiple scanners on a Node.Steven Knight2002-03-201-6/+9
* Add a CXXFile builder to turn .ll and .yy files into .cc.Steven Knight2002-03-071-1/+5
* Make the CFile Builder's SUFFIX configurable.Steven Knight2002-03-071-52/+60
* Add command generator function support. (Anthony Roach)Steven Knight2002-02-201-0/+7
* Create all of the directories for a target list before trying to build the ta...Steven Knight2002-02-101-2/+3
* Allow libraries to specified as source files on the command line.Steven Knight2002-01-311-1/+4
* Update Copyright lines for the new year.Steven Knight2002-01-291-1/+1
* Only execute an Action once for a List of targets.Steven Knight2002-01-261-23/+75
* Strip $(-$) bracketed text from command lines.Steven Knight2002-01-231-0/+5
* Fix bug 494991Steven Knight2002-01-101-0/+2
* Split Action objects into their own module.Steven Knight2002-01-091-249/+2
* Collect common type-checking logic in SCons.Util.Steven Knight2002-01-081-39/+31
* Add support for lex and yacc.Steven Knight2002-01-071-28/+38
* Refactor BuilderBase.__call__() to separate node creation from attribute init...Steven Knight2002-01-051-2/+15
* Allow Builder objects to have both an action and a src_builder.Steven Knight2002-01-051-15/+33