4.2.1 EnvironmentsAn Environment includes:
All build targets must be registered within an build do Environment.new do |env| env.Program("myprog.exe", glob("src/**/*.c")) end end Rscons will place an object file and dependency file corresponding to each C source file under the Environment's build root. This keeps the intermediate generated build artifacts separate from the source files.
|