mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-22 15:18:09 +02:00
15 lines
216 B
Text
15 lines
216 B
Text
|
|
Import('*')
|
||
|
|
|
||
|
|
env = env.Clone()
|
||
|
|
|
||
|
|
trace = env.ConvenienceLibrary(
|
||
|
|
target = 'trace',
|
||
|
|
source = [
|
||
|
|
'tr_context.c',
|
||
|
|
'tr_dump.c',
|
||
|
|
'tr_screen.c',
|
||
|
|
'tr_state.c',
|
||
|
|
'tr_stream.c',
|
||
|
|
])
|
||
|
|
|
||
|
|
Export('trace')
|