build: Remove lib/ and bin/ during a scons -c

Signed-off-by: Bryan Schumaker <bjschuma@gmail.com>
This commit is contained in:
Bryan Schumaker 2012-06-02 11:53:32 -04:00
parent e4a3b8902f
commit 304e8005f1
1 changed files with 1 additions and 1 deletions

View File

@ -63,7 +63,7 @@ env.Alias("install", dirs)
env.Command("uninstall", None, Delete(FindInstalledFiles()))
# Clean up the build directory
Clean(ocarina, ["include/version.h"])
Clean(ocarina, ["include/version.h", "bin/", "lib/"])
# Create a tarball
def git_archive(target, source, env):