blob: 8ad2466291de73a3ad6c71804ca5ade442c9057c [file] [log] [blame]
José Fonseca9aa73cf2009-02-01 12:00:07 +00001Import('env')
2
3env = env.Clone()
4
5util = env.StaticLibrary(
6 target = ['util'],
7 source = [
8 'readtex.c',
9 'trackball.c',
10 'showbuffer.c',
11 'shaderutil.c',
12 ],
13)
14
15Export('util')