summaryrefslogtreecommitdiffstats
path: root/doc
diff options
context:
space:
mode:
authorSteven Knight <knight@baldmt.com>2004-11-15 12:43:04 (GMT)
committerSteven Knight <knight@baldmt.com>2004-11-15 12:43:04 (GMT)
commit949becdd3c7437c6f6af345e25c80c24d696d487 (patch)
treef78ea2576c829038d84949add151f4a6bee1274c /doc
parent2822ea95237efa0c8a069e764c3560a3ea221cc0 (diff)
downloadSCons-949becdd3c7437c6f6af345e25c80c24d696d487.zip
SCons-949becdd3c7437c6f6af345e25c80c24d696d487.tar.gz
SCons-949becdd3c7437c6f6af345e25c80c24d696d487.tar.bz2
Easier customization of printable strings for , and .
Diffstat (limited to 'doc')
-rw-r--r--doc/man/scons.127
1 files changed, 27 insertions, 0 deletions
diff --git a/doc/man/scons.1 b/doc/man/scons.1
index 59e0d62..b2ccd71 100644
--- a/doc/man/scons.1
+++ b/doc/man/scons.1
@@ -4441,6 +4441,15 @@ The assembler.
The command line used to generate an object file
from an assembly-language source file.
+.IP ASCOMSTR
+The string displayed when an object file
+is generated from an assembly-language source file.
+If this is not set, then $ASCOM (the command line) is displayed.
+
+.ES
+env = Environment(ASCOMSTR = "Assembling $TARGET")
+.EE
+
.IP ASFLAGS
General options passed to the assembler.
@@ -4518,6 +4527,15 @@ The command line used to compile a C source file to a (static) object file.
Any options specified in the $CCFLAGS and $CPPFLAGS construction variables
are included on this command line.
+.IP CCCOMSTR
+The string displayed when a C source file
+is compiled to a (static) object file.
+If this is not set, then $CCCOM (the command line) is displayed.
+
+.ES
+env = Environment(CCCOMSTR = "Compiling $TARGET")
+.EE
+
.IP CCFLAGS
General options that are passed to the C compiler.
@@ -4773,6 +4791,15 @@ The command line used to compile a C++ source file to an object file.
Any options specified in the $CXXFLAGS and $CPPFLAGS construction variables
are included on this command line.
+.IP CXXCOMSTR
+The string displayed when a C++ source file
+is compiled to a (static) object file.
+If this is not set, then $CXXCOM (the command line) is displayed.
+
+.ES
+env = Environment(CXXCOMSTR = "Compiling $TARGET")
+.EE
+
.IP CXXFLAGS
General options that are passed to the C++ compiler.