diff options
Diffstat (limited to 'src/engine/SCons/Defaults.py')
-rw-r--r-- | src/engine/SCons/Defaults.py | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/src/engine/SCons/Defaults.py b/src/engine/SCons/Defaults.py new file mode 100644 index 0000000..56a15f7 --- /dev/null +++ b/src/engine/SCons/Defaults.py @@ -0,0 +1,22 @@ +"""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__" + + + +import SCons.Builder + + + +Object = SCons.Builder.Builder(name = 'Object', + action = 'cc -c -o %(target)s %(source)s') +Program = SCons.Builder.Builder(name = 'Program', + action = 'cc -o %(target)s %(source)s') + +Builders = [Object, Program] |