mirror of
https://github.com/radareorg/radare2.git
synced 2024-12-27 16:07:54 +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
10 lines
176 B
Makefile
10 lines
176 B
Makefile
OBJ_BF=asm_bf.o
|
|
|
|
TARGET_BF=asm_bf.so
|
|
ALL_TARGETS+=${TARGET_BF}
|
|
STATIC_OBJ+=${OBJ_BF}
|
|
|
|
${TARGET_BF}: ${OBJ_BF}
|
|
${CC} ${CFLAGS} -o ${TARGET_BF} ${OBJ_BF}
|
|
@#strip -s asm_x86.so
|