mirror of
https://github.com/radareorg/radare2.git
synced 2024-12-26 07:17:01 +00:00
b2e785fc61
* 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
14 lines
290 B
Makefile
14 lines
290 B
Makefile
OBJ_SPARC=asm_sparc.o
|
|
OBJ_SPARC+=../arch/sparc/gnu/sparc-dis.o
|
|
OBJ_SPARC+=../arch/sparc/gnu/sparc-opc.o
|
|
|
|
STATIC_OBJ+=${OBJ_SPARC}
|
|
|
|
TARGET_SPARC=asm_sparc.so
|
|
ALL_TARGETS+=${TARGET_SPARC}
|
|
|
|
${TARGET_SPARC}: ${OBJ_SPARC}
|
|
${CC} ${CFLAGS} -o ${TARGET_SPARC} ${OBJ_SPARC}
|
|
@#strip -s asm_x86.so
|
|
|