mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-26 10:18:12 +02:00
15 lines
189 B
Text
15 lines
189 B
Text
|
|
Import('*')
|
||
|
|
|
||
|
|
env = env.Clone()
|
||
|
|
|
||
|
|
rbug = env.ConvenienceLibrary(
|
||
|
|
target = 'rbug',
|
||
|
|
source = [
|
||
|
|
'rbug_context.c',
|
||
|
|
'rbug_core.c',
|
||
|
|
'rbug_objects.c',
|
||
|
|
'rbug_screen.c',
|
||
|
|
])
|
||
|
|
|
||
|
|
Export('rbug')
|