diff options
author | Jakob Bornecrantz <[email protected]> | 2010-11-10 22:49:40 +0000 |
---|---|---|
committer | Jakob Bornecrantz <[email protected]> | 2010-11-17 23:49:09 +0000 |
commit | e89e8a4347dacceda0b131b55d16206e25eb984f (patch) | |
tree | c5b1b258d844392bbd65b0a2a945517c385e44dd /src/gallium/drivers/sw/SConscript | |
parent | b46340c740eb5388e9917fca365a6c3003385dff (diff) |
gallium: Remove redundant sw and debug target helpers
Diffstat (limited to 'src/gallium/drivers/sw/SConscript')
-rw-r--r-- | src/gallium/drivers/sw/SConscript | 37 |
1 files changed, 0 insertions, 37 deletions
diff --git a/src/gallium/drivers/sw/SConscript b/src/gallium/drivers/sw/SConscript deleted file mode 100644 index 40d01db2f6d..00000000000 --- a/src/gallium/drivers/sw/SConscript +++ /dev/null @@ -1,37 +0,0 @@ -####################################################################### -# SConscript for swrast convenience library -# -# This is a meta-driver which consists of any and all of the software -# rasterizers into a single driver. A software rasterizer is defined -# as any driver which takes an sw_winsys pointer as the only argument -# to create_screen. - -Import('*') - -env = env.Clone() - -# To avoid targets having to check extensively or add drivers on a whim, append -# all referenced extra drivers to the exported symbol. -extra = [] -if True: - env.Append(CPPDEFINES = 'GALLIUM_SOFTPIPE') - env.Prepend(LIBS = [softpipe]) - extra.append(softpipe) - -if env['llvm']: - env.Append(CPPDEFINES = 'GALLIUM_LLVMPIPE') - env.Prepend(LIBS = [llvmpipe]) - extra.append(llvmpipe) - -if 'cell' in env['drivers']: - env.Append(CPPDEFINES = 'GALLIUM_CELL') - env.Prepend(LIBS = [cell]) - extra.append(cell) - -sw = env.ConvenienceLibrary( - target = 'sw', - source = [ - 'sw.c', - ] - ) + extra -Export('sw') |