util: remove LIST_DEL macro
[mesa.git] / src / gallium / drivers / svga / SConscript
1 Import('*')
2
3 env = env.Clone()
4
5 env.MSVC2013Compat()
6
7 if env['suncc']:
8 print('warning: not building svga')
9 Return()
10
11 env.Prepend(CPPPATH = [
12 'include',
13 ])
14
15 env.Append(CPPDEFINES = [
16 ])
17
18 sources = env.ParseSourceList('Makefile.sources', 'C_SOURCES')
19
20 svga = env.ConvenienceLibrary(
21 target = 'svga',
22 source = sources,
23 )
24
25 env.Alias('svga', svga)
26
27 Export('svga')