r600g: Update SConscript.

Fixes SCons build.
This commit is contained in:
Vinson Lee 2010-09-29 12:09:21 -07:00
parent 4f80a2d170
commit 22c06a08e7
1 changed files with 9 additions and 7 deletions

View File

@ -16,15 +16,17 @@ env.Append(CPPPATH = [
r600 = env.ConvenienceLibrary(
target = 'r600',
source = [
'r600_buffer.c',
'r600_state2.c',
'evergreen_state.c',
'r600_shader.c',
'r600_helper.c',
'r600_resource.c',
'r600_texture.c',
'r600_asm.c',
'r600_buffer.c',
'r600_helper.c',
'r600_pipe.c',
'r600_query.c',
'r600_resource.c',
'r600_shader.c',
'r600_state.c',
'r600_texture.c',
'r700_asm.c',
'evergreen_state.c',
'eg_asm.c',
])