g3dvl: Use sobel filter for chroma interpolation
[mesa/nouveau-pmpeg.git] / src / gallium / targets / graw-null / SConscript
blobebac1728f04f6b76bcc2bf8cb8705a2b0d304d83
1 #######################################################################
2 # SConscript for xlib winsys
4 Import('*')
6 env = env.Clone()
8 graw_util = env.SharedObject(
9     source = ['graw_util.c'],
12 env = env.Clone()
14 sources = [
15     'graw_null.c',
16     graw_util,
19 env.Prepend(LIBS = [gallium])
21 # TODO: write a wrapper function http://www.scons.org/wiki/WrapperFunctions
22 graw = env.SharedLibrary(
23     target = 'graw',
24     source = sources,
27 if env['platform'] == 'windows':
28     graw = env.FindIxes(graw, 'LIBPREFIX', 'LIBSUFFIX')
29 else:
30     graw = env.FindIxes(graw, 'SHLIBPREFIX', 'SHLIBSUFFIX')
32 Export('graw_util', 'graw')