summaryrefslogtreecommitdiffstats
path: root/SConstruct
diff options
context:
space:
mode:
authorTimothy Pearson <[email protected]>2011-11-27 22:58:41 -0600
committerTimothy Pearson <[email protected]>2011-11-27 22:58:41 -0600
commitf7fa09d48f7f1d6e271ddf9a6d8e7da9a3545e9f (patch)
tree0cb130b0238a65c84710317eef0f3c98e2832484 /SConstruct
parent2c82d91b8c5ac4b7b5813a8c09b130e12180974c (diff)
downloadabakus-f7fa09d48f7f1d6e271ddf9a6d8e7da9a3545e9f.tar.gz
abakus-f7fa09d48f7f1d6e271ddf9a6d8e7da9a3545e9f.zip
Cleanup
Diffstat (limited to 'SConstruct')
-rw-r--r--SConstruct36
1 files changed, 0 insertions, 36 deletions
diff --git a/SConstruct b/SConstruct
deleted file mode 100644
index a4a2438..0000000
--- a/SConstruct
+++ /dev/null
@@ -1,36 +0,0 @@
-#! /usr/bin/env python
-
-###################################################################
-# LOAD THE ENVIRONMENT AND SET UP THE TOOLS
-###################################################################
-
-## Load the builders in config
-tools = [ 'default', 'help', 'generic', 'kde', 'abakus' ]
-toolpath = [ './', './bksys' ]
-
-# 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")
-
-# If we're asking for help just go ahead and exit now.
-if env['HELP']:
- print env.helpText()
- Exit()
-
-if env['flex'] and env['bison']:
- env['PARSER_INCLUDED'] = True
-
-# Export the environment so that SConscript files in subdirs can access it.
-Export('env')
-
-###################################################################
-# SCRIPTS FOR BUILDING THE TARGETS
-###################################################################
-
-env.subdirs('src')
-
-env.docfolder('doc/en', 'en', 'abakus/')
-env.SConscript('doc/en/SConscript')