23 lines
469 B
Python
23 lines
469 B
Python
|
|
from building import *
|
|
import rtconfig
|
|
|
|
cwd = GetCurrentDir()
|
|
|
|
src = []
|
|
|
|
src += Glob('*.c')
|
|
CPPPATH = [cwd]
|
|
LOCAL_CCFLAGS = ''
|
|
|
|
if rtconfig.PLATFORM == 'gcc':
|
|
LOCAL_CCFLAGS += ' -std=c99'
|
|
elif rtconfig.PLATFORM == 'armcc':
|
|
LOCAL_CCFLAGS += ' --c99'
|
|
elif rtconfig.PLATFORM == 'armclang':
|
|
LOCAL_CCFLAGS += ' -std=c99'
|
|
|
|
group = DefineGroup('rw007', src, depend = ['BSP_USING_RW007'], CPPPATH = CPPPATH, LOCAL_CCFLAGS = LOCAL_CCFLAGS)
|
|
|
|
Return('group')
|