Merge remote branch 'origin/master' into lp-binning
[mesa.git] / progs / redbook / SConscript
1 Import('*')
2
3 progs = [
4 'aaindex',
5 'aapoly',
6 'aargb',
7 'accanti',
8 'accpersp',
9 'alpha3D',
10 'alpha',
11 'anti',
12 'bezcurve',
13 'bezmesh',
14 'checker',
15 'clip',
16 'colormat',
17 'cube',
18 'depthcue',
19 'dof',
20 'double',
21 'drawf',
22 'feedback',
23 'fog',
24 'fogindex',
25 'font',
26 'hello',
27 'image',
28 'light',
29 'lines',
30 'list',
31 'material',
32 'mipmap',
33 'model',
34 'movelight',
35 'nurbs',
36 'pickdepth',
37 'picksquare',
38 'plane',
39 'planet',
40 'polyoff',
41 'polys',
42 'quadric',
43 'robot',
44 'sccolorlight',
45 'scenebamb',
46 'scene',
47 'sceneflat',
48 'select',
49 'smooth',
50 'stencil',
51 'stroke',
52 'surface',
53 'teaambient',
54 'teapots',
55 'tess',
56 'tesswind',
57 'texbind',
58 'texgen',
59 'texprox',
60 'texsub',
61 'texturesurf',
62 'torus',
63 'trim',
64 'unproject',
65 'varray',
66 'wrap',
67 ]
68
69 for prog in progs:
70 progs_env.Program(
71 target = prog,
72 source = prog + '.c',
73 )