mirror of
https://gitlab.com/ita1024/waf.git
synced 2024-11-22 01:46:15 +01:00
13 lines
244 B
Python
13 lines
244 B
Python
#! /usr/bin/env python
|
|
# encoding: utf-8
|
|
|
|
def configure(conf):
|
|
conf.load('fhash', tooldir='.')
|
|
|
|
def build(bld):
|
|
node = bld.path.get_bld().make_node('test/bar/stuff')
|
|
|
|
bld(features='mkdir', target=node)
|
|
bld(rule='du ${SRC}', source=[node])
|
|
|