12 lines
452 B
Python
12 lines
452 B
Python
## -*- Mode: python; py-indent-offset: 4; indent-tabs-mode: nil; coding: utf-8; -*-
|
|
|
|
def build(bld):
|
|
obj = bld.create_ns3_program( 'wimax-ipv4', ['wimax', 'internet-node'])
|
|
obj.source = 'wimax-ipv4.cc'
|
|
|
|
obj = bld.create_ns3_program( 'wimax-multicast', ['wimax', 'internet-node'])
|
|
obj.source = 'wimax-multicast.cc'
|
|
|
|
obj = bld.create_ns3_program( 'wimax-simple', ['wimax', 'internet-node'])
|
|
obj.source = 'wimax-simple.cc'
|