Home | History | Annotate | Download | only in identity
      1 Import('*')
      2 
      3 env = env.Clone()
      4 
      5 identity = env.ConvenienceLibrary(
      6 	target = 'identity',
      7 	source = [
      8 		'id_context.c',
      9 		'id_objects.c',
     10 		'id_screen.c',
     11 	])
     12 
     13 env.Alias('identity', identity)
     14 
     15 Export('identity')
     16