summaryrefslogtreecommitdiffstats
path: root/src/engine
Commit message (Collapse)AuthorAgeFilesLines
...
* Follow-on to Append() functionality: generalize the type tests.Steven Knight2002-05-062-17/+31
|
* Add Append() and Replace() functions. (Zed Shaw)Steven Knight2002-05-062-17/+53
|
* Fix a bug that caused BuildDir(duplicate=1) along with passing a Node to ↵Steven Knight2002-05-021-1/+4
| | | | SConscript() to act as if BuildDir() wasn't used.
* Don't rebuild WIN32 libraries when there's no import library created. ↵Steven Knight2002-05-021-5/+10
| | | | (Charles Crain)
* Add a Split() function (like argmunge()) in anticipation of removing the ↵Steven Knight2002-05-025-8/+22
| | | | automatic white-space splitting from Builders in 0.08.
* Fix for long-line LINKCOM signatures on WIN32; add a for_signature argument ↵Steven Knight2002-05-023-14/+16
| | | | to command generators. (Charles Crain)
* Fix for CPPPATH='#'. (Charles Crain)Steven Knight2002-04-292-1/+4
|
* Add 'dirs' and 'names' keyword arguments to SConscript for easier ↵Steven Knight2002-04-291-36/+87
| | | | specification of subsidiary SConscript files. (Chad Austin)
* Don't create a directory Node when a file already exists there, and vice ↵Steven Knight2002-04-252-0/+37
| | | | versa. (Chad Austin)
* Fix for relative CPPPATH directories in subsidiary SConscript files. ↵Steven Knight2002-04-241-2/+2
| | | | (Charles Crain)
* Make Alias work with -U, -u, and -D (Anthony Roach)Steven Knight2002-04-241-0/+6
|
* Support building a PDF file directly from a TeX or LaTeX file using pdftex ↵Steven Knight2002-04-231-4/+20
| | | | or pdflatex.
* Small fix for yacc: only look for a .h file if they used the -d option. ↵Steven Knight2002-04-221-18/+12
| | | | (Charles Crain)
* Treat .c (lower case) and .C (upper case) files the same on case-insensitive ↵Steven Knight2002-04-221-6/+24
| | | | systems.
* Several bug fixes from Charles Crain.Steven Knight2002-04-2210-69/+250
|
* Fix Fortran arguments on Win32.Steven Knight2002-04-221-4/+4
|
* Fix win32LinkGenerator.Steven Knight2002-04-173-18/+28
|
* Fix importing of modules from the SConscript directory (Anthony Roach)Steven Knight2002-04-161-1/+9
|
* Handle long command lines for the MSVC linker.Steven Knight2002-04-161-8/+41
|
* Shared library test fixes. (Charles Crain)Steven Knight2002-04-161-1/+1
|
* Follow-on shared library fix for WIN32 systems. (Charles Crain)Steven Knight2002-04-151-1/+1
|
* Big change for shared libraries and a bunch of other flexibility. (Charles ↵Steven Knight2002-04-1515-322/+725
| | | | Crain)
* Change the meaning of -U, and made -D work like -U used to. (Anthony Roach)Steven Knight2002-04-111-6/+21
|
* Make .sconsign files get written even if the build fails or is terminated. ↵Steven Knight2002-04-113-4/+7
| | | | (Anthony Roach)
* Change to SConscript directory when reading it. (Steve Leblanc)Steven Knight2002-04-111-0/+15
|
* Add abspath construction variable modifier and variable (Anthony Roach)Steven Knight2002-04-114-4/+24
|
* Implement implicit dependency caching.Steven Knight2002-04-117-79/+262
|
* Implement content signature caching and --max-drift (Anthony Roach)Steven Knight2002-04-098-37/+148
|
* Clean up how the Environment dictionary is passed to function Actions. ↵Steven Knight2002-04-052-3/+41
| | | | (Charles Crain)
* Various performance enhancements. (Anthony Roach)Steven Knight2002-04-054-10/+32
|
* Fix various problems with --profile (Anthony Roach)Steven Knight2002-04-051-3/+7
|
* Add --debug=dtree option (Anthony Roach)Steven Knight2002-04-051-2/+13
|
* Fix rescanning of files with no implicit deps (Anthony Roach)Steven Knight2002-04-043-13/+27
|
* Fix --debug=tree for directory targets (Anthony Roach)Steven Knight2002-04-0416-1045/+776
|
* Make -c work with -n: don't remove the files!Steven Knight2002-03-311-1/+8
|
* Support a CPPFLAGS variable (a la GNU Make).Steven Knight2002-03-281-4/+4
|
* Add Fortran support.Steven Knight2002-03-282-2/+22
|
* Add more document Builders: PDF and PostScript.Steven Knight2002-03-271-4/+36
|
* Fix problems with two tests (one portability, one syntax).Steven Knight2002-03-271-2/+2
|
* Add WhereIs() functionality.Steven Knight2002-03-274-16/+109
|
* Add support for target Aliases.Steven Knight2002-03-2511-15/+293
|
* Move SCons.Util.scons_str2nodes() to SCons.Node/__init__.py and shorten its ↵Steven Knight2002-03-249-117/+129
| | | | name.
* Support the build of TeX documents (Task 47116). (Steve Leblanc)Steven Knight2002-03-231-2/+29
|
* Make env['FOO'] by shorthand for env.Dictionary()['FOO'] (Anthony Roach)Steven Knight2002-03-222-0/+15
|
* Move autogenerate() from SCons.Util.py to SCons.Environmentpy.Steven Knight2002-03-229-224/+193
|
* Make construction variables with a value of 0 work (Anthony Roach)Steven Knight2002-03-212-1/+9
|
* Speed up SCons.Sig.Calculator.bsig() (second most time-consuming function) ↵Steven Knight2002-03-212-11/+12
| | | | by 6%-12% by using the new Walker eval_func argument.
* Fix subtle problems in end cases with using multiple scanners on a Node.Steven Knight2002-03-2011-161/+276
|
* Enhance the Walker to call a third supplied function to actually work on a ↵Steven Knight2002-03-193-36/+52
| | | | Node, and pass the parent Node to both the out-of-date-check function and the work function. Refactor Taskmaster to use the new Walker function.
* Turn the Prog Scanner into a prototype pattern that looks up LIBPATH Nodes ↵Steven Knight2002-03-162-35/+69
| | | | (the way the C Scanner does CPPPATH).