93b6b755bd
Rename and updated libcpu/avr32/uc3/exception.x (with .irp macro) to exception_gcc.S (without .irp macro) for better compatibility. git-svn-id: https://rt-thread.googlecode.com/svn/trunk@1613 bbd45198-f89e-11dd-88c7-29a3b14d5316
31 lines
606 B
Python
31 lines
606 B
Python
import rtconfig
|
|
Import('RTT_ROOT')
|
|
from building import *
|
|
|
|
cwd = GetCurrentDir()
|
|
|
|
src = Split("""
|
|
DRIVERS/FLASHC/flashc.c
|
|
DRIVERS/GPIO/gpio.c
|
|
DRIVERS/INTC/intc.c
|
|
DRIVERS/PM/pm.c
|
|
DRIVERS/PM/pm_conf_clocks.c
|
|
DRIVERS/PM/power_clocks_lib.c
|
|
DRIVERS/USART/usart.c
|
|
""")
|
|
|
|
CPPPATH = [
|
|
cwd + '/BOARDS',
|
|
cwd + '/UTILS',
|
|
cwd + '/UTILS/PREPROCESSOR',
|
|
cwd + '/DRIVERS/FLASHC',
|
|
cwd + '/DRIVERS/GPIO',
|
|
cwd + '/DRIVERS/INTC',
|
|
cwd + '/DRIVERS/PM',
|
|
cwd + '/DRIVERS/USART',
|
|
]
|
|
|
|
group = DefineGroup('Startup', src, depend = [''], CPPPATH = CPPPATH)
|
|
|
|
Return('group')
|