aboutsummaryrefslogtreecommitdiffstats
path: root/src/gallium/drivers/identity/SConscript
blob: 120995143d201512b89acd356b59dc841e8603e5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
Import('*')

env = env.Clone()

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

env.Alias('identity', identity)

Export('identity')