Moves devices/* and routing/* to src/

This commit is contained in:
Lalith Suresh
2011-03-04 01:26:54 +00:00
parent 3cd5fc27a8
commit 1ae8c1b656
611 changed files with 40 additions and 40 deletions

19
src/bridge/wscript Normal file
View File

@@ -0,0 +1,19 @@
## -*- Mode: python; py-indent-offset: 4; indent-tabs-mode: nil; coding: utf-8; -*-
def build(bld):
obj = bld.create_ns3_module('bridge', ['network'])
obj.source = [
'model/bridge-net-device.cc',
'model/bridge-channel.cc',
'helper/bridge-helper.cc',
]
headers = bld.new_task_gen('ns3header')
headers.module = 'bridge'
headers.source = [
'model/bridge-net-device.h',
'model/bridge-channel.h',
'helper/bridge-helper.h',
]
if bld.env['ENABLE_EXAMPLES']:
bld.add_subdirs('examples')