summaryrefslogtreecommitdiffstats
path: root/src/scons/Defaults.py
blob: 0aa2b82e0687089eb9c69eda3836d197d44a86a9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
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]