mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-27 01:28:12 +02:00
Although we don't deploy these, we need to use them for debugging. Reviewed-by: Brian Paul <brianp@vmware.com>
14 lines
224 B
Python
14 lines
224 B
Python
Import('*')
|
|
|
|
env = env.Clone()
|
|
|
|
env.MSVC2008Compat()
|
|
|
|
trace = env.ConvenienceLibrary(
|
|
target = 'trace',
|
|
source = env.ParseSourceList('Makefile.sources', 'C_SOURCES')
|
|
)
|
|
|
|
env.Alias('trace', trace)
|
|
|
|
Export('trace')
|