mirror of
https://github.com/flipperdevices/flipperzero-firmware.git
synced 2025-12-12 20:59:50 +04:00
17 lines
290 B
Python
17 lines
290 B
Python
|
|
Import("env")
|
||
|
|
|
||
|
|
env.Append(
|
||
|
|
LINT_SOURCES=[
|
||
|
|
Dir("."),
|
||
|
|
],
|
||
|
|
)
|
||
|
|
|
||
|
|
libenv = env.Clone(FW_LIB_NAME="update_util")
|
||
|
|
libenv.ApplyLibFlags()
|
||
|
|
|
||
|
|
sources = libenv.GlobRecursive("*.c")
|
||
|
|
|
||
|
|
lib = libenv.StaticLibrary("${FW_LIB_NAME}", sources)
|
||
|
|
libenv.Install("${LIB_DIST_DIR}", lib)
|
||
|
|
Return("lib")
|