summaryrefslogtreecommitdiffstats
path: root/src/gallium/drivers/trace/SConscript
blob: 7341d1c1c1d69cc6da3f6c4eef79083f92dd11ab (plain)
1
2
3
4
5
6
7
8
9
10
11
12
Import('*')

env = env.Clone()

trace = env.ConvenienceLibrary(
    target = 'trace',
    source = env.ParseSourceList('Makefile.sources', 'C_SOURCES')
    )

env.Alias('trace', trace)

Export('trace')