waf

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

wscript_build (254B)


      1 #! /usr/bin/env python
      2 
      3 bld.recurse('libA')
      4 bld.recurse('libB')
      5 bld.recurse('libC')
      6 
      7 # Note that main has an implied dependency between our main program and libA
      8 bld.program(
      9 	source   = 'main.c',
     10 	target   = 'test_static_link_chain',
     11 	use      = 'B C')