waf

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

wscript (249B)


      1 #! /usr/bin/env python
      2 
      3 def options(opt):
      4 	opt.load('compiler_c')
      5 
      6 def configure(conf):
      7 	conf.load('relocation compiler_c')
      8 
      9 def build(bld):
     10 	bld.shlib(source='a.c', target='one', includes='a')
     11 	bld.program(source='main.c', target='two', use='one')