src/devices/wifi/wscript
author Federico Maguolo <maguolof@dei.unipd.it>
Fri, 22 Feb 2008 23:45:25 +0100
changeset 2351 84e79f06621c
parent 2350 0b54480c4fd1
child 2508 18b690d1e74b
permissions -rw-r--r--
RRAA implementation.

## -*- Mode: python; py-indent-offset: 4; indent-tabs-mode: nil; coding: utf-8; -*-

def build(bld):
    obj = bld.create_ns3_module('wifi', ['node'])
    obj.source = [
        'propagation-delay-model.cc',
        'propagation-loss-model.cc',
        'wifi-channel.cc',
        'wifi-mode.cc',
        'ssid.cc',
        'wifi-phy.cc',
        'mac-stations.cc',
        'cr-mac-stations.cc',
        'arf-mac-stations.cc',
        'aarf-mac-stations.cc',
        'wifi-mac-header.cc',
        'wifi-mac-trailer.cc',
        'mac-parameters.cc',
        'mac-low.cc',
        'wifi-mac-queue.cc',
        'mac-tx-middle.cc',
        'mac-rx-middle.cc',
        'dca-txop.cc',
        'ideal-mac-stations.cc',
        'mac-high-adhoc.cc',
        'supported-rates.cc',
        'capability-information.cc',
        'status-code.cc',
        'mgt-headers.cc',
        'mac-high-nqap.cc',
        'mac-high-nqsta.cc',
        'wifi-net-device.cc',
        'wifi-default-parameters.cc',
        'random-stream.cc',
        'dcf-manager.cc',
        'dcf-manager-test.cc',
        'onoe-mac-stations.cc',
        'amrr-mac-stations.cc',
        'rraa-mac-stations.cc',
	'wifi-trace.cc',
        ]
    headers = bld.create_obj('ns3header')
    headers.source = [
        'propagation-loss-model.h',
        'wifi-net-device.h',
        'wifi-channel.h',
        'wifi-mode.h',
        'ssid.h',
        'wifi-preamble.h',
	'wifi-phy-standard.h',
        'wifi-phy.h',
	'wifi-trace.h',
        ]