mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-26 03:48:12 +02:00
Signed-off-by: Emil Velikov <emil.l.velikov@gmail.com> Reviewed-by: Tom Stellard <thomas.stellard@amd.com>
12 lines
188 B
Python
12 lines
188 B
Python
Import('*')
|
|
|
|
env = env.Clone()
|
|
|
|
rbug = env.ConvenienceLibrary(
|
|
target = 'rbug',
|
|
source = env.ParseSourceList('Makefile.sources', 'C_SOURCES')
|
|
)
|
|
|
|
env.Alias('rbug', rbug)
|
|
|
|
Export('rbug')
|