Merge branch '7.8'
[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 'combiner',
18 'convolution',
19 'cube',
20 'cubemap',
21 'depthcue',
22 'dof',
23 'double',
24 'drawf',
25 'feedback',
26 'fog',
27 'fogcoord',
28 'fogindex',
29 'font',
30 'hello',
31 'histogram',
32 'image',
33 'light',
34 'lines',
35 'list',
36 'material',
37 'minmax',
38 'mipmap',
39 'model',
40 'movelight',
41 'multisamp',
42 'multitex',
43 'mvarray',
44 'nurbs',
45 'pickdepth',
46 'picksquare',
47 'plane',
48 'planet',
49 'pointp',
50 'polyoff',
51 'polys',
52 'quadric',
53 'robot',
54 'sccolorlight',
55 'scenebamb',
56 'scene',
57 'sceneflat',
58 'select',
59 'shadowmap',
60 'smooth',
61 'stencil',
62 'stroke',
63 'surface',
64 'surfpoints',
65 'teaambient',
66 'teapots',
67 'tess',
68 'tesswind',
69 'texbind',
70 'texgen',
71 'texprox',
72 'texsub',
73 'texturesurf',
74 'texture3d',
75 'torus',
76 'trim',
77 'unproject',
78 'varray',
79 'wrap',
80 ]
81
82 for prog in progs:
83 progs_env.Program(
84 target = prog,
85 source = prog + '.c',
86 )