mirror of
https://github.com/drasko/codezero.git
synced 2026-01-12 02:43:15 +01:00
8 lines
76 B
Python
8 lines
76 B
Python
|
|
Import('env')
|
|
|
|
src = Glob('*.[cS]')
|
|
objs = env.Object(src)
|
|
|
|
Return('objs')
|