glhd: Build with scons

This commit is contained in:
Jakob Bornecrantz 2010-06-28 22:22:53 +02:00
parent d12c4c5a62
commit 40d4b414d9
2 changed files with 4 additions and 2 deletions

View 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']:

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