11 lines
190 B
Python
11 lines
190 B
Python
|
from building import *
|
||
|
|
||
|
cwd = GetCurrentDir()
|
||
|
src = Glob('*.S') + Glob('*.c')
|
||
|
|
||
|
CPPPATH = [cwd]
|
||
|
|
||
|
group = DefineGroup('AARCH32-BOOT', src, depend = [''], CPPPATH = CPPPATH)
|
||
|
|
||
|
Return('group')
|