summaryrefslogtreecommitdiffstats
path: root/src/gallium/drivers/r600
diff options
context:
space:
mode:
authorAndreas Boll <[email protected]>2013-05-03 11:33:35 +0200
committerAndreas Boll <[email protected]>2013-05-03 18:44:43 +0200
commit4ca44f2c5e6b3a0a91626b576d72d306e5c08592 (patch)
tree3e2b901b0e13a45f2964add9f2e7418cd6144d97 /src/gallium/drivers/r600
parent4539f8e20af286d1f521eb016c89c6d9af0b801c (diff)
scons: remove radeon build
One build system for linux/unix only drivers should be enough. Bugzilla: https://bugs.freedesktop.org/show_bug.cgi?id=48694 Acked-by: Jose Fonseca <[email protected]>
Diffstat (limited to 'src/gallium/drivers/r600')
-rw-r--r--src/gallium/drivers/r600/SConscript18
1 files changed, 0 insertions, 18 deletions
diff --git a/src/gallium/drivers/r600/SConscript b/src/gallium/drivers/r600/SConscript
deleted file mode 100644
index 658be500dc1..00000000000
--- a/src/gallium/drivers/r600/SConscript
+++ /dev/null
@@ -1,18 +0,0 @@
-Import('*')
-
-env = env.Clone()
-
-env.PkgUseModules('DRM_RADEON')
-
-env.Append(CPPPATH = [
- '#/include',
-])
-
-r600 = env.ConvenienceLibrary(
- target = 'r600',
- source = env.ParseSourceList('Makefile.sources', 'C_SOURCES')
- )
-
-env.Alias('r600', r600)
-
-Export('r600')