radare2/libr/asm/p/mips.mk

13 lines
319 B
Makefile
Raw Normal View History

OBJ_MIPS=asm_mips.o
# gnu mips-dis
OBJ_MIPS+=../arch/mips/gnu/mips-dis.o
OBJ_MIPS+=../arch/mips/gnu/mips16-opc.o
OBJ_MIPS+=../arch/mips/gnu/mips-opc.o
TARGET_MIPS=asm_mips.${EXT_SO}
ALL_TARGETS+=${TARGET_MIPS}
STATIC_OBJ+=${OBJ_MIPS}
${TARGET_MIPS}: ${OBJ_MIPS}
2010-03-25 09:18:59 +00:00
${CC} -shared ${CFLAGS} -o ${TARGET_MIPS} ${OBJ_MIPS}