Add Makefile wrapper for waf, to ease configuration in NetBeans, Eclipse and QtCreator
authorVedran Mileti? <rivanvx@gmail.com>
Tue, 23 Jul 2013 10:25:45 +0200
changeset 9963 c91691a39311
parent 9962 d716adcfb26c
child 9964 1dce21e0afa5
Add Makefile wrapper for waf, to ease configuration in NetBeans, Eclipse and QtCreator
Makefile
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/Makefile	Tue Jul 23 10:25:45 2013 +0200
@@ -0,0 +1,20 @@
+# Makefile wrapper for waf
+
+all:
+	./waf
+
+# free free to change this part to suit your requirements
+configure:
+	./waf configure --enable-examples --enable-tests
+
+build:
+	./waf build
+
+install:
+	./waf install
+
+clean:
+	./waf clean
+
+distclean:
+	./waf distclean