43f68131ce
FH8620 BSP Copyright (c) 2016 Shanghai Fullhan Microelectronics Co., Ltd. All rights reserved
10 lines
176 B
Python
10 lines
176 B
Python
from building import *
|
|
|
|
cwd = GetCurrentDir()
|
|
src = Glob('*.c')
|
|
CPPPATH = [cwd]
|
|
|
|
group = DefineGroup('drivers', src, depend = [''], CPPPATH = CPPPATH)
|
|
|
|
Return('group')
|