mirror of
https://github.com/radareorg/radare2.git
synced 2024-12-11 06:55:01 +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
19 lines
290 B
Makefile
19 lines
290 B
Makefile
NAME=r_cmd
|
|
OBJ=cmd.o plugin.o macro.o
|
|
DEPS=r_util
|
|
|
|
include ../config.mk
|
|
|
|
CFLAGS+=-DCORELIB
|
|
|
|
foo: ${LIBSO} ${LIBAR} plugins
|
|
|
|
include ${STATIC_CMD_PLUGINS}
|
|
STATIC_OBJS=$(subst ..,p/..,$(subst cmd_,p/cmd_,$(STATIC_OBJ)))
|
|
OBJ+=${STATIC_OBJS}
|
|
|
|
plugins:
|
|
cd p && ${MAKE} all
|
|
|
|
include ../rules.mk
|