tutorial/wscript
author Craig Dowell <craigdo@ee.washington.edu>
Fri, 05 Oct 2007 16:00:04 -0700
changeset 1835 ccd0fc4d9bf8
parent 1539 69d32521f6b8
child 1838 25d76cec436b
permissions -rw-r--r--
prototype address and network allocation
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
1502
4b4799567e2a add tutorial directory and hello-simulator
Craig Dowell <craigdo@ee.washington.edu>
parents:
diff changeset
     1
## -*- Mode: python; py-indent-offset: 4; indent-tabs-mode: nil; coding: utf-8; -*-
4b4799567e2a add tutorial directory and hello-simulator
Craig Dowell <craigdo@ee.washington.edu>
parents:
diff changeset
     2
4b4799567e2a add tutorial directory and hello-simulator
Craig Dowell <craigdo@ee.washington.edu>
parents:
diff changeset
     3
def build(bld):
4b4799567e2a add tutorial directory and hello-simulator
Craig Dowell <craigdo@ee.washington.edu>
parents:
diff changeset
     4
    obj = bld.create_ns3_program('hello-simulator',
4b4799567e2a add tutorial directory and hello-simulator
Craig Dowell <craigdo@ee.washington.edu>
parents:
diff changeset
     5
        ['core'])
4b4799567e2a add tutorial directory and hello-simulator
Craig Dowell <craigdo@ee.washington.edu>
parents:
diff changeset
     6
    obj.source = 'hello-simulator.cc'
1529
042ae54d795c tutorial files
Craig Dowell <craigdo@ee.washington.edu>
parents: 1502
diff changeset
     7
1539
69d32521f6b8 tutorial
Craig Dowell <craigdo@ee.washington.edu>
parents: 1529
diff changeset
     8
    obj = bld.create_ns3_program('tutorial-csma-echo',
1529
042ae54d795c tutorial files
Craig Dowell <craigdo@ee.washington.edu>
parents: 1502
diff changeset
     9
        ['core'])
1539
69d32521f6b8 tutorial
Craig Dowell <craigdo@ee.washington.edu>
parents: 1529
diff changeset
    10
    obj.source = 'tutorial-csma-echo.cc'
1529
042ae54d795c tutorial files
Craig Dowell <craigdo@ee.washington.edu>
parents: 1502
diff changeset
    11
1539
69d32521f6b8 tutorial
Craig Dowell <craigdo@ee.washington.edu>
parents: 1529
diff changeset
    12
    obj = bld.create_ns3_program('tutorial-csma-echo-ascii-trace',
1529
042ae54d795c tutorial files
Craig Dowell <craigdo@ee.washington.edu>
parents: 1502
diff changeset
    13
        ['core'])
1539
69d32521f6b8 tutorial
Craig Dowell <craigdo@ee.washington.edu>
parents: 1529
diff changeset
    14
    obj.source = 'tutorial-csma-echo-ascii-trace.cc'
1529
042ae54d795c tutorial files
Craig Dowell <craigdo@ee.washington.edu>
parents: 1502
diff changeset
    15
1539
69d32521f6b8 tutorial
Craig Dowell <craigdo@ee.washington.edu>
parents: 1529
diff changeset
    16
    obj = bld.create_ns3_program('tutorial-csma-echo-pcap-trace',
1529
042ae54d795c tutorial files
Craig Dowell <craigdo@ee.washington.edu>
parents: 1502
diff changeset
    17
        ['core'])
1539
69d32521f6b8 tutorial
Craig Dowell <craigdo@ee.washington.edu>
parents: 1529
diff changeset
    18
    obj.source = 'tutorial-csma-echo-pcap-trace.cc'
1529
042ae54d795c tutorial files
Craig Dowell <craigdo@ee.washington.edu>
parents: 1502
diff changeset
    19
1539
69d32521f6b8 tutorial
Craig Dowell <craigdo@ee.washington.edu>
parents: 1529
diff changeset
    20
    obj = bld.create_ns3_program('tutorial-naive-dumbbell',
1529
042ae54d795c tutorial files
Craig Dowell <craigdo@ee.washington.edu>
parents: 1502
diff changeset
    21
        ['core'])
1539
69d32521f6b8 tutorial
Craig Dowell <craigdo@ee.washington.edu>
parents: 1529
diff changeset
    22
    obj.source = 'tutorial-naive-dumbbell.cc'
1835
ccd0fc4d9bf8 prototype address and network allocation
Craig Dowell <craigdo@ee.washington.edu>
parents: 1539
diff changeset
    23
ccd0fc4d9bf8 prototype address and network allocation
Craig Dowell <craigdo@ee.washington.edu>
parents: 1539
diff changeset
    24
    obj = bld.create_ns3_program('testipv4',
ccd0fc4d9bf8 prototype address and network allocation
Craig Dowell <craigdo@ee.washington.edu>
parents: 1539
diff changeset
    25
        ['core'])
ccd0fc4d9bf8 prototype address and network allocation
Craig Dowell <craigdo@ee.washington.edu>
parents: 1539
diff changeset
    26
    obj.source = ['testipv4.cc', 'ipv4-address-extended.cc']