from building import *
import os

root=str(Dir('#'))
cwd=os.getcwd()

include_path = [os.path.join(cwd,'Library')]

src = Glob('Library/*.c')

group = DefineGroup('FATFS', src, depend = [''], CPPPATH = include_path)


Return('group')
