This commit is contained in:
Willy-JL
2023-12-02 06:09:01 +00:00
154 changed files with 2085 additions and 10512 deletions

View File

@@ -0,0 +1,16 @@
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")