summaryrefslogtreecommitdiffstats
path: root/src/engine/SCons/Defaults.py
blob: 7b5e83da2a333473d7241b798b4f4efb8fe77dfd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
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__ = "__FILE__ __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]