radare2/libr/bp/p/bf.mk
pancake a43068bde0 * brainfuck debugger is finally usable
- 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
2011-10-09 04:15:32 +02:00

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}