mirror of
https://github.com/radareorg/radare2.git
synced 2024-12-13 16:18:33 +00:00
e365b90d5f
Fix another race condition in the build system Fix many null deref reported by clang-analyzer Assume -w when running r2 with -d
21 lines
413 B
Makefile
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
|