From 304e8005f10595cf46b083bcf340f8e13dfcd495 Mon Sep 17 00:00:00 2001 From: Bryan Schumaker Date: Sat, 2 Jun 2012 11:53:32 -0400 Subject: [PATCH] build: Remove lib/ and bin/ during a scons -c Signed-off-by: Bryan Schumaker --- Sconstruct | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Sconstruct b/Sconstruct index 5f8dd4e6..81304106 100644 --- a/Sconstruct +++ b/Sconstruct @@ -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):