wscript 247 B

1234567891011121314
  1. #! /usr/bin/env python
  2. # encoding: utf-8
  3. # Thomas Nagy, 2016 (ita)
  4. def options(opt):
  5. opt.load('compiler_c')
  6. def configure(conf):
  7. conf.load('compiler_c')
  8. def build(bld):
  9. bld.load('print_commands')
  10. bld.program(source='main.c', target='app')