summaryrefslogtreecommitdiffstats
path: root/porting/wscript
diff options
context:
space:
mode:
Diffstat (limited to 'porting/wscript')
-rw-r--r--porting/wscript19
1 files changed, 19 insertions, 0 deletions
diff --git a/porting/wscript b/porting/wscript
new file mode 100644
index 0000000..ab2b188
--- /dev/null
+++ b/porting/wscript
@@ -0,0 +1,19 @@
+from sys import path
+from os.path import abspath
+path.append(abspath('../common/'))
+
+from waf import cmd_configure, cmd_build
+
+def configure(ctx):
+ cmd_configure(ctx)
+
+def build(ctx):
+
+ sub = {
+ "VERSION": "1.0",
+ "RELEASE": "5.0.0",
+ "DOC": "POSIX",
+ "FILE_DOC": "rtemsposix",
+ }
+
+ cmd_build(ctx, sub)