mirror of
https://github.com/drasko/codezero.git
synced 2026-01-16 04:43:16 +01:00
Added newer platform files.
The build can now be done with fine-grain conditions on how to determine drivers, platforms, arch, subarch etc.
This commit is contained in:
10
src/arch/arm/v6/SConscript
Normal file
10
src/arch/arm/v6/SConscript
Normal file
@@ -0,0 +1,10 @@
|
||||
|
||||
|
||||
# Inherit global environment
|
||||
Import('env')
|
||||
|
||||
# The set of source files associated with this SConscript file.
|
||||
src_local = ['mm.c', 'mmu_ops.S', 'mutex.S']
|
||||
|
||||
obj = env.Object(src_local)
|
||||
Return('obj')
|
||||
10
src/arch/arm/v7/SConscript
Normal file
10
src/arch/arm/v7/SConscript
Normal file
@@ -0,0 +1,10 @@
|
||||
|
||||
|
||||
# Inherit global environment
|
||||
Import('env')
|
||||
|
||||
# The set of source files associated with this SConscript file.
|
||||
src_local = ['mm.c', 'mmu_ops.S', 'mutex.S']
|
||||
|
||||
obj = env.Object(src_local)
|
||||
Return('obj')
|
||||
Reference in New Issue
Block a user