mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-27 03:38:12 +02:00
17 lines
271 B
Python
17 lines
271 B
Python
Import('*')
|
|
|
|
env = env.Clone()
|
|
|
|
trace = env.ConvenienceLibrary(
|
|
target = 'trace',
|
|
source = [
|
|
'tr_context.c',
|
|
'tr_dump.c',
|
|
'tr_dump_state.c',
|
|
'tr_screen.c',
|
|
'tr_texture.c',
|
|
])
|
|
|
|
env.Alias('trace', trace)
|
|
|
|
Export('trace')
|