summaryrefslogtreecommitdiffstats
path: root/src/gallium/winsys/sw/xlib/SConscript
diff options
context:
space:
mode:
authorEmil Velikov <[email protected]>2014-08-17 20:15:07 +0100
committerEmil Velikov <[email protected]>2014-08-28 21:24:39 +0100
commit95603e259b6afdab50c4330696a8fbede80327f1 (patch)
tree0899ea6641a30d5f5ecd44a44e26697f183797be /src/gallium/winsys/sw/xlib/SConscript
parentf0ae81cc1317a144626f2d0160942936a4c20457 (diff)
winsys/sw: automake: consistently use Makefile.sources
- Include the headers within. - Update scons to use them. - Drop useless include (gallium/drivers) from scons. Signed-off-by: Emil Velikov <[email protected]>
Diffstat (limited to 'src/gallium/winsys/sw/xlib/SConscript')
-rw-r--r--src/gallium/winsys/sw/xlib/SConscript5
1 files changed, 1 insertions, 4 deletions
diff --git a/src/gallium/winsys/sw/xlib/SConscript b/src/gallium/winsys/sw/xlib/SConscript
index 3a8c75dfdaf..64db2013936 100644
--- a/src/gallium/winsys/sw/xlib/SConscript
+++ b/src/gallium/winsys/sw/xlib/SConscript
@@ -11,14 +11,11 @@ if env['platform'] in ('cygwin', 'darwin', 'freebsd', 'linux', 'sunos'):
env.Append(CPPPATH = [
'#/src/gallium/include',
'#/src/gallium/auxiliary',
- '#/src/gallium/drivers',
])
ws_xlib = env.ConvenienceLibrary(
target = 'ws_xlib',
- source = [
- 'xlib_sw_winsys.c',
- ]
+ source = env.ParseSourceList('Makefile.sources', 'C_SOURCES'),
)
env.Alias('ws_xlib', ws_xlib)
Export('ws_xlib')