draw: corrections to allow for different cliptest cases
[mesa.git] / src / gallium / winsys / r600 / drm / SConscript
1 Import('*')
2
3 env = env.Clone()
4
5 r600_sources = [
6 'bof.c',
7 'r600_state.c',
8 'radeon_ctx.c',
9 'radeon_draw.c',
10 'radeon_state.c',
11 'radeon_bo.c',
12 'radeon_pciid.c',
13 'radeon.c',
14 'r600_drm.c'
15 ]
16
17 env.ParseConfig('pkg-config --cflags libdrm_radeon')
18 env.Append(CPPPATH = '#/src/gallium/drivers/r600')
19
20 r600winsys = env.ConvenienceLibrary(
21 target ='r600winsys',
22 source = r600_sources,
23 )
24
25 Export('r600winsys')