scons: remove nouveau build

One build system for linux/unix only drivers should be enough.
Additionally the nouveau target was disabled anyway.

Acked-by: Jose Fonseca <jfonseca@vmware.com>
This commit is contained in:
Andreas Boll 2013-05-03 11:41:00 +02:00
parent 4ca44f2c5e
commit e62be5de53
5 changed files with 0 additions and 58 deletions

View file

@ -27,19 +27,6 @@ if not env['msvc']:
'drivers/i915/SConscript',
])
if env['drm']:
# These drivers depend on drm headers
# XXX: nouveau drivers have a tight dependency on libdrm, so to enable
# we need some version logic before we enable them. Also, ATM there is
# no nouveau target in scons
# if env['drm_nouveau']:
# SConscript([
# 'drivers/nouveau/SConscript',
# 'drivers/nv50/SConscript',
# 'drivers/nvc0/SConscript',
# 'drivers/nvfx/SConscript',
# ])
#
# State trackers
#
@ -132,7 +119,6 @@ if not env['embedded']:
'targets/SConscript.dri',
'targets/dri-swrast/SConscript',
'targets/dri-vmwgfx/SConscript',
#'targets/dri-nouveau/SConscript',
])
if env['drm_intel']:
SConscript([
@ -142,7 +128,6 @@ if not env['embedded']:
if env['xorg'] and env['drm']:
SConscript([
#'targets/xorg-i915/SConscript',
#'targets/xorg-nouveau/SConscript',
])

View file

@ -1,10 +0,0 @@
Import('*')
env = env.Clone()
nouveau = env.ConvenienceLibrary(
target = 'nouveau',
source = env.ParseSourceList('Makefile.sources', 'C_SOURCES')
)
Export('nouveau')

View file

@ -1,11 +0,0 @@
Import('*')
env = env.Clone()
nv30 = env.ConvenienceLibrary(
target = 'nv30',
source = env.ParseSourceList('Makefile.sources',
['C_SOURCES', 'CPP_SOURCES'])
)
Export('nv30')

View file

@ -1,11 +0,0 @@
Import('*')
env = env.Clone()
nv50 = env.ConvenienceLibrary(
target = 'nv50',
source = env.ParseSourceList('Makefile.sources',
['C_SOURCES', 'CPP_SOURCES'])
)
Export('nv50')

View file

@ -1,11 +0,0 @@
Import('*')
env = env.Clone()
nvc0 = env.ConvenienceLibrary(
target = 'nvc0',
source = env.ParseSourceList('Makefile.sources',
['C_SOURCES', 'CPP_SOURCES'])
)
Export('nvc0')