mirror of
https://github.com/radareorg/radare2.git
synced 2025-01-19 12:22:43 +00:00
5c236fa0e3
Better mips analysis Implemented mips pseudocode plugin Change asm.parser in asm.arch callback
9 lines
311 B
Makefile
9 lines
311 B
Makefile
OBJ_MIPSPSEUDO+=parse_mips_pseudo.o
|
|
|
|
TARGET_MIPSPSEUDO=parse_mips_pseudo.${EXT_SO}
|
|
ALL_TARGETS+=${TARGET_MIPSPSEUDO}
|
|
STATIC_OBJ+=${OBJ_MIPSPSEUDO}
|
|
|
|
${TARGET_MIPSPSEUDO}: ${OBJ_MIPSPSEUDO}
|
|
${CC} $(call libname,parse_mips_pseudo) -L../../util -lr_util -shared ${CFLAGS} -o ${TARGET_MIPSPSEUDO} ${OBJ_MIPSPSEUDO}
|