radare2/libr/debug/Makefile
pancake ad80aba942 Initial support for debugger memory snapshots dms. Enhace hexdiffing
- Fix linux debugger
- ccc shows hexdiffing, but only the ones that differ
2015-02-23 03:29:40 +01:00

26 lines
494 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 ${STATIC_OBJS}
plugins:
cd p && ${MAKE} all
include ../rules.mk
libs: ${LIBSO} ${LIBAR}
.PHONY: foo plugins tests libs