wscript 230 B

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