Working compilation, but adding variant_dir = BUILD it doesn't work

This commit is contained in:
Bahadir Balban
2009-09-11 13:55:46 +03:00
parent cc90efd120
commit 942865e6fc
9 changed files with 118 additions and 30 deletions

10
src/arch/arm/SConscript Normal file
View File

@@ -0,0 +1,10 @@
# Inherit global environment
Import('env')
# The set of source files associated with this SConscript file.
src_local = ['head.S', 'vectors.S', 'syscall.S', 'exception.c']
obj = env.Object(src_local)
Return('obj')

View 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')