aeee52691c
Signed-off-by: Jakob Bornecrantz <wallbraker@gmail.com>
34 lines
666 B
Python
34 lines
666 B
Python
Import('*')
|
|
|
|
env = env.Clone()
|
|
|
|
env.ParseConfig('pkg-config --cflags libdrm_radeon')
|
|
|
|
env.Append(CPPPATH = [
|
|
'#/include',
|
|
'#/src/mesa',
|
|
])
|
|
|
|
r600 = env.ConvenienceLibrary(
|
|
target = 'r600',
|
|
source = [
|
|
'r600_buffer.c',
|
|
'r600_context.c',
|
|
'r600_draw.c',
|
|
'r600_blit.c',
|
|
'r600_helper.c',
|
|
'r600_query.c',
|
|
'r600_resource.c',
|
|
'r600_screen.c',
|
|
'r600_state.c',
|
|
'r600_texture.c',
|
|
'r600_shader.c',
|
|
'r600_compiler.c',
|
|
'r600_compiler_tgsi.c',
|
|
'r600_compiler_dump.c',
|
|
'r600_compiler_r600.c',
|
|
'r600_compiler_r700.c'
|
|
])
|
|
|
|
Export('r600')
|