SConscript revision 738850e52260a76ffee57e22193b21126d6d39a1
1Import('*')
2
3env = env.Clone()
4
5radeon_sources = [
6    'radeon_drm_buffer.c',
7    'radeon_drm.c',
8    'radeon_r300.c',
9]
10
11env.Append(CPPPATH = '#/src/gallium/drivers/r300')
12
13radeonwinsys = env.ConvenienceLibrary(
14    target ='radeonwinsys',
15    source = radeon_sources,
16)
17
18Export('radeonwinsys')
19