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