blob: efed9790b77d78ab85e4c78b7145f82291bb09f1 [file] [log] [blame]
Import('*')
env = env.Clone()
env.MSVC2013Compat()
if env['suncc']:
print('warning: not building svga')
Return()
env.Prepend(CPPPATH = [
'include',
])
env.Append(CPPDEFINES = [
])
sources = env.ParseSourceList('Makefile.sources', 'C_SOURCES')
svga = env.ConvenienceLibrary(
target = 'svga',
source = sources,
)
env.Alias('svga', svga)
Export('svga')