summaryrefslogtreecommitdiff
path: root/source4/Makefile.waf
diff options
context:
space:
mode:
Diffstat (limited to 'source4/Makefile.waf')
-rw-r--r--source4/Makefile.waf20
1 files changed, 20 insertions, 0 deletions
diff --git a/source4/Makefile.waf b/source4/Makefile.waf
new file mode 100644
index 00000000000..50a55ab84f5
--- /dev/null
+++ b/source4/Makefile.waf
@@ -0,0 +1,20 @@
+# very crude Makefile to run waf
+WAF=WAFCACHE=$(HOME)/.wafcache ../buildtools/waf
+
+all:
+ $(WAF) build -v
+
+install:
+ $(WAF) install
+
+uninstall:
+ $(WAF) uninstall
+
+clean:
+ $(WAF) clean
+
+distclean:
+ rm -rf bin
+
+*:
+ echo "target not implemented"