Makefile
author Tom Henderson <tomh@tomh.org>
Tue, 15 Sep 2015 11:21:53 -0700
changeset 11667 3dac5b408933
parent 9963 c91691a39311
permissions -rw-r--r--
Added tag ns-3.24 for changeset e8634b0101f7

# 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