Build scripts and the rm command

It is common for a makefile to include a target whose build script invokes a command like rm to delete files.

Some Windows installations include rm commands that do not actually delete a file, but move it to another directory. As a result, build script temporary files become sibling DOs of the targets. To avoid this effect, make sure to use a delete command--del, for example--that actually delete files.