15 lines
191 B
Python
15 lines
191 B
Python
|
|
from building import *
|
|
|
|
cwd = GetCurrentDir()
|
|
src = Glob('*.S')
|
|
src += Glob('*.c')
|
|
|
|
|
|
|
|
CPPPATH = [cwd]
|
|
|
|
group = DefineGroup('Drivers', src, depend = [''], CPPPATH = CPPPATH)
|
|
|
|
Return('group')
|