mirror of
https://github.com/radareorg/radare2.git
synced 2024-12-14 08:49:50 +00:00
69a12884ed
doc.sw has been moved to radare2-extras
20 lines
339 B
Makefile
20 lines
339 B
Makefile
NAME=r_cmd
|
|
OBJS=cmd.o plugin.o macro.o
|
|
DEPS=r_util r_lib r_cons
|
|
|
|
include ../config.mk
|
|
|
|
CFLAGS+=-DCORELIB
|
|
|
|
foo:
|
|
for a in ${LIBSO} ${LIBAR} plugins ; do ${MAKE} $$a ; done
|
|
|
|
include ${STATIC_CMD_PLUGINS}
|
|
STATIC_OBJS=$(subst ..,p/..,$(subst cmd_,p/cmd_,$(STATIC_OBJ)))
|
|
OBJS+=${STATIC_OBJS}
|
|
|
|
plugins:
|
|
cd p && ${MAKE} all
|
|
|
|
include ../rules.mk
|