mirror of
https://github.com/radareorg/radare2.git
synced 2025-01-05 20:50:06 +00:00
d2233a896b
- Implemented in r_debug_esil_* APIs - Support for step-into and continue - Expressions can be regs, numbers, math operations, ranges, comparisons.. - Honor dbg.prestep for stepping before or after analysing - read-write-exec watchpoints using native debug backend and esil emulation - OSX/iOS debugger error message is now nicer - anal/rpnesil renamed to esil - Add esi,edi in osx regprofile - Add r_cons_is_breaked() for consistency
26 lines
501 B
Makefile
26 lines
501 B
Makefile
include ../config.mk
|
|
|
|
NAME=r_debug
|
|
DEPS=r_reg r_anal r_bp r_util r_io r_parse r_cons r_db r_syscall r_hash
|
|
CFLAGS+=-DCORELIB
|
|
|
|
foo:
|
|
@${MAKE} libs
|
|
@${MAKE} plugins
|
|
|
|
include ../config.mk
|
|
include ${STATIC_DEBUG_PLUGINS}
|
|
|
|
STATIC_OBJS=$(subst ..,p/..,$(subst debug_,p/debug_,$(STATIC_OBJ)))
|
|
|
|
OBJS=signal.o map.o trace.o arg.o debug.o plugin.o snap.o
|
|
OBJS+=pid.o reg.o desc.o esil.o ${STATIC_OBJS}
|
|
|
|
plugins:
|
|
cd p && ${MAKE} all
|
|
|
|
include ../rules.mk
|
|
|
|
libs: ${LIBSO} ${LIBAR}
|
|
.PHONY: foo plugins tests libs
|