mesa/src/gallium/drivers/nvfx/SConscript
Luca Barbieri 7a830ac49f nvfx: consolidate tiny files
We probably want to reorganize the remaining files too, but that's
for later, maybe.
2010-09-04 05:31:52 +02:00

35 lines
735 B
Python

Import('*')
env = env.Clone()
env.PrependUnique(delete_existing=1, CPPPATH = [
'#/src/gallium/drivers',
])
nvfx = env.ConvenienceLibrary(
target = 'nvfx',
source = [
'nv04_2d.c',
'nvfx_buffer.c',
'nvfx_context.c',
'nvfx_clear.c',
'nvfx_draw.c',
'nvfx_fragprog.c',
'nvfx_fragtex.c',
'nv30_fragtex.c',
'nv40_fragtex.c',
'nvfx_miptree.c',
'nvfx_push.c',
'nvfx_query.c',
'nvfx_resource.c',
'nvfx_screen.c',
'nvfx_state.c',
'nvfx_state_emit.c',
'nvfx_state_fb.c',
'nvfx_surface.c',
'nvfx_transfer.c',
'nvfx_vbo.c',
'nvfx_vertprog.c',
])
Export('nvfx')