mirror of
https://github.com/radareorg/radare2.git
synced 2024-12-26 15:35:55 +00:00
13 lines
319 B
Makefile
13 lines
319 B
Makefile
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}
|
|
${CC} -shared ${CFLAGS} -o ${TARGET_MIPS} ${OBJ_MIPS}
|