diff options
author | Steven Knight <knight@baldmt.com> | 2002-10-01 18:16:15 (GMT) |
---|---|---|
committer | Steven Knight <knight@baldmt.com> | 2002-10-01 18:16:15 (GMT) |
commit | dffe09bd431aeeb996ad14763154abe5c412b93e (patch) | |
tree | e2d9c5d145c1af4978dbabc5998210308684145b /doc | |
parent | 752502105f63c91ee1f87cc35b83634c6bc42c3b (diff) | |
download | SCons-dffe09bd431aeeb996ad14763154abe5c412b93e.zip SCons-dffe09bd431aeeb996ad14763154abe5c412b93e.tar.gz SCons-dffe09bd431aeeb996ad14763154abe5c412b93e.tar.bz2 |
Add SHOBJPREFIX AND SHOBJSUFFIX.
Diffstat (limited to 'doc')
-rw-r--r-- | doc/man/scons.1 | 19 |
1 files changed, 13 insertions, 6 deletions
diff --git a/doc/man/scons.1 b/doc/man/scons.1 index 6ff35db..47e2141 100644 --- a/doc/man/scons.1 +++ b/doc/man/scons.1 @@ -882,11 +882,12 @@ Source files must have one of the same set of extensions specified above for the .B StaticObject builder. -The target object file prefix -(specified by the $OBJPREFIX construction variable; nothing by default) +The target shared object file prefix +(specified by the $SHOBJPREFIX construction variable; +by default, the same as $OBJPREFIX) and suffix -(specified by the $OBJSUFFIX construction variable; -\.obj on Windows systems, .o on POSIX systems) +(specified by the $SHOBJSUFFIX construction variable; +by default, the same as $OBJSUFFIX) are automatically added to the target if not already present. Examples: @@ -1781,10 +1782,10 @@ General options passed to the linker. The command line used to link object files into an executable. .IP OBJPREFIX -The prefix used for object file names. +The prefix used for (static) object file names. .IP OBJSUFFIX -The suffix used for object file names. +The suffix used for (static) object file names. .IP PDFCOM The command line used to convert TeX DVI files into a PDF file. @@ -1875,6 +1876,12 @@ The linker for programs that use shared libraries. .IP SHLINKFLAGS General options passed to the linker for programs using shared libraries. +.IP SHOBJPREFIX +The prefix used for shared object file names. + +.IP SHOBJSUFFIX +The suffix used for shared object file names. + .IP TAR The tar archiver. |