mirror of
https://github.com/radareorg/radare2.git
synced 2024-12-14 00:38:55 +00:00
9a1f1bc44c
- Split anal.c in several files (bb.c, aop.c, var.c...)
20 lines
428 B
Makefile
20 lines
428 B
Makefile
NAME=r_anal
|
|
DEPS=r_util r_lib
|
|
CFLAGS+=-DCORELIB -Iarch
|
|
|
|
include ../config.mk
|
|
|
|
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)))
|
|
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
|