mirror of
				https://github.com/davidgiven/fluxengine.git
				synced 2025-10-24 11:11:02 -07:00 
			
		
		
		
	
		
			
				
	
	
		
			20 lines
		
	
	
		
			416 B
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			20 lines
		
	
	
		
			416 B
		
	
	
	
		
			Python
		
	
	
	
	
	
| from build.c import clibrary
 | |
| 
 | |
| clibrary(
 | |
|     name="fatfs",
 | |
|     srcs=[
 | |
|         "./source/ff.c",
 | |
|         "./source/ffsystem.c",
 | |
|         "./source/ffunicode.c",
 | |
|         "./source/ff.h",
 | |
|         "./source/ffconf.h",
 | |
|         "./source/diskio.h",
 | |
|     ],
 | |
|     hdrs={
 | |
|         "ff.h": "./source/ff.h",
 | |
|         "ffconf.h": "./source/ffconf.h",
 | |
|         "diskio.h": "./source/diskio.h",
 | |
|     },
 | |
|     cflags=["-Wno-pointer-sign"],
 | |
| )
 |