waf

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

wscript (277B)


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