mirror of
https://github.com/D4C1-Labs/Flipper-ARF.git
synced 2026-03-29 16:20:01 +00:00
18 lines
283 B
Python
18 lines
283 B
Python
Import("env")
|
|
|
|
env.Append(
|
|
LINT_SOURCES=[
|
|
Dir("."),
|
|
]
|
|
)
|
|
|
|
|
|
libenv = env.Clone(FW_LIB_NAME="furi")
|
|
libenv.ApplyLibFlags()
|
|
|
|
sources = libenv.GlobRecursive("*.c")
|
|
|
|
lib = libenv.StaticLibrary("${FW_LIB_NAME}", sources)
|
|
libenv.Install("${LIB_DIST_DIR}", lib)
|
|
Return("lib")
|