radare2/libr/bp/Makefile
Nibble 4ead120e53 * Rename "handler" to "plugin"
* 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
2010-05-26 18:25:35 +02:00

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