11 lines
		
	
	
		
			193 B
		
	
	
	
		
			Python
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			11 lines
		
	
	
		
			193 B
		
	
	
	
		
			Python
		
	
	
		
			Executable File
		
	
	
	
	
| from building import *
 | |
| 
 | |
| cwd     = GetCurrentDir()
 | |
| src     = Glob('*.c')
 | |
| 
 | |
| CPPPATH = [cwd]
 | |
| 
 | |
| group = DefineGroup('DeviceDrivers', src, depend = [''], CPPPATH = CPPPATH)
 | |
| 
 | |
| Return('group')
 |