Clone of mesa.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

SConscript 180B

12345678910111213
  1. Import('*')
  2. env = env.Clone()
  3. failover = env.ConvenienceLibrary(
  4. target = 'failover',
  5. source = [
  6. 'fo_state.c',
  7. 'fo_state_emit.c',
  8. 'fo_context.c',
  9. ])
  10. Export('failover')