Merge remote branch 'origin/master' into nv50-compiler
[mesa.git] / src / gallium / drivers / nvfx / SConscript
1 Import('*')
2
3 env = env.Clone()
4
5 env.PrependUnique(delete_existing=1, CPPPATH = [
6 '#/src/gallium/drivers',
7 ])
8
9 nvfx = env.ConvenienceLibrary(
10 target = 'nvfx',
11 source = [
12 'nv04_2d.c',
13 'nvfx_buffer.c',
14 'nvfx_context.c',
15 'nvfx_clear.c',
16 'nvfx_draw.c',
17 'nvfx_fragprog.c',
18 'nvfx_fragtex.c',
19 'nv30_fragtex.c',
20 'nv40_fragtex.c',
21 'nvfx_miptree.c',
22 'nvfx_push.c',
23 'nvfx_query.c',
24 'nvfx_resource.c',
25 'nvfx_screen.c',
26 'nvfx_state.c',
27 'nvfx_state_blend.c',
28 'nvfx_state_emit.c',
29 'nvfx_state_fb.c',
30 'nvfx_state_rasterizer.c',
31 'nvfx_state_scissor.c',
32 'nvfx_state_stipple.c',
33 'nvfx_state_viewport.c',
34 'nvfx_state_zsa.c',
35 'nvfx_surface.c',
36 'nvfx_transfer.c',
37 'nvfx_vbo.c',
38 'nvfx_vertprog.c',
39 ])
40
41 Export('nvfx')