4
0
mirror of https://github.com/RT-Thread/rt-thread.git synced 2025-01-18 08:13:31 +08:00
wuyangyong 2d98e4990e add lpc178x eth driver
git-svn-id: https://rt-thread.googlecode.com/svn/trunk@1765 bbd45198-f89e-11dd-88c7-29a3b14d5316
2011-10-14 09:18:11 +00:00

25 lines
527 B
Python

import copy
Import('RTT_ROOT')
Import('rtconfig')
from building import *
cwd = GetCurrentDir()
src = Glob('*.c')
# remove no need file.
if GetDepend('RT_USING_LWIP') == False:
src_need_remove = ['emac.c'] # need remove file list.
src_tmp = copy.copy(src)
count = 0
for i in range(0, len(src_tmp)):
s = str(src_tmp[i])
if s in src_need_remove:
src.pop(i-count)
count = count + 1
CPPPATH = [cwd]
group = DefineGroup('Drivers', src, depend = [''], CPPPATH = CPPPATH)
Return('group')