aboutsummaryrefslogtreecommitdiffstats
path: root/waf
diff options
context:
space:
mode:
Diffstat (limited to 'waf')
-rwxr-xr-x[l---------]waf17
1 files changed, 16 insertions, 1 deletions
diff --git a/waf b/waf
index 59d3164..e22930a 120000..100755
--- a/waf
+++ b/waf
@@ -1 +1,16 @@
-waflib/waf \ No newline at end of file
+#!/usr/bin/env python
+
+# Minimal waf script for projects that include waflib directly
+
+from waflib import Context, Scripting
+
+import inspect
+import os
+
+def main():
+ script_path = os.path.abspath(inspect.getfile(inspect.getmodule(main)))
+ project_path = os.path.dirname(script_path)
+ Scripting.waf_entry_point(os.getcwd(), Context.WAFVERSION, project_path)
+
+if __name__ == '__main__':
+ main()