waf

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

wscript (230B)


      1 #! /usr/bin/env python
      2 
      3 INCLUDES = [
      4     '.'
      5 ]
      6 
      7 def build(bld):
      8 
      9     bld.shlib(
     10         target='lib',
     11         source='lib.c',
     12         includes=INCLUDES,
     13         export_includes=INCLUDES,
     14         install_path=bld.env.LIBDIR,
     15     )