1 2 3 4 5 6 7 8 9 10 11 12 13 14
Import('*') env = env.Clone() env.PrependUnique(delete_existing=1, CPPPATH = [ '#/src/gallium/drivers', ]) nvfx = env.ConvenienceLibrary( target = 'nvfx', source = env.ParseSourceList('Makefile.sources', 'C_SOURCES') ) Export('nvfx')