waf

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

wscript (291B)


      1 #! /usr/bin/env python
      2 
      3 def options(ctx):
      4 	ctx.load('compiler_c')
      5 
      6 def configure(ctx):
      7 	ctx.load('compiler_c')
      8 
      9 def build(ctx):
     10 	sub = ctx.recurse
     11 	sub('fakelibs')
     12 	sub('objects')
     13 	sub('order')
     14 	sub('transitivity')
     15 	sub('headers')
     16 	#sub('cycle') # this must raise an error during the build
     17