* lint: exclude "lib" subfolder from naming checks; fbt: moved LINT_SOURCES from literal strings to Dir() nodes * lint: also exclude hidden directories Co-authored-by: あく <alleteam@gmail.com>
		
			
				
	
	
		
			31 lines
		
	
	
		
			812 B
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			31 lines
		
	
	
		
			812 B
		
	
	
	
		
			Python
		
	
	
	
	
	
Import("env")
 | 
						|
 | 
						|
env.Append(
 | 
						|
    LINT_SOURCES=[Dir(".")],
 | 
						|
    SDK_HEADERS=[
 | 
						|
        *env.GlobRecursive("*.h", "targets/furi_hal_include", "*_i.h"),
 | 
						|
        *env.GlobRecursive("*.h", "targets/f${TARGET_HW}/furi_hal", "*_i.h"),
 | 
						|
        File("targets/f7/platform_specific/intrinsic_export.h"),
 | 
						|
    ],
 | 
						|
)
 | 
						|
 | 
						|
env.SetDefault(
 | 
						|
    SDK_DEFINITION=env.File("./targets/f${TARGET_HW}/api_symbols.csv").srcnode()
 | 
						|
)
 | 
						|
 | 
						|
libenv = env.Clone(FW_LIB_NAME="flipper${TARGET_HW}")
 | 
						|
libenv.Append(
 | 
						|
    CPPPATH=[
 | 
						|
        "#/lib/STM32CubeWB/Middlewares/ST/STM32_WPAN/interface/patterns/ble_thread/tl",
 | 
						|
    ]
 | 
						|
)
 | 
						|
libenv.ApplyLibFlags()
 | 
						|
 | 
						|
 | 
						|
sources = ["targets/f${TARGET_HW}/startup_stm32wb55xx_cm4.s"]
 | 
						|
sources += libenv.GlobRecursive("*.c")
 | 
						|
 | 
						|
lib = libenv.StaticLibrary("${FW_LIB_NAME}", sources)
 | 
						|
libenv.Install("${LIB_DIST_DIR}", lib)
 | 
						|
Return("lib")
 |