mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2025-12-25 23:50:11 +01:00
Double negatives in English language are normally avoided, plus the former seems cleaner and more consistent. Signed-off-by: Emil Velikov <emil.l.velikov@gmail.com> Reviewed-by: Ian Romanick <ian.d.romanick@intel.com>
24 lines
425 B
Python
24 lines
425 B
Python
Import('*')
|
|
|
|
env = env.Clone()
|
|
|
|
env.MSVC2013Compat()
|
|
|
|
env.Prepend(CPPPATH = [
|
|
'#include'
|
|
])
|
|
|
|
if env['udev']:
|
|
env.PkgUseModules('UDEV')
|
|
env.Append(CPPDEFINES = ['HAVE_LIBUDEV'])
|
|
|
|
# parse Makefile.sources
|
|
sources = env.ParseSourceList('Makefile.sources', 'LOADER_C_FILES')
|
|
|
|
libloader = env.ConvenienceLibrary(
|
|
target = 'libloader',
|
|
source = sources,
|
|
)
|
|
|
|
env.Alias('libloader', libloader)
|
|
Export('libloader')
|