mirror of
https://github.com/radareorg/radare2.git
synced 2024-12-24 22:26:01 +00:00
edb48945b7
* Refactoring in r_anal API for _aop() with addr and length - Added ppc code analysis plugin - sync in r_core * cfg.ffio->io.ffio * Add CMD type in r_lib * Added SR register type * More stuff is now working in osx-ppc debugger * Random code cleanup
27 lines
475 B
Makefile
27 lines
475 B
Makefile
NAME=r_asm
|
|
DEPS=r_lib r_util
|
|
CFLAGS+=-DCORELIB -Iarch/include -Iarch
|
|
|
|
include ../config.mk
|
|
|
|
foo: pre ${LIBSO} ${LIBAR} plugins
|
|
|
|
include ${STATIC_ASM_PLUGINS}
|
|
STATIC_OBJS=$(subst ..,p/..,$(subst asm_,p/asm_,$(STATIC_OBJ)))
|
|
OBJ=${STATIC_OBJS} asm.o code.o
|
|
|
|
pre:
|
|
@if [ ! -e libr_asm.${EXT_SO} ]; then rm -f ${STATIC_OBJS} ; fi
|
|
|
|
re:
|
|
rm -f asm.o libr_asm.so
|
|
${MAKE}
|
|
rm -f t/fastcall.o
|
|
sudo ${MAKE} install
|
|
cd t && ${MAKE}
|
|
|
|
plugins:
|
|
cd p && ${MAKE} all
|
|
|
|
include ../rules.mk
|