wscript 223 B

123456789101112
  1. #! /usr/bin/env python
  2. # encoding: utf-8
  3. # Thomas Nagy, 2010 (ita)
  4. """
  5. See README.txt
  6. """
  7. def build(bld):
  8. bld.program(source='main.c', target='app', use='mylib', cflags=['-O2'])
  9. bld.stlib(source='a.c', target='mylib')