summaryrefslogtreecommitdiff
path: root/src/gallium/winsys/xlib
diff options
context:
space:
mode:
authorJosé Fonseca <jfonseca@vmware.com>2010-03-09 15:07:57 +0000
committerJosé Fonseca <jfonseca@vmware.com>2010-03-09 15:09:32 +0000
commit706eda30578cbdd1456c09ccc2a570a5d6a99c92 (patch)
tree01c3850983962ad9fedf0dccf438ed4e78f0e61c /src/gallium/winsys/xlib
parentb694f321707c98c71478aceb11f814643109367b (diff)
scons: Add new targets option.
This will likely change. Most probably we'll just add an alias to indvidual targets and use the regular scons targets arguments.
Diffstat (limited to 'src/gallium/winsys/xlib')
-rw-r--r--src/gallium/winsys/xlib/SConscript16
1 files changed, 8 insertions, 8 deletions
diff --git a/src/gallium/winsys/xlib/SConscript b/src/gallium/winsys/xlib/SConscript
index 587cdb8e38a..1a1879f1287 100644
--- a/src/gallium/winsys/xlib/SConscript
+++ b/src/gallium/winsys/xlib/SConscript
@@ -15,13 +15,13 @@ if env['platform'] == 'linux' \
'#/src/gallium/drivers',
])
- st_xlib = env.ConvenienceLibrary(
- target = 'ws_xlib',
- source = [
- 'xlib_cell.c',
- 'xlib_llvmpipe.c',
- 'xlib_softpipe.c',
- 'xlib_sw_winsys.c',
- ]
+ ws_xlib = env.ConvenienceLibrary(
+ target = 'ws_xlib',
+ source = [
+ 'xlib_cell.c',
+ 'xlib_llvmpipe.c',
+ 'xlib_softpipe.c',
+ 'xlib_sw_winsys.c',
+ ]
)
Export('ws_xlib')