mirror of
https://github.com/radareorg/radare2.git
synced 2024-12-04 03:11:28 +00:00
5f74c8068d
- Plugins needs to be synced * Added x86nasm assembler backend to handle x86-64 - Not yet working. Pretty buggy :) * Fix support of building static plugins for r_bp - Statically link r_bp_x86 by default * Implement ugly r_sys_cmd_str() command in r_util
26 lines
473 B
Makefile
26 lines
473 B
Makefile
CFLAGS_APPEND=
|
|
GNULINUX=1
|
|
BSD=0
|
|
SOLARIS=0
|
|
WINDOWS=0
|
|
OSX=0
|
|
USE_RIO=1
|
|
|
|
# static plugins
|
|
STATIC_DEBUG=0
|
|
RUNTIME_DEBUG=1
|
|
STATIC_ASM_PLUGINS=p/x86olly.mk p/mips.mk p/java.mk
|
|
STATIC_BIN_PLUGINS=p/elf.mk
|
|
STATIC_BP_PLUGINS=p/x86.mk
|
|
STATIC_BININFO_PLUGINS=p/addr2line.mk
|
|
|
|
ifneq (${BINDEPS},)
|
|
include ../../../config-user.mk
|
|
include ../../../config.mk
|
|
include ../../../mk/${COMPILER}.mk
|
|
else
|
|
include ../../config-user.mk
|
|
include ../../config.mk
|
|
include ../../mk/${COMPILER}.mk
|
|
endif
|