diff options
author | José Fonseca <[email protected]> | 2010-03-09 15:07:57 +0000 |
---|---|---|
committer | José Fonseca <[email protected]> | 2010-03-09 15:09:32 +0000 |
commit | 706eda30578cbdd1456c09ccc2a570a5d6a99c92 (patch) | |
tree | 01c3850983962ad9fedf0dccf438ed4e78f0e61c /src/gallium/winsys | |
parent | b694f321707c98c71478aceb11f814643109367b (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')
-rw-r--r-- | src/gallium/winsys/xlib/SConscript | 16 |
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') |