summaryrefslogtreecommitdiff
path: root/src/gallium/drivers/sw/SConscript
diff options
context:
space:
mode:
authorJakob Bornecrantz <jakob@vmware.com>2010-11-10 22:49:40 +0000
committerJakob Bornecrantz <jakob@vmware.com>2010-11-10 23:44:07 +0000
commitaf9d2a64e504218e75504dfddcc2adfdd0dae1bd (patch)
tree7239b4ec28c8f3a4fa14f49735ab1e6c88eaac3e /src/gallium/drivers/sw/SConscript
parent06456f28598f50505d43c884c77e8d2c2b967444 (diff)
gallium: Remove redundant sw and debug target helpersremove-redundant-helpers
Diffstat (limited to 'src/gallium/drivers/sw/SConscript')
-rw-r--r--src/gallium/drivers/sw/SConscript37
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 40d01db2f6..0000000000
--- 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')