wscript 271 B

123456789101112131415161718
  1. #! /usr/bin/env python
  2. top = '../diff_top_src'
  3. out = 'build'
  4. def options(opt):
  5. opt.load('compiler_c')
  6. def configure(conf):
  7. conf.load('compiler_c')
  8. def build(bld):
  9. bld.program(
  10. source = bld.srcnode.ant_glob('*.c'),
  11. target = 'main',
  12. )
  13. # vim:ft=python:noet