2007-05-07 12:01:51 +01:00
|
|
|
## -*- Mode: python; py-indent-offset: 4; indent-tabs-mode: nil; coding: utf-8; -*-
|
|
|
|
|
|
|
|
|
|
def build(bld):
|
2007-08-08 15:10:36 +01:00
|
|
|
node = bld.create_ns3_module('node', ['core', 'common', 'simulator'])
|
2007-05-07 12:01:51 +01:00
|
|
|
node.source = [
|
2007-07-26 14:03:41 +02:00
|
|
|
'address.cc',
|
2007-09-12 11:39:46 +02:00
|
|
|
'mac48-address.cc',
|
|
|
|
|
'mac64-address.cc',
|
2007-07-30 13:29:36 +02:00
|
|
|
'inet-socket-address.cc',
|
2007-08-01 09:02:03 +02:00
|
|
|
'packet-socket-address.cc',
|
2007-06-04 16:21:05 +02:00
|
|
|
'node.cc',
|
2007-05-07 12:01:51 +01:00
|
|
|
'ipv4-address.cc',
|
2008-03-24 15:31:54 -07:00
|
|
|
'ipv4-address-generator.cc',
|
2007-05-07 12:01:51 +01:00
|
|
|
'net-device.cc',
|
2007-07-30 10:35:03 +02:00
|
|
|
'address-utils.cc',
|
2007-05-07 12:01:51 +01:00
|
|
|
'llc-snap-header.cc',
|
2007-07-27 21:16:40 +02:00
|
|
|
'ethernet-header.cc',
|
|
|
|
|
'ethernet-trailer.cc',
|
2007-05-07 12:01:51 +01:00
|
|
|
'ipv4-route.cc',
|
|
|
|
|
'queue.cc',
|
2007-06-12 14:05:01 +01:00
|
|
|
'drop-tail-queue.cc',
|
2007-05-07 12:01:51 +01:00
|
|
|
'channel.cc',
|
|
|
|
|
'node-list.cc',
|
|
|
|
|
'socket.cc',
|
2007-06-12 14:05:01 +01:00
|
|
|
'socket-factory.cc',
|
2007-08-01 09:02:03 +02:00
|
|
|
'packet-socket-factory.cc',
|
|
|
|
|
'packet-socket.cc',
|
2008-05-20 10:30:40 -07:00
|
|
|
'udp-socket.cc',
|
2008-05-17 12:08:20 -07:00
|
|
|
'udp-socket-factory.cc',
|
2008-05-20 12:16:55 -07:00
|
|
|
'tcp-socket-factory.cc',
|
2007-06-12 14:05:01 +01:00
|
|
|
'ipv4.cc',
|
2007-05-13 12:52:38 +01:00
|
|
|
'application.cc',
|
2008-03-20 15:27:48 -07:00
|
|
|
'simple-channel.cc',
|
|
|
|
|
'simple-net-device.cc',
|
2007-05-07 12:01:51 +01:00
|
|
|
]
|
|
|
|
|
|
|
|
|
|
headers = bld.create_obj('ns3header')
|
2007-12-26 13:40:39 +00:00
|
|
|
headers.module = 'node'
|
2007-05-07 12:01:51 +01:00
|
|
|
headers.source = [
|
2007-07-26 14:03:41 +02:00
|
|
|
'address.h',
|
2007-09-12 11:39:46 +02:00
|
|
|
'mac48-address.h',
|
|
|
|
|
'mac64-address.h',
|
2007-07-30 13:29:36 +02:00
|
|
|
'inet-socket-address.h',
|
2007-08-01 09:02:03 +02:00
|
|
|
'packet-socket-address.h',
|
2007-06-04 16:21:05 +02:00
|
|
|
'node.h',
|
2007-05-07 12:01:51 +01:00
|
|
|
'ipv4-address.h',
|
2008-03-24 15:31:54 -07:00
|
|
|
'ipv4-address-generator.h',
|
2007-05-07 12:01:51 +01:00
|
|
|
'net-device.h',
|
2007-07-30 10:35:03 +02:00
|
|
|
'address-utils.h',
|
2007-05-07 12:01:51 +01:00
|
|
|
'ipv4-route.h',
|
|
|
|
|
'queue.h',
|
2007-06-12 14:05:01 +01:00
|
|
|
'drop-tail-queue.h',
|
2007-05-07 12:01:51 +01:00
|
|
|
'llc-snap-header.h',
|
2007-07-27 21:16:40 +02:00
|
|
|
'ethernet-header.h',
|
|
|
|
|
'ethernet-trailer.h',
|
2007-05-07 12:01:51 +01:00
|
|
|
'channel.h',
|
|
|
|
|
'node-list.h',
|
|
|
|
|
'socket.h',
|
2007-06-12 14:05:01 +01:00
|
|
|
'socket-factory.h',
|
2007-08-01 09:02:03 +02:00
|
|
|
'packet-socket-factory.h',
|
2008-05-20 10:30:40 -07:00
|
|
|
'udp-socket.h',
|
2008-05-17 12:08:20 -07:00
|
|
|
'udp-socket-factory.h',
|
2008-05-20 12:16:55 -07:00
|
|
|
'tcp-socket-factory.h',
|
2007-06-12 14:05:01 +01:00
|
|
|
'ipv4.h',
|
2007-05-13 12:52:38 +01:00
|
|
|
'application.h',
|
2008-03-20 15:27:48 -07:00
|
|
|
'simple-channel.h',
|
|
|
|
|
'simple-net-device.h',
|
2007-05-07 12:01:51 +01:00
|
|
|
]
|