13 lines
		
	
	
		
			213 B
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			13 lines
		
	
	
		
			213 B
		
	
	
	
		
			Python
		
	
	
	
	
	
| from building import *
 | |
| 
 | |
| Import('rtconfig')
 | |
| 
 | |
| src   = Glob('*.c')
 | |
| cwd   = GetCurrentDir()
 | |
| group = []
 | |
| CPPPATH = [cwd]
 | |
| 
 | |
| group = DefineGroup('libc', src, depend = ['RT_USING_LIBC'], CPPPATH = CPPPATH)
 | |
| 
 | |
| Return('group')
 |