mirror of
https://github.com/D4C1-Labs/Flipper-ARF.git
synced 2026-03-30 23:45:48 +00:00
12 lines
249 B
Python
12 lines
249 B
Python
def generate(env):
|
|
env.SetDefault(
|
|
GDB="gdb",
|
|
GDBPY="gdb-py3",
|
|
GDBCOM="$GDB $GDBOPTS $SOURCES", # no $TARGET
|
|
GDBPYCOM="$GDBPY $GDBOPTS $GDBPYOPTS $SOURCES", # no $TARGET
|
|
)
|
|
|
|
|
|
def exists(env):
|
|
return True
|