Module template now builds into ns-3

diff --git a/examples/syntactic-topology-ndnabstraction.c b/examples/syntactic-topology-ndnabstraction.c
new file mode 100644
index 0000000..51e0252
--- /dev/null
+++ b/examples/syntactic-topology-ndnabstraction.c
@@ -0,0 +1,18 @@
+/*
+ *  syntactic-topology.c
+ *  XcodeProject
+ *
+ *  Created by Ilya Moiseenko on 7/18/11.
+ *  Copyright 2011 University of California, Los Angeles. All rights reserved.
+ *
+ */
+
+#include "ns3/core-module.h"
+
+using namespace ns3;
+
+int 
+main (int argc, char *argv[])
+{
+	return 0;
+}
diff --git a/examples/wscript b/examples/wscript
new file mode 100644
index 0000000..1ebcd2d
--- /dev/null
+++ b/examples/wscript
@@ -0,0 +1,6 @@
+## -*- Mode: python; py-indent-offset: 4; indent-tabs-mode: nil; coding: utf-8; -*-
+
+def build(bld):
+    obj = bld.create_ns3_program('syntactic-topology-ndnabstraction',
+                                 ['core-module'])
+    obj.source = 'syntactic-topology-ndnabstraction.c'
\ No newline at end of file