Makefile
author Tom Henderson <tomh@tomh.org>
Wed, 09 Sep 2015 15:14:27 -0700
changeset 11661 68c0e7f87bdf
parent 9963 c91691a39311
permissions -rw-r--r--
additional Python 2/3 compatibility

# 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