Merge branch 'gallium-i915-current' into gallium-0.1
[mesa.git] / src / gallium / auxiliary / pipebuffer / SConscript
1 Import('*')
2
3 pipebuffer = env.ConvenienceLibrary(
4 target = 'pipebuffer',
5 source = [
6 'pb_buffer_fenced.c',
7 'pb_buffer_malloc.c',
8 'pb_bufmgr_cache.c',
9 'pb_bufmgr_fenced.c',
10 'pb_bufmgr_mm.c',
11 'pb_bufmgr_pool.c',
12 'pb_bufmgr_slab.c',
13 'pb_winsys.c',
14 ])
15
16 auxiliaries.insert(0, pipebuffer)