summaryrefslogtreecommitdiffstats
path: root/Source/cmLocalUnixMakefileGenerator3.cxx
Commit message (Collapse)AuthorAgeFilesLines
* ENH: Added support for import libraries created by executable and module ↵Brad King2007-03-191-1/+2
| | | | targets. The module import libraries should never be used but some windows compilers always create them for .dll files since there is no distinction from shared libraries on that platform. The executable import libraries may be used to create modules that when loaded bind to symbols from the executables. This is an enhancement related to bug#4210 though not requested by it explicitly.
* BUG: Need to include relative path top information in directory information ↵Brad King2007-03-161-2/+25
| | | | so that relative path conversion during dependency generation works with the same rules as project generation.
* ENH: Added computation of object file names that are almost always short ↵Brad King2007-03-161-16/+31
| | | | enough to not exceed the filesystem path length limitation. This is useful when a source file from outside the tree is referenced with a long full path. The object file name previously would contain the entire path which when combined with the build output directory could exceed the filesystem limit. Now CMake recognizes this case and replaces enough of the beginning of the full path to the source file with an md5sum of the replaced portion to make the name fit on disk. This addresses bug#4520.
* BUG: Reverting previous changes related to using an empty string for a ↵Brad King2007-03-141-0/+4
| | | | relative path to the current directory. Too many places want the . version. Instead we can just convert the . to an empty string in the one place that motiviated the original change.
* ENH: Replaced LibraryOutputPath and ExecutableOutputPath variables in ↵Brad King2007-03-081-62/+11
| | | | Makefile and VS generators to instead ask each target for its output path. This significantly reduces total code size and centralizes previously duplicate code. It is also a step towards bug#2240.
* ENH: Ask the target for its own directory in case of bundle instead of ↵Brad King2007-03-081-6/+2
| | | | directly using ExecutableOutputPath.
* BUG: Compute HomeRelativeOutputPath following the rules of ↵Brad King2007-03-081-5/+5
| | | | RelativePathTopBinary by going through the Convert() method. This supports out-of-binary build trees without using relative paths that go outside trees managed by CMake.
* ENH: Fixed recursive make call target escaping for Borland to support ↵Brad King2007-03-081-0/+7
| | | | SubDirSpaces test.
* ENH: Updated GetRecursiveMakeCall to use EscapeForShell instead of MAKEFILE ↵Brad King2007-03-081-11/+9
| | | | conversion. This code is special because it is the only place that a make target name is passed on a command line.
* ENH: Removed useless method ConvertToMakeTarget and all calls to it. It had ↵Brad King2007-03-081-25/+0
| | | | a buggy implementation that caused it to do nothing.
* STYLE: Removed unused calls to Convert.Brad King2007-03-081-6/+0
|
* ENH: one more pass at paths with spaces and parensBill Hoffman2007-02-281-7/+8
|
* BUG: Fix for cmake_force target in Borland Makefiles.Brad King2007-02-281-0/+10
|
* ENH: add a fix for spaces in the path again...Bill Hoffman2007-02-271-2/+9
|
* ENH: fix for spaces in the path and mingwBill Hoffman2007-02-271-1/+2
|
* ENH: fix parens in the path with spaces in the pathBill Hoffman2007-02-221-2/+2
|
* ENH: fixed more bugs with spaces in the pathKen Martin2007-02-191-1/+2
|
* BUG: fix for spaces in path for nmakeKen Martin2007-02-191-1/+1
|
* ENH: check in initial conv library stuffBill Hoffman2007-02-161-0/+11
|
* BUG: The .pdb file generated for a library or executable should match the ↵Brad King2007-02-011-1/+2
| | | | real file name used for the target. This addresses bug#3277.
* ENH: unify version stuff, get rid of it out of cmake and cmMakefile and only ↵Bill Hoffman2006-11-291-2/+3
| | | | use cmVersion
* BUG: Juse use cmake -E echo instead of the native echo on MinGW makefiles. ↵Brad King2006-10-131-1/+3
| | | | The echo; hack did not work when running from ctest.
* BUG: Avoid duplicate conversion to output path.Brad King2006-10-101-12/+13
|
* BUG: Hack to make echo command work properly in mingw32-make.Brad King2006-10-051-1/+2
|
* BUG: Fixed display of custom command comments with quotes, dollars, and ↵Brad King2006-10-041-13/+2
| | | | other special characters in them.
* BUG: Fixed inclusion of progress.make from subdirectory makefiles.Brad King2006-09-291-1/+1
|
* BUG: Moved progress.make file into CMakeFiles subdirectory to keep things clean.Brad King2006-09-281-2/+10
|
* BUG: Do not filter system directories for include file dependencies.Brad King2006-09-281-1/+1
|
* ENH: Re-implemented command line argument shell quoting to support several ↵Brad King2006-09-271-1/+11
| | | | platforms with one code base.
* COMP: Fix shadowed local variable created by previous cmake_force change.Brad King2006-09-211-4/+0
|
* BUG: Centralized generation of command line arguments in escaped form. This ↵Brad King2006-09-211-10/+1
| | | | addresses bug#3786 for several platforms.
* BUG: cmake_force needs to be written into build.make as well as Makefile.Brad King2006-09-201-11/+11
|
* BUG: Fixed ordering of code generated in Makefile and build.make files to ↵Brad King2006-09-081-32/+40
| | | | make sure .SUFFIXES rule comes as early as possible. Also cleaned up documentation in generated files.
* BUG: Patch from Alex to fix name of includecache files to not look like ↵Brad King2006-09-021-1/+2
| | | | source files.
* ENH: Make sure all custom command outputs are up to date before scanning ↵Brad King2006-08-311-45/+1
| | | | dependencies. This avoids the need to pass a list of generated files to the dependency scanning code and to rescan after the files have been generated. Currently there is no notion of implicit dependencies of the custom commands themselves so this design is safe. We only need to make sure implicit dependencies are up to date before the make process for the /build part of a target is executed because only this process loads them. This is a step towards fixing bug#3658.
* ENH: Adding install/local global target for Makefile generators. This runs ↵Brad King2006-08-291-1/+1
| | | | installation only in the current directory and not subdirectories.
* ENH: Centralized generation of targets listed in the help to be done by the ↵Brad King2006-08-231-2/+9
| | | | code that actually writes the targets.
* BUG: Added object language to list of object files in a local generator's ↵Brad King2006-08-151-5/+18
| | | | directory. Fixed generation of preprocessing and assembly rules to be done only for C and C++ objects.
* BUG: add newline for some versions of makeAndy Cedilnik2006-08-141-1/+1
|
* ENH: Changed preprocessed source extension to .i and assembly extension to ↵Brad King2006-08-091-2/+2
| | | | .s for more portability.
* ENH: Added options CMAKE_SKIP_PREPROCESSED_SOURCE_RULES and ↵Brad King2006-08-091-1/+7
| | | | CMAKE_SKIP_ASSEMBLY_SOURCE_RULES to allow projects to disable generation of .E and .S rules.
* ENH: Added generation of rules to manually request preprocessed or generated ↵Brad King2006-08-081-2/+34
| | | | assembly sources.
* ENH: Moved GetSourceFileLanguage up to cmLocalGenerator.Brad King2006-08-031-16/+0
|
* ENH: Restoring previous change with a fix.Brad King2006-08-021-22/+35
|
* ENH: undo change that broke borland 5.6 contBill Hoffman2006-08-011-35/+22
|
* ENH: Moved generation of directory-level object convenience rules to a ↵Brad King2006-08-011-22/+35
| | | | separate method. This will aid generation of more such rules later.
* COMP: Fix and/or disable warnings for Borland 5.6 build.Brad King2006-08-011-1/+1
|
* ENH: added progress for subdir all targets and fixed compiler waringKen Martin2006-07-121-2/+4
|
* ENH: Moved unique object file name computation from ↵Brad King2006-07-111-114/+4
| | | | cmLocalUnixMakefileGenerator3 up to cmLocalGenerator for use by all generators. Created cmLocalVisualStudioGenerator as superclass for all VS generators. Implemented on-demand unique object file name computation for VS 7 generator to avoid slow compiles when all sources are in subdirectories.
* BUG: changed to progress to make it more flexible and to no relink targets ↵Ken Martin2006-07-111-15/+66
| | | | as often