summaryrefslogtreecommitdiffstats
path: root/doc
diff options
context:
space:
mode:
authorSteven Knight <knight@baldmt.com>2004-11-21 21:14:41 (GMT)
committerSteven Knight <knight@baldmt.com>2004-11-21 21:14:41 (GMT)
commit9ee53a60a770d6f5a33624405d35ad4063378367 (patch)
tree361012066ed284ecad1482552d177f86a0cd664d /doc
parent07c75889f874a050aff782d1488d0269fb936744 (diff)
downloadSCons-9ee53a60a770d6f5a33624405d35ad4063378367.zip
SCons-9ee53a60a770d6f5a33624405d35ad4063378367.tar.gz
SCons-9ee53a60a770d6f5a33624405d35ad4063378367.tar.bz2
More command-line output customizability: , , , .
Diffstat (limited to 'doc')
-rw-r--r--doc/man/scons.138
1 files changed, 38 insertions, 0 deletions
diff --git a/doc/man/scons.1 b/doc/man/scons.1
index e73bada..2f504a6 100644
--- a/doc/man/scons.1
+++ b/doc/man/scons.1
@@ -5494,6 +5494,15 @@ option).
.IP JARCOM
The command line used to call the Java archive tool.
+.IP JARCOMSTR
+The string displayed when the Java archive tool
+is called
+If this is not set, then $JARCOM (the command line) is displayed.
+
+.ES
+env = Environment(JARCOMSTR = "JARchiving $SOURCES into $TARGET")
+.EE
+
.IP JARFLAGS
General options passed to the Java archive tool.
By default this is set to
@@ -5517,6 +5526,16 @@ corresponding Java class files.
Any options specified in the $JAVACFLAGS construction variable
are included on this command line.
+.IP JAVACCOMSTR
+The string displayed when compiling
+a directory tree of Java source files to
+corresponding Java class files.
+If this is not set, then $JAVACCOM (the command line) is displayed.
+
+.ES
+env = Environment(JAVACCOMSTR = "Compiling class files $TARGETS from $SOURCES")
+.EE
+
.IP JAVACFLAGS
General options that are passed to the Java compiler.
@@ -5541,6 +5560,15 @@ from Java classes.
Any options specified in the $JAVAHFLAGS construction variable
are included on this command line.
+.IP JAVAHCOMSTR
+The string displayed when C header and stub files
+are generated from Java classes.
+If this is not set, then $JAVAHCOM (the command line) is displayed.
+
+.ES
+env = Environment(JAVAHCOMSTR = "Generating header/stub file(s) $TARGETS from $SOURCES")
+.EE
+
.IP JAVAHFLAGS
General options passed to the C header and stub file generator
for Java classes.
@@ -6258,6 +6286,16 @@ from Java classes that contain RMI implementations.
Any options specified in the $RMICFLAGS construction variable
are included on this command line.
+.IP RMICCOMSTR
+The string displayed when compiling
+stub and skeleton class files
+from Java classes that contain RMI implementations.
+If this is not set, then $RMICCOM (the command line) is displayed.
+
+.ES
+env = Environment(RMICCOMSTR = "Generating stub/skeleton class files $TARGETS from $SOURCES")
+.EE
+
.IP RMICFLAGS
General options passed to the Java RMI stub compiler.