Oh yeah, one thing I forgot - to clean the build (same as "make clean") one simply types<pre>scons -c</pre>It is really worth it to read their
man page.You may notice when the program is built everything goes into a new directory called build/ - it even copies the source files and SConstruct/SConscript files there. This is because I told it to, and the advantage here is that the .o files don't get all mixed in with the source files in the src/ directory, so it doesn't ruin tab-completion for those who like to edit sources on the command line between compiles. The vdrift binary also ends up in build/ so the runtime/setup script won't work anymore (doesn't matter though, it's about to get replaced with an install target anyway).