Makefile
author Sébastien Deronne <sebastien.deronne@gmail.com>
Wed, 06 May 2015 22:06:26 +0200
changeset 11385 2ecfb9fd27cc
parent 9963 c91691a39311
permissions -rw-r--r--
rescan bindings

# 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