diff options
Diffstat (limited to 'src/scons/Defaults.py')
| -rw-r--r-- | src/scons/Defaults.py | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/src/scons/Defaults.py b/src/scons/Defaults.py new file mode 100644 index 0000000..0aa2b82 --- /dev/null +++ b/src/scons/Defaults.py @@ -0,0 +1,20 @@ +"""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] |
