diff options
author | Steven Knight <knight@baldmt.com> | 2004-11-15 16:52:55 (GMT) |
---|---|---|
committer | Steven Knight <knight@baldmt.com> | 2004-11-15 16:52:55 (GMT) |
commit | 6cb1e6419c9879e48a92fb55e70bde4464dee9f2 (patch) | |
tree | 7b36654e92e7e7607b04f1ed55758e7f91cdc2b4 /doc/man/scons.1 | |
parent | 8f770d113261de635c6a20434c9309899165a024 (diff) | |
download | SCons-6cb1e6419c9879e48a92fb55e70bde4464dee9f2.zip SCons-6cb1e6419c9879e48a92fb55e70bde4464dee9f2.tar.gz SCons-6cb1e6419c9879e48a92fb55e70bde4464dee9f2.tar.bz2 |
Add more command-line customizability: and .
Diffstat (limited to 'doc/man/scons.1')
-rw-r--r-- | doc/man/scons.1 | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/doc/man/scons.1 b/doc/man/scons.1 index 511dbac..6c11a6e 100644 --- a/doc/man/scons.1 +++ b/doc/man/scons.1 @@ -5500,6 +5500,15 @@ General options passed to the lexical analyzer generator. The command line used to call the lexical analyzer generator to generate a source file. +.IP LEXCOMSTR +The string displayed when generating a source file +using the lexical analyzer generator. +If this is not set, then $LEXCOM (the command line) is displayed. + +.ES +env = Environment(LEXCOMSTR = "Lex'ing $TARGET from $SOURCES") +.EE + .IP _LIBDIRFLAGS An automatically-generated construction variable containing the linker command-line options @@ -6622,6 +6631,15 @@ The parser generator. The command line used to call the parser generator to generate a source file. +.IP YACCCOMSTR +The string displayed when generating a source file +using the parser generator. +If this is not set, then $YACCCOM (the command line) is displayed. + +.ES +env = Environment(YACCCOMSTR = "Yacc'ing $TARGET from $SOURCES") +.EE + .IP YACCFLAGS General options passed to the parser generator. If $YACCFLAGS contains a \-d option, |