author | Mitch Watrous <watrous@u.washington.edu> |
Fri, 06 May 2011 13:21:20 -0700 | |
changeset 7140 | d203296efb63 |
parent 7089 | ebe626d82692 |
child 7712 | e22640804bf7 |
permissions | -rw-r--r-- |
5369
86beb5869f67
split examples, add examples, tweak test.py to minimize builds
Craig Dowell <craigdo@ee.washington.edu>
parents:
diff
changeset
|
1 |
## -*- Mode: python; py-indent-offset: 4; indent-tabs-mode: nil; coding: utf-8; -*- |
86beb5869f67
split examples, add examples, tweak test.py to minimize builds
Craig Dowell <craigdo@ee.washington.edu>
parents:
diff
changeset
|
2 |
|
86beb5869f67
split examples, add examples, tweak test.py to minimize builds
Craig Dowell <craigdo@ee.washington.edu>
parents:
diff
changeset
|
3 |
def build(bld): |
86beb5869f67
split examples, add examples, tweak test.py to minimize builds
Craig Dowell <craigdo@ee.washington.edu>
parents:
diff
changeset
|
4 |
obj = bld.create_ns3_program('tcp-large-transfer', |
6873
b2234c2d38d9
Fix dependencies in various wscripts
Mitch Watrous <watrous@u.washington.edu>
parents:
6834
diff
changeset
|
5 |
['point-to-point', 'applications', 'internet']) |
5369
86beb5869f67
split examples, add examples, tweak test.py to minimize builds
Craig Dowell <craigdo@ee.washington.edu>
parents:
diff
changeset
|
6 |
obj.source = 'tcp-large-transfer.cc' |
86beb5869f67
split examples, add examples, tweak test.py to minimize builds
Craig Dowell <craigdo@ee.washington.edu>
parents:
diff
changeset
|
7 |
|
86beb5869f67
split examples, add examples, tweak test.py to minimize builds
Craig Dowell <craigdo@ee.washington.edu>
parents:
diff
changeset
|
8 |
obj = bld.create_ns3_program('tcp-nsc-lfn', |
6873
b2234c2d38d9
Fix dependencies in various wscripts
Mitch Watrous <watrous@u.washington.edu>
parents:
6834
diff
changeset
|
9 |
['point-to-point', 'applications', 'internet']) |
5369
86beb5869f67
split examples, add examples, tweak test.py to minimize builds
Craig Dowell <craigdo@ee.washington.edu>
parents:
diff
changeset
|
10 |
obj.source = 'tcp-nsc-lfn.cc' |
86beb5869f67
split examples, add examples, tweak test.py to minimize builds
Craig Dowell <craigdo@ee.washington.edu>
parents:
diff
changeset
|
11 |
|
86beb5869f67
split examples, add examples, tweak test.py to minimize builds
Craig Dowell <craigdo@ee.washington.edu>
parents:
diff
changeset
|
12 |
obj = bld.create_ns3_program('tcp-nsc-zoo', |
7140
d203296efb63
Fix an example dependency problem and fix some paths in the documentation
Mitch Watrous <watrous@u.washington.edu>
parents:
7089
diff
changeset
|
13 |
['csma', 'internet', 'applications']) |
5369
86beb5869f67
split examples, add examples, tweak test.py to minimize builds
Craig Dowell <craigdo@ee.washington.edu>
parents:
diff
changeset
|
14 |
obj.source = 'tcp-nsc-zoo.cc' |
86beb5869f67
split examples, add examples, tweak test.py to minimize builds
Craig Dowell <craigdo@ee.washington.edu>
parents:
diff
changeset
|
15 |
|
86beb5869f67
split examples, add examples, tweak test.py to minimize builds
Craig Dowell <craigdo@ee.washington.edu>
parents:
diff
changeset
|
16 |
obj = bld.create_ns3_program('tcp-star-server', |
6873
b2234c2d38d9
Fix dependencies in various wscripts
Mitch Watrous <watrous@u.washington.edu>
parents:
6834
diff
changeset
|
17 |
['point-to-point', 'applications', 'internet']) |
5369
86beb5869f67
split examples, add examples, tweak test.py to minimize builds
Craig Dowell <craigdo@ee.washington.edu>
parents:
diff
changeset
|
18 |
obj.source = 'tcp-star-server.cc' |
86beb5869f67
split examples, add examples, tweak test.py to minimize builds
Craig Dowell <craigdo@ee.washington.edu>
parents:
diff
changeset
|
19 |
|
86beb5869f67
split examples, add examples, tweak test.py to minimize builds
Craig Dowell <craigdo@ee.washington.edu>
parents:
diff
changeset
|
20 |
obj = bld.create_ns3_program('star', |
7089
ebe626d82692
Bug 1105 Move topology helpers into separate per-device modules
John Abraham<john.abraham@gatech.edu>
parents:
6883
diff
changeset
|
21 |
['netanim', 'point-to-point', 'point-to-point-layout', 'applications', 'internet']) |
5369
86beb5869f67
split examples, add examples, tweak test.py to minimize builds
Craig Dowell <craigdo@ee.washington.edu>
parents:
diff
changeset
|
22 |
obj.source = 'star.cc' |
6690 | 23 |
|
24 |
obj = bld.create_ns3_program('tcp-bulk-send', |
|
6873
b2234c2d38d9
Fix dependencies in various wscripts
Mitch Watrous <watrous@u.washington.edu>
parents:
6834
diff
changeset
|
25 |
['point-to-point', 'applications', 'internet']) |
6690 | 26 |
obj.source = 'tcp-bulk-send.cc' |