mirror of
https://github.com/radareorg/radare2.git
synced 2024-11-30 16:40:57 +00:00
304cddfec3
- Added risc-v to README - Fixed ret detection, and branches - Fix all the warns
10 lines
236 B
Makefile
10 lines
236 B
Makefile
OBJ_RISCV=anal_riscv.o
|
|
|
|
STATIC_OBJ+=${OBJ_RISCV}
|
|
TARGET_RISCV=anal_riscv.${EXT_SO}
|
|
|
|
ALL_TARGETS+=${TARGET_RISCV}
|
|
|
|
${TARGET_RISCV}: ${OBJ_RISCV}
|
|
${CC} $(call libname,anal_RISCV) ${LDFLAGS} ${CFLAGS} -o anal_riscv.${EXT_SO} ${OBJ_RISCV}
|