Makefile
author Tom Henderson <tomh@tomh.org>
Mon, 09 Nov 2015 13:58:48 -0800
changeset 11760 4076d7089dcd
parent 9963 c91691a39311
permissions -rw-r--r--
update DSR for Ipv4Address changes in changeset 11755

# 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