Makefile
author Nicola Baldo <nbaldo@cttc.es>
Tue, 30 Jun 2015 18:31:43 +0200
changeset 11468 53280fca36a5
parent 9963 c91691a39311
permissions -rw-r--r--
fixed Bug 2143 - maybe-uninitialized warning

# 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