|
|
|
default(self,
argv)
Called on an input line when the command prefix is not recognized. |
source code
|
|
|
onecmd(self,
line)
Interpret the argument as though it had been typed in response
to the prompt. |
source code
|
|
|
do_build(self,
argv)
build [TARGETS] Build the specified TARGETS and their
dependencies. 'b' is a synonym. |
source code
|
|
|
do_clean(self,
argv)
clean [TARGETS] Clean (remove) the specified TARGETS
and their dependencies. 'c' is a synonym. |
source code
|
|
|
|
|
|
|
|
|
|
|
do_exit(self,
argv)
exit Exit SCons interactive mode. |
source code
|
|
|
do_help(self,
argv)
help [COMMAND] Prints help for the specified COMMAND. 'h'
and '?' are synonyms. |
source code
|
|
|
do_shell(self,
argv)
shell [COMMANDLINE] Execute COMMANDLINE in a subshell. 'sh' and
'!' are synonyms. |
source code
|
|
|
do_version(self,
argv)
version Prints SCons version information. |
source code
|
|
Inherited from cmd.Cmd :
cmdloop ,
columnize ,
complete ,
complete_help ,
completedefault ,
completenames ,
emptyline ,
get_names ,
parseline ,
postcmd ,
postloop ,
precmd ,
preloop ,
print_topics
|