Merge branch 'mesa_7_5_branch' into mesa_7_6_branch
[mesa.git] / src / gallium / winsys / drm / radeon / core / SConscript
1 Import('*')
2
3 env = drienv.Clone()
4
5 radeon_sources = [
6 'radeon_buffer.c',
7 'radeon_drm.c',
8 'radeon_r300.c',
9 'radeon_winsys_softpipe.c',
10 ]
11
12 env.Append(CPPPATH = '#/src/gallium/drivers/r300')
13
14 radeonwinsys = env.ConvenienceLibrary(
15 target ='radeonwinsys',
16 source = radeon_sources,
17 )
18
19 Export('radeonwinsys')