Makefile
author Tom Henderson <tomh@tomh.org>
Sun, 21 Aug 2016 10:19:06 -0700
changeset 69 9529febb7ebc
parent 0 e4a50ea0f07c
permissions -rw-r--r--
add missing module dependency

# 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