summaryrefslogtreecommitdiffstats
path: root/doc/man/scons.1
diff options
context:
space:
mode:
authorSteven Knight <knight@baldmt.com>2004-11-15 18:42:13 (GMT)
committerSteven Knight <knight@baldmt.com>2004-11-15 18:42:13 (GMT)
commit27db7fcdedd3043ae5d2f7f869f07e8533e63ba3 (patch)
tree3825ac54b8ce243322193a5f38a19df4cce42a99 /doc/man/scons.1
parentef16e30c75234061b97203234d94f3776087631a (diff)
downloadSCons-27db7fcdedd3043ae5d2f7f869f07e8533e63ba3.zip
SCons-27db7fcdedd3043ae5d2f7f869f07e8533e63ba3.tar.gz
SCons-27db7fcdedd3043ae5d2f7f869f07e8533e63ba3.tar.bz2
More display customizability: , . (Also add the missing , for completeness, and gets rid of the unused SCons.Defaults.DAction object.)
Diffstat (limited to 'doc/man/scons.1')
-rw-r--r--doc/man/scons.125
1 files changed, 25 insertions, 0 deletions
diff --git a/doc/man/scons.1 b/doc/man/scons.1
index 6c11a6e..b018e98 100644
--- a/doc/man/scons.1
+++ b/doc/man/scons.1
@@ -4431,6 +4431,15 @@ The static library archiver.
.IP ARCOM
The command line used to generate a static library from object files.
+.IP ARCOMSTR
+The string displayed when an object file
+is generated from an assembly-language source file.
+If this is not set, then $ARCOM (the command line) is displayed.
+
+.ES
+env = Environment(ARCOMSTR = "Archiving $TARGET")
+.EE
+
.IP ARFLAGS
General options passed to the static library archiver.
@@ -4460,6 +4469,22 @@ after first running the file through the C preprocessor.
Any options specified in the $ASFLAGS and $CPPFLAGS construction variables
are included on this command line.
+.IP ASPPCOMSTR
+The string displayed when an object file
+is generated from an assembly-language source file
+after first running the file through the C preprocessor.
+If this is not set, then $ASPPCOM (the command line) is displayed.
+
+.ES
+env = Environment(ASPPCOMSTR = "Assembling $TARGET")
+.EE
+
+.IP ASPPFLAGS
+General options when an assembling an assembly-language
+source file into an object file
+after first running the file through the C preprocessor.
+The default is to use the value of $ASFLAGS.
+
.IP BIBTEX
The bibliography generator for the TeX formatter and typesetter and the
LaTeX structured formatter and typesetter.