summaryrefslogtreecommitdiffstats
path: root/src/scons/Node/__init__.py
blob: 767f29720b619076a6a8d23ac190d595a79e2576 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
"""scons.Node

The Node package for the scons software construction utility.

"""

__revision__ = "Node/__init__.py __REVISION__ __DATE__ __DEVELOPER__"



class Node:
    """The base Node class, for entities that we know how to
    build, or use to build other Nodes.
    """
    def build(self):
	self.builder.execute(target = self.path, source = self.sources)

    def builder_set(self, builder):
	self.builder = builder