waf

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

wscript_build (211B)


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