wscript 510 B

12345678910111213141516
  1. def build(bld):
  2. programs = ('random-test-slave',
  3. 'unit-test-slave',
  4. 'unit-test-master',
  5. 'bandwidth-slave-one',
  6. 'bandwidth-slave-many-up',
  7. 'bandwidth-master')
  8. for program in programs:
  9. obj = bld.new_task_gen(
  10. features = 'cc cprogram',
  11. source = program + '.c',
  12. target = program,
  13. includes = '. ../src',
  14. uselib_local = 'modbus',
  15. install_path='')