wscript 279 B

1234567891011121314151617
  1. #! /usr/bin/env python
  2. # encoding: utf-8
  3. # DC 2008
  4. # Thomas Nagy 2010 (ita)
  5. top = '.'
  6. out = 'build'
  7. def options(opt):
  8. opt.load('fakecc', tooldir='.')
  9. def configure(conf):
  10. conf.load('fakecc', tooldir='.')
  11. def build(bld):
  12. bld(source='hello_main.a hello.a', target='hello')