Makefile
author Tom Henderson <tomh@tomh.org>
Tue, 15 Sep 2015 13:50:46 -0700
changeset 11671 dbd1a2b1c4ed
parent 9963 c91691a39311
permissions -rw-r--r--
update RELEASE_NOTES for release download

# 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