mirror of
https://github.com/radareorg/radare2.git
synced 2025-02-11 09:05:33 +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
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
|