You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
402 B
Python
19 lines
402 B
Python
#! /usr/bin/env python
|
|
|
|
"""
|
|
Here we do not define the top or the out folders
|
|
The build directory may be controlled by setting
|
|
the WAFLOCK variable with the name convention .lock-wafNAME
|
|
where NAME will be the build directory
|
|
|
|
WAFLOCK=.lock-waffoo waf configure build
|
|
WAFLOCK=.lock-wafbar waf configure build
|
|
"""
|
|
|
|
def configure(conf):
|
|
pass
|
|
|
|
def build(bld):
|
|
bld(rule='touch ${TGT}', target='foo.txt')
|
|
|