Micro-optimizations.
[leqm-nrt.git] / cscript
1 def build(target, options):
2     cmd = './waf configure --without-libsndfile --prefix=%s' % target.directory
3     if target.platform == 'linux':
4         cmd += ' --static'
5     target.command(cmd)
6     target.command('./waf build install')
7