mirror of
https://github.com/drasko/codezero.git
synced 2026-01-11 02:06:37 +01:00
13 lines
249 B
Python
13 lines
249 B
Python
|
|
# Inherit global environment
|
|
Import('env')
|
|
|
|
# The set of source files associated with this SConscript file.
|
|
src_local = Glob('*.[cS]')
|
|
src_local += Glob('src/*.[cS]')
|
|
src_local += Glob('src/arch/*.[cS]')
|
|
|
|
obj = env.Object(src_local)
|
|
Return('obj')
|
|
|