mirror of
https://gitee.com/Vancouver2017/luban-lite-t3e-pro.git
synced 2025-12-14 02:18:54 +00:00
15 lines
259 B
Python
15 lines
259 B
Python
Import('AIC_ROOT')
|
|
Import('PRJ_KERNEL')
|
|
from building import *
|
|
|
|
cwd = GetCurrentDir()
|
|
CPPPATH = [cwd]
|
|
|
|
src = []
|
|
group = []
|
|
|
|
src = Glob('*.c')
|
|
group = DefineGroup('of_dtb', src, depend = ['LPKG_USING_FDTLIB'], CPPPATH = CPPPATH)
|
|
|
|
Return('group')
|