radare2/libr/bp/Makefile

20 lines
379 B
Makefile
Raw Normal View History

NAME=r_bp
2010-03-25 09:18:59 +00:00
DEPS+=r_util
CFLAGS+=-DCORELIB
include ../config.mk
foo: libr_bp.${EXT_SO} libr_bp.${EXT_AR} plugins
include ${STATIC_BP_PLUGINS}
STATIC_OBJS=$(subst ..,p/..,$(subst bp_,p/bp_,$(STATIC_OBJ)))
OBJ=bp.o watch.o io.o plugin.o traptrace.o ${STATIC_OBJS}
#pre:
# if [ ! -e libr_bp.so ]; then rm -f ${STATIC_OBJS} ; fi
plugins:
cd p && ${MAKE} all
include ../rules.mk