repo.or.cz
/
mrf-link.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
moved to waf-1.6 build system
[mrf-link.git]
/
wscript
blob
d2357f775ad4183e544fbf5d030198e597f87b17
1
VERSION = '0.1'
2
APPNAME = 'mrf-link'
3
4
def options(ctx):
5
ctx.add_option('--with-fw', action='store_true', default=False, help='build firmware')
6
ctx.recurse('fw')
7
8
def configure(ctx):
9
if ctx.options.with_fw:
10
ctx.recurse('fw')
11
ctx.env.WITH_FW = 1
12
13
def build(ctx):
14
if ctx.env.WITH_FW:
15
ctx.recurse('fw')