mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-27 20:58:11 +02:00
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.
30 lines
541 B
Python
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')
|