4
0
mirror of https://github.com/RT-Thread/rt-thread.git synced 2025-01-15 06:59:22 +08:00

13 lines
280 B
Python

import rtconfig
from building import *
if rtconfig.EFM32_BOARD == 'EFM32_GXXX_DK':
src = Glob('*.c')
CPPPATH = [GetCurrentDir()]
group = DefineGroup('EFM32_GXXX_DK', src, depend = [''], CPPPATH = CPPPATH)
Return('group')
else:
empty = []
Return('empty')