OSDN Git Service

glhd: Build with scons
authorJakob Bornecrantz <jakob@vmware.com>
Mon, 28 Jun 2010 20:22:53 +0000 (22:22 +0200)
committerJakob Bornecrantz <jakob@vmware.com>
Mon, 28 Jun 2010 20:27:06 +0000 (22:27 +0200)
SConstruct
src/gallium/drivers/galahad/SConscript

index 83c29c0..a187d8d 100644 (file)
@@ -131,6 +131,8 @@ if 'trace' not in env['drivers']:
     env['drivers'].append('trace')
 if 'rbug' not in env['drivers']:
     env['drivers'].append('rbug')
+if 'galahad' not in env['drivers']:
+    env['drivers'].append('galahad')
 if 'identity' not in env['drivers']:
     env['drivers'].append('identity')
 if 'softpipe' not in env['drivers']:
index ca6213c..b398a3f 100644 (file)
@@ -2,7 +2,7 @@ Import('*')
 
 env = env.Clone()
 
-identity = env.ConvenienceLibrary(
+galahad = env.ConvenienceLibrary(
        target = 'identity',
        source = [
                'glhd_context.c',
@@ -10,4 +10,4 @@ identity = env.ConvenienceLibrary(
                'glhd_screen.c',
        ])
 
-Export('identity')
+Export('galahad')