radare2/libr/anal/Makefile
pancake c8da941768 * Very early work on r_anal_call api
* 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, ...)
2010-06-17 17:55:39 +02:00

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