Makefile
author Tom Henderson <tomh@tomh.org>
Fri, 30 Jan 2015 11:34:38 -0800
changeset 11188 e010083f6592
parent 9963 c91691a39311
permissions -rw-r--r--
fix possibly uninitialized variable 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