Merge branch 'mesa_7_6_branch'
[mesa.git] / progs / perf / SConscript
1 Import('env')
2
3 if not env['GLUT']:
4 Return()
5
6 env = env.Clone()
7
8 env.Prepend(LIBS = ['$GLUT_LIB'])
9
10 progs = [
11 'copytex',
12 'drawoverhead',
13 'fbobind',
14 'fill',
15 'genmipmap',
16 'readpixels',
17 'swapbuffers',
18 'teximage',
19 'vbo',
20 'vertexrate',
21 ]
22
23 for prog in progs:
24 env.Program(
25 target = prog,
26 source = [
27 prog + '.c',
28 'common.c',
29 'glmain.c',
30 ]
31 )
32