mirror of
https://github.com/radareorg/radare2.git
synced 2025-01-13 17:20:46 +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
368 B
Makefile
14 lines
368 B
Makefile
OBJ_X86_OLLY=asm_x86_olly.o
|
|
OBJ_X86_OLLY+=../arch/x86/ollyasm/disasm.o
|
|
OBJ_X86_OLLY+=../arch/x86/ollyasm/asmserv.o
|
|
OBJ_X86_OLLY+=../arch/x86/ollyasm/assembl.o
|
|
|
|
STATIC_OBJ+=${OBJ_X86_OLLY}
|
|
TARGET_X86_OLLY=asm_x86_olly.so
|
|
|
|
ALL_TARGETS+=${TARGET_X86_OLLY}
|
|
|
|
${TARGET_X86_OLLY}: ${OBJ_X86_OLLY}
|
|
${CC} ${CFLAGS} -o ${TARGET_X86_OLLY} ${OBJ_X86_OLLY}
|
|
@#strip -s asm_x86.so
|