from building import *

cwd     = GetCurrentDir()
src     = Split('''
ymodem.c
''')

CPPPATH = [cwd]

if GetDepend('YMODEM_USING_FILE_TRANSFER'):
    src += ['ry_sy.c']

group   = DefineGroup('Utilities', src, depend = ['RT_USING_RYM'], CPPPATH = CPPPATH)

Return('group')