mirror of
https://github.com/D4C1-Labs/Flipper-ARF.git
synced 2026-03-30 22:35:41 +00:00
26 lines
528 B
Python
26 lines
528 B
Python
from SCons.Action import Action
|
|
from SCons.Builder import Builder
|
|
|
|
|
|
def generate(env):
|
|
env.SetDefault(
|
|
STRIP="strip",
|
|
STRIPFLAGS=[],
|
|
)
|
|
env.Append(
|
|
BUILDERS={
|
|
"ELFStripper": Builder(
|
|
action=Action(
|
|
[["$STRIP", "$STRIPFLAGS", "$SOURCES", "-o", "$TARGET"]],
|
|
"${STRIPCOMSTR}",
|
|
),
|
|
suffix=".elf",
|
|
src_suffix=".elf",
|
|
),
|
|
}
|
|
)
|
|
|
|
|
|
def exists(env):
|
|
return True
|