mirror of
https://github.com/radareorg/radare2.git
synced 2024-12-13 07:57:35 +00:00
9a76d39a7a
* Update configure * r_big - Prepare big.c to add gmp code - Implement r_big_{new, free} with libgmp * r_anal - Change the type of {bb,fcn}->fingerprint to RNumBig * r_flags & r_core - Add cmd 'af-*' which removes all flags
23 lines
522 B
Makefile
23 lines
522 B
Makefile
NAME=r_anal
|
|
DEPS=r_util r_lib
|
|
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)))
|
|
OBJ=${STATIC_OBJS} ctx.o reflines.o ref.o aop.o fcn.o bb.o var.o anal.o
|
|
|
|
pre:
|
|
if [ ! -e libr_anal.${EXT_SO} ]; then rm -f ${STATIC_OBJS} ; fi
|
|
|
|
plugins:
|
|
cd p && ${MAKE} all
|
|
|
|
include ../rules.mk
|