blob: 13ac5a2d8ea6f058b3fb938c22ab758f47fd416c (
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
26
27
28
29
|
Import('*')
if not 'i965' in env['drivers']:
print 'warning: i965 pipe driver not built skipping i965_dri.so'
Return()
env = drienv.Clone()
env.ParseConfig('pkg-config --cflags --libs libdrm_intel')
env.Prepend(LIBS = [
st_dri,
i965drm,
ws_drm,
ws_wrapper,
i965,
trace,
rbug,
mesa,
glsl,
gallium,
COMMON_DRI_DRM_OBJECTS
])
env.LoadableModule(
target = 'i965_dri.so',
source = 'dummy.c',
SHLIBPREFIX = '',
)
|