radare2/libr/bp/Makefile
pancake e365b90d5f Implement support for >- (pipe to editor)
Fix another race condition in the build system
Fix many null deref reported by clang-analyzer
Assume -w when running r2 with -d
2012-08-13 17:42:25 +02:00

21 lines
413 B
Makefile

NAME=r_bp
DEPS+=r_util
CFLAGS+=-DCORELIB
include ../config.mk
foo:
for a in libr_bp.${EXT_SO} libr_bp.${EXT_AR} plugins ; do ${MAKE} $$a ; done
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