mirror of
https://github.com/Next-Flip/Momentum-Firmware.git
synced 2026-04-27 03:49:58 -07:00
14 lines
260 B
Python
14 lines
260 B
Python
Import("env")
|
|
|
|
env.Append(LINT_SOURCES=["core"])
|
|
|
|
|
|
libenv = env.Clone(FW_LIB_NAME="core")
|
|
libenv.ApplyLibFlags()
|
|
|
|
sources = libenv.GlobRecursive("*.c")
|
|
|
|
lib = libenv.StaticLibrary("${FW_LIB_NAME}", sources)
|
|
libenv.Install("${LIB_DIST_DIR}", lib)
|
|
Return("lib")
|