mirror of
https://github.com/radareorg/radare2.git
synced 2025-02-14 02:51:12 +00:00
![pancake](/assets/img/avatar_default.png)
* Make rabin2 support 'arm' instead of 'asm_arm' for -a (autoprefix 'asm_') * Some build fixtures * Static plugins are configurable in libr/config.mk and libr/config.h
12 lines
222 B
Makefile
12 lines
222 B
Makefile
OBJ_CSR=asm_csr.o
|
|
OBJ_CSR+=../arch/csr/csr_disasm/dis.o
|
|
|
|
STATIC_OBJ+=${OBJ_CSR}
|
|
TARGET_CSR=asm_csr.so
|
|
|
|
ALL_TARGETS+=${TARGET_CSR}
|
|
|
|
${TARGET_CSR}: ${OBJ_CSR}
|
|
${CC} ${CFLAGS} -o asm_csr.so ${OBJ_CSR}
|
|
@#strip -s asm_x86.so
|