mirror of
https://github.com/radareorg/radare2.git
synced 2024-12-05 03:56:46 +00:00
17 lines
316 B
Makefile
17 lines
316 B
Makefile
include ../config.mk
|
|
|
|
NAME=r_bp
|
|
DEPS+=r_util
|
|
|
|
CFLAGS+=-DCORELIB
|
|
|
|
.PHONY: pre
|
|
pre: libr_bp.${EXT_SO} libr_bp.${EXT_AR}
|
|
${MAKE} -C p
|
|
|
|
include ${STATIC_BP_PLUGINS}
|
|
STATIC_OBJS=$(subst ..,p/..,$(subst bp_,p/bp_,$(STATIC_OBJ)))
|
|
OBJS=bp.o bp_watch.o bp_io.o bp_plugin.o bp_traptrace.o ${STATIC_OBJS}
|
|
|
|
include ../rules.mk
|