mirror of
https://github.com/radareorg/radare2.git
synced 2025-02-13 10:24:45 +00:00
![pancake](/assets/img/avatar_default.png)
- Managing breakpoints for the core - Initial work on the support for breakpoints for the r_debug plugins * Adding some dummy work for context support in r_anal * Make asm_set_bits check per-plugin supported bit sizes - Now asm plugins have 'arch' and 'bits' attributes - Used to setup default callbacks for undefined 'assemble' callback - Also used to avoid setting asm.bits eval variable to invalid values - We need a way to display all this data * Added DEFAULT_ARCH in config.h to setup default arch to asm and anal * Added r_config_set_i_cb() - Make r_config_set restore value when callback is called and fails - asm.bits now has a config callback * Added _LAST in some r_anal enums
10 lines
338 B
Makefile
10 lines
338 B
Makefile
NAME=r_core
|
|
DEPS=r_config r_cons r_line r_io r_cmd r_util r_print r_flags r_asm r_lib r_macro r_debug r_hash r_bin r_lang r_io r_asm r_anal r_parse r_config r_macro r_print r_bininfo r_bp
|
|
|
|
OBJ=core.o cmd.o file.o config.o visual.o io.o yank.o libs.o
|
|
|
|
CFLAGS+=-DLIBDIR=\"${PREFIX}/lib\"
|
|
CFLAGS+=-DPREFIX=\"${PREFIX}\"
|
|
|
|
include ../rules.mk
|