提交 99e5e90c 编写于 作者: T tanek liang 提交者: Bernard Xiong

[DeviceDrivers] support using RT_USING_MTD_NOR and RT_USING_MTD_NAND at the same time

上级 ef219c20
......@@ -3,20 +3,21 @@ Import('rtconfig')
from building import *
cwd = GetCurrentDir()
src = []
mtd_nor = ['mtd_nor.c']
mtd_nand = ['mtd_nand.c']
src = []
depend = []
CPPPATH = [cwd + '/../include']
group = []
if GetDepend(['RT_USING_MTD_NOR']):
src = src + mtd_nor
group = DefineGroup('DeviceDrivers', src, depend = ['RT_USING_MTD_NOR'], CPPPATH = CPPPATH)
src += ['mtd_nor.c']
depend += ['RT_USING_MTD_NOR']
if GetDepend(['RT_USING_MTD_NAND']):
src = src + mtd_nand
group = DefineGroup('DeviceDrivers', src, depend = ['RT_USING_MTD_NAND'], CPPPATH = CPPPATH)
src += ['mtd_nand.c']
depend += ['RT_USING_MTD_NAND']
if src:
group = DefineGroup('DeviceDrivers', src, depend = depend, CPPPATH = CPPPATH)
Return('group')
Return('group')
\ No newline at end of file
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册