« Prev 4.1.2.1 Configure Task | Table of Contents | Next » 4.1.2.3 Clean Task |
The default
task is special in that Rscons will execute it if no other task
has been requested by the user on the command line.
The default task can also be used to declare a dependency on another task that would effectively become the default. For example:
task "build" do ... end task "flash" do ... end default deps: "build"
Then when the user runs ./rscons
the "build" task will be executed.
« Prev 4.1.2.1 Configure Task | Table of Contents | Next » 4.1.2.3 Clean Task |