11 lines
163 B
Python
11 lines
163 B
Python
|
from building import *
|
||
|
|
||
|
Import('rtconfig')
|
||
|
|
||
|
cwd = GetCurrentDir()
|
||
|
src = ['gcc/start_gcc.S']
|
||
|
|
||
|
group = DefineGroup('Libraries', src, depend = [''])
|
||
|
|
||
|
Return('group')
|