4
0
mirror of https://github.com/RT-Thread/rt-thread.git synced 2025-01-15 07:39:33 +08:00
goprife@gmail.com 9b2ea9bc0f 1. change mtd to mtd_nor, 2. update jffs2
git-svn-id: https://rt-thread.googlecode.com/svn/trunk@2140 bbd45198-f89e-11dd-88c7-29a3b14d5316
2012-05-30 13:39:39 +00:00

21 lines
415 B
Python

Import('RTT_ROOT')
Import('rtconfig')
from building import *
cwd = GetCurrentDir()
src = []
mtd_nor = ['mtd_nor.c']
mtd_nand = ['mtd_nand.c']
if GetDepend(['RT_USING_MTD_NOR']):
src = src + mtd_nor
if GetDepend(['RT_USING_MTD_NAND']):
src = src + mtd_nand
CPPPATH = [cwd + '/../include']
group = DefineGroup('DeviceDrivers', src, depend = [''], CPPPATH = CPPPATH)
Return('group')