mirror of
https://github.com/radareorg/radare2.git
synced 2024-12-26 07:17:01 +00:00
d41e40ba05
- Make proper use of the config-user.mk - Accelerate build by manually checking timestamps of bin/lib to objs/srcs - Use '-MD' by default - Lot of minor fixups done in multiple places - Fix PREFIX/LIBDIR installation/loading problems for plugins - Some segfaults has been fixed - Use R_API in r_core and r_lib * Add 'vm' to be build by libr by default * Add 'libs.c' in core/ to manage plugins from core - Added 'dir.plugins' - Make '-e' and '-L' radare2 flags work - Plugins are not loaded multiple times now * Added r_lib_types string array containing plugin types strings * Minor fixups in r_debug - Properly check 'contsc' delegate - Separate r_debug_wait() * Rename dbg-ptrace into dbg_ptrace --HG-- rename : libr/debug/p/dbg-ptrace.c => libr/debug/p/dbg_ptrace.c
14 lines
252 B
Makefile
14 lines
252 B
Makefile
include ../../../config-user.mk
|
|
|
|
OBJ_ARM=asm_arm.o
|
|
OBJ_ARM+=../arch/arm/gnu/arm-dis.o
|
|
|
|
STATIC_OBJ+=${OBJ_ARM}
|
|
TARGET_ARM=asm_arm.so
|
|
|
|
ALL_TARGETS+=${TARGET_ARM}
|
|
|
|
${TARGET_ARM}: ${OBJ_ARM}
|
|
${CC} ${CFLAGS} -o asm_arm.so ${OBJ_ARM}
|
|
@#strip -s asm_x86.so
|