--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/src/csma-layout/wscript Tue Apr 26 15:18:32 2011 -0700
@@ -0,0 +1,18 @@
+## -*- Mode: python; py-indent-offset: 4; indent-tabs-mode: nil; coding: utf-8; -*-
+
+def build(bld):
+ obj = bld.create_ns3_module('csma-layout', ['csma', 'network', 'applications'])
+ obj.source = [
+ 'model/csma-star-helper.cc',
+ ]
+ headers = bld.new_task_gen('ns3header')
+ headers.module = 'csma-layout'
+ headers.source = [
+ 'model/csma-star-helper.h',
+ ]
+
+ if bld.env['ENABLE_EXAMPLES']:
+ bld.add_subdirs('examples')
+
+ #bld.ns3_python_bindings()
+