mirror of
https://github.com/radareorg/radare2.git
synced 2025-01-05 20:50:06 +00:00
c8da941768
* Initial support for visual cursor with invert cons in 'pd' bytes - Some changes in '*' and '/' keys in visual modes (+-16) - '+/-' in visual cursor works as in r1 (inc/dec cursor byte) * Rename 'zf' into 'zh' for header, not function - 'zf' stands now for function signatures (args, types, ret, ...)
24 lines
569 B
Makefile
24 lines
569 B
Makefile
NAME=r_anal
|
|
DEPS=r_util r_lib r_reg
|
|
CFLAGS+=-DCORELIB -Iarch
|
|
|
|
include ../config.mk
|
|
|
|
LDFLAGS+=${BN_LIBS}
|
|
|
|
foo: pre libr_anal.${EXT_SO} libr_anal.${EXT_AR} plugins
|
|
|
|
include ${STATIC_ANAL_PLUGINS}
|
|
#STATIC_OBJS=$(subst ..,p/..,$(subst anal_,p/anal_,$(STATIC_OBJ)))
|
|
STATIC_OBJS=$(subst ../ar,p/../ar,$(subst anal_,p/anal_,$(STATIC_OBJ)))
|
|
OBJLIBS=ctx.o reflines.o ref.o aop.o fcn.o bb.o var.o anal.o cond.o value.o call.o
|
|
OBJ=${STATIC_OBJS} ${OBJLIBS}
|
|
|
|
pre:
|
|
if [ ! -e libr_anal.${EXT_SO} ]; then rm -f ${STATIC_OBJS} ; fi
|
|
|
|
plugins:
|
|
cd p && ${MAKE} all
|
|
|
|
include ../rules.mk
|