scons: Add aliases for several pipe drivers.

This commit is contained in:
José Fonseca 2010-11-02 12:35:23 +00:00
parent 4f8dbd2f5e
commit 3ae04dd910
8 changed files with 14 additions and 8 deletions

View file

@ -10,4 +10,6 @@ failover = env.ConvenienceLibrary(
'fo_context.c',
])
env.Alias('failover', failover)
Export('failover')

View file

@ -10,4 +10,6 @@ galahad = env.ConvenienceLibrary(
'glhd_screen.c',
])
env.Alias('galahad', galahad)
Export('galahad')

View file

@ -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')

View file

@ -2,10 +2,6 @@ Import('*')
env = env.Clone()
if env['msvc']:
print 'warning: not building i965g'
Return();
i965 = env.ConvenienceLibrary(
target = 'i965',
source = [

View file

@ -39,5 +39,7 @@ r300 = env.ConvenienceLibrary(
'r300_transfer.c',
] + r300compiler) + r300compiler
env.Alias('r300', r300)
Export('r300')

View file

@ -33,4 +33,6 @@ r600 = env.ConvenienceLibrary(
'eg_asm.c',
])
env.Alias('r600', r600)
Export('r600')

View file

@ -11,4 +11,6 @@ rbug = env.ConvenienceLibrary(
'rbug_screen.c',
])
env.Alias('rbug', rbug)
Export('rbug')

View file

@ -12,4 +12,6 @@ trace = env.ConvenienceLibrary(
'tr_texture.c',
])
env.Alias('trace', trace)
Export('trace')