mirror of
https://github.com/radareorg/radare2.git
synced 2024-12-26 15:35:55 +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
12 lines
229 B
Makefile
12 lines
229 B
Makefile
OBJ_PPC=asm_ppc.o
|
|
OBJ_PPC+=../arch/ppc/ppc_disasm/ppc_disasm.o
|
|
|
|
STATIC_OBJ+=${OBJ_PPC}
|
|
TARGET_PPC=asm_ppc.so
|
|
|
|
ALL_TARGETS+=${TARGET_PPC}
|
|
|
|
${TARGET_PPC}: ${OBJ_PPC}
|
|
${CC} ${CFLAGS} -o asm_ppc.so ${OBJ_PPC}
|
|
@#strip -s asm_x86.so
|