mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-25 16:58:10 +02:00
13 lines
178 B
Python
13 lines
178 B
Python
Import('*')
|
|
|
|
env = env.Clone()
|
|
|
|
identity = env.ConvenienceLibrary(
|
|
target = 'identity',
|
|
source = [
|
|
'id_context.c',
|
|
'id_objects.c',
|
|
'id_screen.c',
|
|
])
|
|
|
|
Export('identity')
|