Skip to content

Commit 17b8977

Browse files
committedJul 23, 2013
Add Makefile wrapper for waf, to ease configuration in NetBeans, Eclipse and QtCreator
1 parent 8196d37 commit 17b8977

File tree

1 file changed

+20
-0
lines changed

1 file changed

+20
-0
lines changed
 

‎Makefile

+20
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
# Makefile wrapper for waf
2+
3+
all:
4+
./waf
5+
6+
# free free to change this part to suit your requirements
7+
configure:
8+
./waf configure --enable-examples --enable-tests
9+
10+
build:
11+
./waf build
12+
13+
install:
14+
./waf install
15+
16+
clean:
17+
./waf clean
18+
19+
distclean:
20+
./waf distclean

0 commit comments

Comments
 (0)
Please sign in to comment.