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