mirror of
https://github.com/RT-Thread/rt-thread.git
synced 2025-01-23 19:37:22 +08:00
9 lines
72 B
Python
9 lines
72 B
Python
|
Import('env')
|
||
|
|
||
|
src = ('hello.c')
|
||
|
|
||
|
obj = env.Object(src)
|
||
|
|
||
|
Return('obj')
|
||
|
|