moved to waf-1.6 build system
[mrf-link.git] / wscript
blobd2357f775ad4183e544fbf5d030198e597f87b17
1 VERSION = '0.1'
2 APPNAME = 'mrf-link'
4 def options(ctx):
5     ctx.add_option('--with-fw', action='store_true', default=False, help='build firmware')
6     ctx.recurse('fw')
8 def configure(ctx):
9     if ctx.options.with_fw:
10         ctx.recurse('fw')
11         ctx.env.WITH_FW = 1
13 def build(ctx):
14     if ctx.env.WITH_FW:
15         ctx.recurse('fw')