wscript 244 B

123456789101112
  1. #! /usr/bin/env python
  2. # encoding: utf-8
  3. def configure(conf):
  4. conf.load('fhash', tooldir='.')
  5. def build(bld):
  6. node = bld.path.get_bld().make_node('test/bar/stuff')
  7. bld(features='mkdir', target=node)
  8. bld(rule='du ${SRC}', source=[node])