mirror of
https://github.com/RT-Thread/rt-thread.git
synced 2025-01-16 06:19:24 +08:00
4584054e17
This bsp is used for test MIPS base code in simutator, implemented basic MIPS cpuport and serial port driver. Signed-off-by: Jiaxun Yang <jiaxun.yang@flygoat.com>
9 lines
142 B
Python
9 lines
142 B
Python
from building import *
|
|
|
|
cwd = GetCurrentDir()
|
|
src = Glob('*.c')
|
|
|
|
group = DefineGroup('Applications', src, depend = [''])
|
|
|
|
Return('group')
|