mirror of
https://github.com/D4C1-Labs/Flipper-ARF.git
synced 2026-03-29 18:40:01 +00:00
26 lines
450 B
Python
26 lines
450 B
Python
Import("env")
|
|
|
|
env.Append(
|
|
CPPPATH=[
|
|
"#/lib/drivers",
|
|
],
|
|
SDK_HEADERS=[
|
|
File("cc1101_regs.h"),
|
|
File("st25r3916_reg.h"),
|
|
File("st25r3916.h"),
|
|
],
|
|
LINT_SOURCES=[
|
|
Dir("."),
|
|
],
|
|
)
|
|
|
|
|
|
libenv = env.Clone(FW_LIB_NAME="hwdrivers")
|
|
libenv.ApplyLibFlags()
|
|
|
|
sources = Glob("*.c", source=True)
|
|
|
|
lib = libenv.StaticLibrary("${FW_LIB_NAME}", sources)
|
|
libenv.Install("${LIB_DIST_DIR}", lib)
|
|
Return("lib")
|