9 lines
72 B
Python
9 lines
72 B
Python
|
Import('env')
|
||
|
|
||
|
src = ('hello.c')
|
||
|
|
||
|
obj = env.Object(src)
|
||
|
|
||
|
Return('obj')
|
||
|
|