mirror of
https://github.com/radareorg/radare2.git
synced 2024-12-04 19:47:31 +00:00
4ead120e53
* Rename */handler.c to */plugin.c * Rename "handle" to "handler" in r_lib --HG-- rename : libr/bp/handle.c => libr/bp/plugin.c rename : libr/cmd/handle.c => libr/cmd/plugin.c rename : libr/debug/handle.c => libr/debug/plugin.c rename : libr/io/handle.c => libr/io/plugin.c
20 lines
379 B
Makefile
20 lines
379 B
Makefile
NAME=r_bp
|
|
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
|