mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2025-12-20 18:10:11 +01:00
16 lines
215 B
Text
16 lines
215 B
Text
|
|
Import('env')
|
||
|
|
|
||
|
|
env = env.Clone()
|
||
|
|
|
||
|
|
util = env.StaticLibrary(
|
||
|
|
target = ['util'],
|
||
|
|
source = [
|
||
|
|
'readtex.c',
|
||
|
|
'trackball.c',
|
||
|
|
'showbuffer.c',
|
||
|
|
'shaderutil.c',
|
||
|
|
],
|
||
|
|
)
|
||
|
|
|
||
|
|
Export('util')
|