Import beaglebone porting

This commit is contained in:
bernard
2013-09-20 21:20:51 +08:00
parent 0bf7ed76cf
commit 9d09cd9f23
27 changed files with 3160 additions and 0 deletions
+17
View File
@@ -0,0 +1,17 @@
Import('rtconfig')
from building import *
cwd = GetCurrentDir()
src = Glob('*.c')
CPPPATH = [cwd]
if rtconfig.PLATFORM == 'iar':
src += Glob('*_iar.S')
elif rtconfig.PLATFORM == 'gcc':
src += Glob('*_gcc.S')
elif rtconfig.PLATFORM == 'armcc':
src += Glob('*_rvds.S')
group = DefineGroup('AM1808', src, depend = [''], CPPPATH = CPPPATH)
Return('group')