summaryrefslogtreecommitdiffstats
path: root/src/scons/Defaults.py
diff options
context:
space:
mode:
authorSteven Knight <knight@baldmt.com>2001-09-17 04:57:00 (GMT)
committerSteven Knight <knight@baldmt.com>2001-09-17 04:57:00 (GMT)
commit3c81bb2bd0e009c0ee81570e17b0f87ad8d034ab (patch)
tree1a08c189644909cdadc489cce0eaa487e2c6f578 /src/scons/Defaults.py
parente2faf9c21bc7712fcdc547b7df0f12a6b2177601 (diff)
downloadSCons-3c81bb2bd0e009c0ee81570e17b0f87ad8d034ab.zip
SCons-3c81bb2bd0e009c0ee81570e17b0f87ad8d034ab.tar.gz
SCons-3c81bb2bd0e009c0ee81570e17b0f87ad8d034ab.tar.bz2
Run setup.py on the unpacked .tar.gz for testing.
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]