1from building import * 2 3cwd = GetCurrentDir() 4src = Glob('*.c') 5 6group = DefineGroup('Applications', src, depend = ['']) 7 8Return('group') 9