summaryrefslogtreecommitdiffstats
path: root/asciiquarium/SConstruct
diff options
context:
space:
mode:
Diffstat (limited to 'asciiquarium/SConstruct')
-rw-r--r--asciiquarium/SConstruct32
1 files changed, 0 insertions, 32 deletions
diff --git a/asciiquarium/SConstruct b/asciiquarium/SConstruct
deleted file mode 100644
index 61fe6e9e..00000000
--- a/asciiquarium/SConstruct
+++ /dev/null
@@ -1,32 +0,0 @@
-#! /usr/bin/env python
-
-###################################################################
-# LOAD THE ENVIRONMENT AND SET UP THE TOOLS
-###################################################################
-
-## Load the builders in config
-tools = [ 'default', 'generic', 'kde' ]
-toolpath = [ './', './admin' ]
-
-# Required as part of SCons
-env = Environment(tools = tools, toolpath = toolpath)
-
-# Pull in some default settings.
-env.KDEuse("environ rpath nohelp")
-#env.KDEuse("environ rpath lang_qt thread nohelp")
-
-# Export the environment so that SConscript files in subdirs can access it.
-Export('env')
-
-###################################################################
-# SCRIPTS FOR BUILDING THE TARGETS
-###################################################################
-
-distClean = env.Action("find %s -name '*.pyc' -exec rm {} \\;" % env.GetLaunchDir())
-dist = env.Alias('dist', action = distClean)
-
-env.Alias(dist, action = Delete("%s/cache" % env.GetLaunchDir()))
-env.Clean(dist, ['cache'])
-env.AlwaysBuild(dist)
-
-env.subdirs('src')