14 lines
206 B
Python
14 lines
206 B
Python
|
|
Import('env')
|
|
|
|
stdlib_sources = Split('''
|
|
src/assert.cpp
|
|
src/stdio.cpp
|
|
src/stdlib.cpp
|
|
src/string.cpp
|
|
''')
|
|
|
|
env.Append(KERNEL_SOURCES = [env.File(f) for f in stdlib_sources])
|
|
|
|
Return('env')
|