summaryrefslogtreecommitdiff
path: root/src/gallium/drivers/nvc0/SConscript
diff options
context:
space:
mode:
authorChristoph Bumiller <e0425955@student.tuwien.ac.at>2011-01-04 18:20:05 +0100
committerChristoph Bumiller <e0425955@student.tuwien.ac.at>2011-01-04 18:20:05 +0100
commitcd1cf788280a1eb10d54e1a2b8b069ed7b89c724 (patch)
tree97a2241e1e51cab4b6bf004fc9c0c3f65468d6d2 /src/gallium/drivers/nvc0/SConscript
parentc94996f0570c729b9cb2b55329ababb9877fbbea (diff)
parent4884ca5f67a0138659e48700e8b2f8821400c995 (diff)
Merge remote branch 'origin/nvc0'
Diffstat (limited to 'src/gallium/drivers/nvc0/SConscript')
-rw-r--r--src/gallium/drivers/nvc0/SConscript35
1 files changed, 35 insertions, 0 deletions
diff --git a/src/gallium/drivers/nvc0/SConscript b/src/gallium/drivers/nvc0/SConscript
new file mode 100644
index 0000000000..ec529d44f5
--- /dev/null
+++ b/src/gallium/drivers/nvc0/SConscript
@@ -0,0 +1,35 @@
+Import('*')
+
+env = env.Clone()
+
+nvc0 = env.ConvenienceLibrary(
+ target = 'nvc0',
+ source = [
+ 'nvc0_buffer.c',
+ 'nvc0_context.c',
+ 'nvc0_draw.c',
+ 'nvc0_formats.c',
+ 'nvc0_miptree.c',
+ 'nvc0_resource.c',
+ 'nvc0_screen.c',
+ 'nvc0_state.c',
+ 'nvc0_state_validate.c',
+ 'nvc0_surface.c',
+ 'nvc0_tex.c',
+ 'nvc0_transfer.c',
+ 'nvc0_vbo.c',
+ 'nvc0_program.c',
+ 'nvc0_shader_state.c',
+ 'nvc0_pc.c',
+ 'nvc0_pc_print.c',
+ 'nvc0_pc_emit.c',
+ 'nvc0_tgsi_to_nc.c',
+ 'nvc0_pc_optimize.c',
+ 'nvc0_pc_regalloc.c',
+ 'nvc0_push.c',
+ 'nvc0_push2.c',
+ 'nvc0_fence.c',
+ 'nvc0_mm'
+ ])
+
+Export('nvc0')