SConscript 559 字节
Newer Older
W
weety 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31
Import('RTT_ROOT')
from building import *

cwd = GetCurrentDir()
#src_drv = ['']

# The set of source files associated with this SConscript file.
path = [cwd]

src = Split("""
davinci_serial.c
""")

if GetDepend('RT_USING_GPIO'):
	src += ['gpio.c']

if GetDepend('RT_USING_I2C'):
	src += ['i2c-davinci.c']

if GetDepend('RT_USING_SDIO'):
	src += ['mmcsd.c']

if GetDepend('RT_USING_SPI'):
	src += ['spi-davinci.c']

if GetDepend('RT_USING_LWIP'):
	src += ['davinci_emac.c']

group = DefineGroup('Startup', src, depend = [''], CPPPATH = path)

Return('group')