mirror of
https://github.com/radareorg/radare2.git
synced 2024-12-11 15:04:23 +00:00
4f8fc7d926
- Display 'traced' flag in 'abl' command * Initial work on 'dd' command (filedescriptors) - API defined, not yet implemented or used
26 lines
473 B
Makefile
26 lines
473 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 plugin.o pid.o reg.o desc.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}
|