waf

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

wscript (309B)


      1 #! /usr/bin/env python
      2 # encoding: utf-8
      3 # Thomas Nagy, 2015 (ita)
      4 
      5 VERSION='0.0.1'
      6 APPNAME='strace_test'
      7 
      8 from waflib import Logs
      9 def configure(conf):
     10 	Logs.warn("run with 'waf --zones=deps'")
     11 	conf.load('stracedeps')
     12 
     13 def build(bld):
     14 	bld(rule='${SRC[0].abspath()}', source='foo.sh', always=True, shell=1)
     15