mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-24 19:18:11 +02: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')
|