Files
2016-12-04 12:47:55 -07:00

22 lines
338 B
Makefile

# Makefile wrapper for waf
all:
./waf
# free free to change this part to suit your requirements
configure:
#./waf configure --enable-examples --enable-tests
./waf configure -d optimized --enable-examples --disable-python --disable-tests
build:
./waf build
install:
./waf install
clean:
./waf clean
distclean:
./waf distclean