radare2/libr/anal/p/mips.mk
pancake f641df833b * Initial working version of the MIPS code analysis
- imported from r1
* Implement the syscall table for linux-mips
* Do not use tabs in the mips disassembler
* Fix other uninitialized state segfaults in r_debug
2010-06-23 13:43:08 +02:00

11 lines
220 B
Makefile

OBJ_MIPS=anal_mips.o
STATIC_OBJ+=${OBJ_MIPS}
TARGET_MIPS=anal_mips.${EXT_SO}
ALL_TARGETS+=${TARGET_MIPS}
${TARGET_MIPS}: ${OBJ_MIPS}
${CC} ${CFLAGS} -o anal_mips.${EXT_SO} ${OBJ_MIPS}
@#strip -s anal_mips.${EXT_SO}