mesa/src/gallium/drivers/i915/SConscript
Jakob Bornecrantz f00da2a3ff i915g: Drop the simple sufix
None of the other driver have a silly sufix,
	so just drop it. Nothing new added in this commit
	or any other commit but this is better marketing.
2009-10-05 19:48:08 +01:00

30 lines
541 B
Python

Import('*')
env = env.Clone()
i915 = env.ConvenienceLibrary(
target = 'i915',
source = [
'i915_blit.c',
'i915_buffer.c',
'i915_clear.c',
'i915_context.c',
'i915_debug.c',
'i915_debug_fp.c',
'i915_flush.c',
'i915_fpc_emit.c',
'i915_fpc_translate.c',
'i915_prim_emit.c',
'i915_prim_vbuf.c',
'i915_screen.c',
'i915_state.c',
'i915_state_derived.c',
'i915_state_dynamic.c',
'i915_state_emit.c',
'i915_state_immediate.c',
'i915_state_sampler.c',
'i915_surface.c',
'i915_texture.c',
])
Export('i915')