mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2025-12-25 02:10:11 +01:00
scons: Add aliases for several pipe drivers.
This commit is contained in:
parent
4f8dbd2f5e
commit
3ae04dd910
8 changed files with 14 additions and 8 deletions
|
|
@ -10,4 +10,6 @@ failover = env.ConvenienceLibrary(
|
|||
'fo_context.c',
|
||||
])
|
||||
|
||||
env.Alias('failover', failover)
|
||||
|
||||
Export('failover')
|
||||
|
|
|
|||
|
|
@ -10,4 +10,6 @@ galahad = env.ConvenienceLibrary(
|
|||
'glhd_screen.c',
|
||||
])
|
||||
|
||||
env.Alias('galahad', galahad)
|
||||
|
||||
Export('galahad')
|
||||
|
|
|
|||
|
|
@ -2,10 +2,6 @@ Import('*')
|
|||
|
||||
env = env.Clone()
|
||||
|
||||
if env['msvc']:
|
||||
print 'warning: not building i915g'
|
||||
Return()
|
||||
|
||||
i915 = env.ConvenienceLibrary(
|
||||
target = 'i915',
|
||||
source = [
|
||||
|
|
@ -34,4 +30,6 @@ i915 = env.ConvenienceLibrary(
|
|||
'i915_resource_texture.c',
|
||||
])
|
||||
|
||||
env.Alias('i915', i915)
|
||||
|
||||
Export('i915')
|
||||
|
|
|
|||
|
|
@ -2,10 +2,6 @@ Import('*')
|
|||
|
||||
env = env.Clone()
|
||||
|
||||
if env['msvc']:
|
||||
print 'warning: not building i965g'
|
||||
Return();
|
||||
|
||||
i965 = env.ConvenienceLibrary(
|
||||
target = 'i965',
|
||||
source = [
|
||||
|
|
|
|||
|
|
@ -39,5 +39,7 @@ r300 = env.ConvenienceLibrary(
|
|||
'r300_transfer.c',
|
||||
] + r300compiler) + r300compiler
|
||||
|
||||
env.Alias('r300', r300)
|
||||
|
||||
Export('r300')
|
||||
|
||||
|
|
|
|||
|
|
@ -33,4 +33,6 @@ r600 = env.ConvenienceLibrary(
|
|||
'eg_asm.c',
|
||||
])
|
||||
|
||||
env.Alias('r600', r600)
|
||||
|
||||
Export('r600')
|
||||
|
|
|
|||
|
|
@ -11,4 +11,6 @@ rbug = env.ConvenienceLibrary(
|
|||
'rbug_screen.c',
|
||||
])
|
||||
|
||||
env.Alias('rbug', rbug)
|
||||
|
||||
Export('rbug')
|
||||
|
|
|
|||
|
|
@ -12,4 +12,6 @@ trace = env.ConvenienceLibrary(
|
|||
'tr_texture.c',
|
||||
])
|
||||
|
||||
env.Alias('trace', trace)
|
||||
|
||||
Export('trace')
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue