Makefile
author Tommaso Pecorella <tommaso.pecorella@unifi.it>
Wed, 21 May 2014 21:03:33 +0200
changeset 10787 5f2a338bbf5c
parent 9963 c91691a39311
permissions -rw-r--r--
Update RELEASE_NOTES

# 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