Merge branch 'mesa_7_6_branch'
[mesa.git] / src / gallium / drivers / identity / SConscript
1 Import('*')
2
3 env = env.Clone()
4
5 identity = env.ConvenienceLibrary(
6 target = 'identity',
7 source = [
8 'id_screen.c',
9 'id_context.c',
10 'id_objects.c',
11 ])
12
13 Export('identity')