rizin/libr/debug/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

25 lines
466 B
Makefile

NAME=r_debug
DEPS=r_reg r_anal r_bp r_util r_io
CFLAGS+=-DCORELIB
foo: pre libs tests plugins
include ../config.mk
include ${STATIC_DEBUG_PLUGINS}
STATIC_OBJS=$(subst ..,p/..,$(subst debug_,p/debug_,$(STATIC_OBJ)))
OBJ=map.o trace.o arg.o debug.o plugin.o pid.o reg.o ${STATIC_OBJS}
pre:
@if [ ! -e libr_debug.${EXT_SO} ]; then rm -f ${STATIC_OBJS} ; fi
tests:
cd t && ${MAKE} all
plugins:
cd p && ${MAKE} all
include ../rules.mk
libs: ${LIBSO} ${LIBAR}