blob: 0969f15c8b028943c75dc6a86daa93ad4d7b770a [file] [log] [blame]
jeraldabraham5d4d7352014-03-28 02:49:04 -07001#!/usr/bin/python2
2import os
3
4# Install ndn-traffic-generator
5def run():
6 print "\nINSTALLING ndn-traffic-generator"
7 print "********************************"
Junxiao Shi33a6ee12016-12-26 18:59:38 +00008 os.system("git clone --depth 1 https://github.com/named-data/ndn-traffic-generator")
jeraldabraham5d4d7352014-03-28 02:49:04 -07009 os.chdir("ndn-traffic-generator")
10 os.system("./waf distclean")
11 os.system("./waf configure")
12 os.system("./waf -j1")
13 os.system("sudo ./waf install")
14 os.chdir("..")