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


def build(bld):
    module = bld.create_ns3_module('point-to-point', ['node'])
    module.source = [
        'point-to-point-net-device.cc',
        'point-to-point-channel.cc',
        'point-to-point-remote-channel.cc',
        'point-to-point-test.cc',
        'ppp-header.cc',
        ]
    headers = bld.new_task_gen('ns3header')
    headers.module = 'point-to-point'
    headers.source = [
        'point-to-point-net-device.h',
        'point-to-point-channel.h',
        'point-to-point-remote-channel.h',
        'ppp-header.h',
        ]

