mirror of
https://github.com/radareorg/radare2.git
synced 2025-01-17 03:13:16 +00:00
a43068bde0
- Added breakpoint and code analysis plugins for bf - *mem++ != mem[0]++ - Full register get/set support - Support for step and continue-until-syscall - Work in progress breakpoint support * Added bfvm_reset() hooked to plugin->kill * Enhacements in r_core and r_debug for better debugger support - Added plugin->step_over delegate
10 lines
185 B
Makefile
10 lines
185 B
Makefile
OBJ_BF=bp_bf.o
|
|
|
|
STATIC_OBJ+=${OBJ_BF}
|
|
TARGET_BF=bp_bf.${EXT_SO}
|
|
|
|
ALL_TARGETS+=${TARGET_BF}
|
|
|
|
${TARGET_BF}: ${OBJ_BF}
|
|
${CC_LIB} $(call libname,bp_bf) ${CFLAGS} -o ${TARGET_BF} ${OBJ_BF}
|