1# for module compiling
2import os
3Import('RTT_ROOT')
4from building import *
5
6cwd = GetCurrentDir()
7
8# The set of source files associated with this SConscript file.
9src = Split("""
10 main.c
11""")
12
13group = DefineGroup('Driver', src, depend = [''])
14
15Return('group')
16