waf

FORK: waf with some random patches
git clone https://git.neptards.moe/neptards/waf.git
Log | Files | Refs | README

wscript (244B)


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