wscript 326 B

1234567891011121314151617181920
  1. #! /usr/bin/env python
  2. # encoding: utf-8
  3. # Thomas Nagy, 2011 (ita)
  4. VERSION='0.0.1'
  5. APPNAME='cc_test'
  6. top = '.'
  7. def options(opt):
  8. opt.load('compiler_c')
  9. def configure(conf):
  10. conf.load('compiler_c')
  11. conf.load('excl', tooldir='.')
  12. def build(bld):
  13. for i in range(20):
  14. bld.program(source='main.c', target='app_%d' % i)