mirror of
https://github.com/radareorg/radare2.git
synced 2025-03-04 12:27:40 +00:00

* Fix segmentation fault in command = 033h * Fix r_db for 64 bits * Initial import of the RPair API on top of SDB * Minor fix in r_num_get parser
23 lines
541 B
Makefile
23 lines
541 B
Makefile
NAME=r_anal
|
|
DEPS=r_util r_lib r_reg r_syscall r_diff
|
|
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 ../ar,p/../ar,$(subst anal_,p/anal_,$(STATIC_OBJ)))
|
|
OBJLIBS=meta.o reflines.o ref.o op.o fcn.o bb.o var.o anal.o cond.o value.o cc.o diff.o type.o fcnstore.o
|
|
OBJ=${STATIC_OBJS} ${OBJLIBS}
|
|
|
|
pre:
|
|
@if [ ! -e libr_anal.${EXT_SO} ]; then rm -f ${STATIC_OBJS} ; fi
|
|
|
|
plugins:
|
|
@${MAKE} -C p all
|
|
|
|
include ../rules.mk
|