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