diff options
author | Steven Knight <knight@baldmt.com> | 2004-12-03 04:09:35 (GMT) |
---|---|---|
committer | Steven Knight <knight@baldmt.com> | 2004-12-03 04:09:35 (GMT) |
commit | abcf29987d2baa25d51716f888015aaa9d104d36 (patch) | |
tree | 55b5ddbfe2baca260bb10c209041d2235d1f9565 /doc | |
parent | 2fa621343311180c159ee09262cefe0ee0ad2d83 (diff) | |
download | SCons-abcf29987d2baa25d51716f888015aaa9d104d36.zip SCons-abcf29987d2baa25d51716f888015aaa9d104d36.tar.gz SCons-abcf29987d2baa25d51716f888015aaa9d104d36.tar.bz2 |
More command-line customizability: , , , , .
Diffstat (limited to 'doc')
-rw-r--r-- | doc/man/scons.1 | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/doc/man/scons.1 b/doc/man/scons.1 index f620a9f..f83fc96 100644 --- a/doc/man/scons.1 +++ b/doc/man/scons.1 @@ -4503,6 +4503,16 @@ The command line used to call the bibliography generator for the TeX formatter and typesetter and the LaTeX structured formatter and typesetter. +.IP BIBTEXCOMSTR +The string displayed when generating a bibliography +for TeX or LaTeX. +If this is not set, then $BIBTEXCOM (the command line) is displayed. + +.ES +env = Environment(BIBTEXCOMSTR = "Generating bibliography $TARGET") +.EE + + .IP BIBTEXFLAGS General options passed to the bibliography generator for the TeX formatter and typesetter and the LaTeX structured formatter and typesetter. @@ -5584,6 +5594,15 @@ The LaTeX structured formatter and typesetter. .IP LATEXCOM The command line used to call the LaTeX structured formatter and typesetter. +.IP LATEXCOMSTR +The string displayed when calling +the LaTeX structured formatter and typesetter. +If this is not set, then $LATEXCOM (the command line) is displayed. + +.ES +env = Environment(LATEXCOMSTR = "Building $TARGET from LaTeX input $SOURCES") +.EE + .IP LATEXFLAGS General options passed to the LaTeX structured formatter and typesetter. @@ -6764,6 +6783,15 @@ The TeX formatter and typesetter. .IP TEXCOM The command line used to call the TeX formatter and typesetter. +.IP TEXCOMSTR +The string displayed when calling +the TeX formatter and typesetter. +If this is not set, then $TEXCOM (the command line) is displayed. + +.ES +env = Environment(TEXCOMSTR = "Building $TARGET from TeX input $SOURCES") +.EE + .IP TEXFLAGS General options passed to the TeX formatter and typesetter. |