rizin/libr/debug/Makefile
pancake d564c5a0fe * Implement 'dcc' and 'dcr' debugger commands
- Using continue-until-opcode-type call
  - Implemented continue-until-syscall in the same way
* Fix r_str_hash() algorithm to avoid colisions
* Added r_sys_bt()
2010-05-24 12:07:54 +02:00

25 lines
466 B
Makefile

NAME=r_debug
DEPS=r_reg r_anal r_bp r_util r_io
CFLAGS+=-DCORELIB
foo: pre libs tests plugins
include ../config.mk
include ${STATIC_DEBUG_PLUGINS}
STATIC_OBJS=$(subst ..,p/..,$(subst debug_,p/debug_,$(STATIC_OBJ)))
OBJ=map.o trace.o arg.o debug.o handle.o pid.o reg.o ${STATIC_OBJS}
pre:
@if [ ! -e libr_debug.${EXT_SO} ]; then rm -f ${STATIC_OBJS} ; fi
tests:
cd t && ${MAKE} all
plugins:
cd p && ${MAKE} all
include ../rules.mk
libs: ${LIBSO} ${LIBAR}