WAF: simplify wscripts using the new chained uselib_local dependencies feature of WAF SVN; now build all samples and examples; add --disable-rpath configure option; add WAF build instructions.

This commit is contained in:
Gustavo J. A. M. Carneiro
2007-05-13 12:46:18 +01:00
parent e47155fe77
commit ca2416f431
14 changed files with 149 additions and 39 deletions

View File

@@ -5,7 +5,7 @@ def build(bld):
node = bld.create_obj('cpp', 'shlib')
node.name = 'ns3-node'
node.target = node.name
node.deps = ['ns3-core', 'ns3-common', 'ns3-simulator']
node.uselib_local = ['ns3-core', 'ns3-common', 'ns3-simulator']
node.source = [
'node.cc',
'ipv4-address.cc',