~ubuntu-branches/ubuntu/precise/mesa-lts-quantal/precise-updates

« back to all changes in this revision

Viewing changes to src/gallium/winsys/sw/fbdev/SConscript

  • Committer: Package Import Robot
  • Author(s): Maarten Lankhorst
  • Date: 2012-11-30 20:58:34 UTC
  • Revision ID: package-import@ubuntu.com-20121130205834-gazuvne3fpwlf012
Tags: upstream-9.0
ImportĀ upstreamĀ versionĀ 9.0

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#######################################################################
 
2
# SConscript for fbdev winsys
 
3
 
 
4
 
 
5
Import('*')
 
6
 
 
7
if env['platform'] == 'linux':
 
8
 
 
9
    env = env.Clone()
 
10
 
 
11
    env.Append(CPPPATH = [
 
12
        '#/src/gallium/include',
 
13
        '#/src/gallium/auxiliary',
 
14
        '#/src/gallium/drivers',
 
15
    ])
 
16
 
 
17
    ws_fbdev = env.ConvenienceLibrary(
 
18
        target = 'ws_fbdev',
 
19
        source = [
 
20
           'fbdev_sw_winsys.c',
 
21
        ]
 
22
    )
 
23
    Export('ws_fbdev')