summaryrefslogtreecommitdiffstats
path: root/linux/wscript
diff options
context:
space:
mode:
Diffstat (limited to 'linux/wscript')
-rwxr-xr-xlinux/wscript31
1 files changed, 31 insertions, 0 deletions
diff --git a/linux/wscript b/linux/wscript
new file mode 100755
index 00000000..da735832
--- /dev/null
+++ b/linux/wscript
@@ -0,0 +1,31 @@
+#!/usr/bin/env python
+# encoding: utf-8
+#hhaim
+
+import ws_main
+
+#mandatory ....
+top = ws_main.top
+out = ws_main.out
+
+
+def options(opt):
+ ws_main.options(opt)
+
+
+def configure(conf):
+ ws_main.configure(conf)
+
+
+def build(bld):
+ ws_main.build(bld)
+
+
+def build_info(bld):
+ ws_main.build_info(bld)
+
+
+
+
+
+