17158c2f00
Using the u_ prefix to distingish the c source files that support gallium interfaces and those that have really no relation with gallium itself.
13 lines
162 B
Python
13 lines
162 B
Python
Import('*')
|
|
|
|
util = env.ConvenienceLibrary(
|
|
target = 'util',
|
|
source = [
|
|
'p_debug.c',
|
|
'p_tile.c',
|
|
'p_util.c',
|
|
'u_mm.c',
|
|
])
|
|
|
|
auxiliaries.insert(0, util)
|