1import os
2import rtconfig
3from building import *
4
5Import('SDK_LIB')
6
7cwd = GetCurrentDir()
8
9# add general drivers
10src = ['board.c']
11
12path = [cwd]
13
14group = DefineGroup('Drivers', src, depend = [''], CPPPATH = path)
15Return('group')
16