summaryrefslogtreecommitdiffstats
path: root/src/scons/Defaults.py
diff options
context:
space:
mode:
Diffstat (limited to 'src/scons/Defaults.py')
-rw-r--r--src/scons/Defaults.py20
1 files changed, 0 insertions, 20 deletions
diff --git a/src/scons/Defaults.py b/src/scons/Defaults.py
deleted file mode 100644
index 0aa2b82..0000000
--- a/src/scons/Defaults.py
+++ /dev/null
@@ -1,20 +0,0 @@
-"""scons.Defaults
-
-Builders and other things for the local site. Here's where we'll
-duplicate the functionality of autoconf until we move it into the
-installation procedure or use something like qmconf.
-
-"""
-
-__revision__ = "local.py __REVISION__ __DATE__ __DEVELOPER__"
-
-
-
-from scons.Builder import Builder
-
-
-
-Object = Builder(name = 'Object', action = 'cc -c -o %(target)s %(source)s')
-Program = Builder(name = 'Program', action = 'cc -o %(target)s %(source)s')
-
-Builders = [Object, Program]