16 lines
213 B
Python
16 lines
213 B
Python
Import('*')
|
|
|
|
env = env.Clone()
|
|
|
|
failover = env.ConvenienceLibrary(
|
|
target = 'failover',
|
|
source = [
|
|
'fo_state.c',
|
|
'fo_state_emit.c',
|
|
'fo_context.c',
|
|
])
|
|
|
|
env.Alias('failover', failover)
|
|
|
|
Export('failover')
|