summaryrefslogtreecommitdiff
path: root/src/gallium/drivers/r600/SConscript
diff options
context:
space:
mode:
Diffstat (limited to 'src/gallium/drivers/r600/SConscript')
-rw-r--r--src/gallium/drivers/r600/SConscript21
1 files changed, 21 insertions, 0 deletions
diff --git a/src/gallium/drivers/r600/SConscript b/src/gallium/drivers/r600/SConscript
new file mode 100644
index 0000000000..a88c545252
--- /dev/null
+++ b/src/gallium/drivers/r600/SConscript
@@ -0,0 +1,21 @@
+Import('*')
+
+env = env.Clone()
+env.Append(CPPPATH = [
+ '#/include',
+ '#/src/mesa',
+])
+
+r600 = env.ConvenienceLibrary(
+ target = 'r600',
+ source = [
+ 'r600_buffer.c',
+ 'r600_context.c',
+ 'r600_draw.c',
+ 'r600_query.c',
+ 'r600_screen.c',
+ 'r600_state.c',
+ 'r600_texture.c',
+ ])
+
+Export('r600')