mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2025-12-22 20:00:10 +01:00
14 lines
178 B
Text
14 lines
178 B
Text
|
|
Import('*')
|
||
|
|
|
||
|
|
env = env.Clone()
|
||
|
|
|
||
|
|
identity = env.ConvenienceLibrary(
|
||
|
|
target = 'identity',
|
||
|
|
source = [
|
||
|
|
'id_screen.c',
|
||
|
|
'id_context.c',
|
||
|
|
'id_objects.c',
|
||
|
|
])
|
||
|
|
|
||
|
|
Export('identity')
|