waf

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

wscript_build (258B)


      1 #! /usr/bin/env python
      2 
      3 bld(
      4 	features     = 'c cstlib',
      5 	source       = 'test_staticlib.c',
      6 	target       = 'my_static_lib')
      7 
      8 bld(
      9 	features     = 'c cprogram',
     10 	source       = 'main.c',
     11 	target       = 'test_static_link',
     12 	use          = 'my_static_lib')
     13