0f6ffdaa4d3b91d9bbf2da2285ad2f7e1646dde0
[scons.git] / src / engine / SCons / Defaults.py
1 """SCons.Defaults
2
3 Builders and other things for the local site.  Here's where we'll
4 duplicate the functionality of autoconf until we move it into the
5 installation procedure or use something like qmconf.
6
7 """
8
9 __revision__ = "__FILE__ __REVISION__ __DATE__ __DEVELOPER__"
10
11
12
13 import SCons.Builder
14
15
16
17 Object = SCons.Builder.Builder(name = 'Object',
18                                 action = 'cc -c -o %(target)s %(source)s')
19 Program = SCons.Builder.Builder(name = 'Program',
20                                 action = 'cc -o %(target)s %(source)s')
21
22 Builders = [Object, Program]
23
24 ENV = { 'PATH' : '/usr/local/bin:/bin:/usr/bin' }