from building import *
import os

include_path = [os.getcwd()]

src = Glob('*.c')

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


Return('group')
