mirror of
https://github.com/radareorg/radare2.git
synced 2024-12-13 16:18:33 +00:00
fc9301b14b
Initial implementation of anal hints (ah?) Use anal hints in core/disasm. Needs more work New data structure StrHT (string hashtable) Simplify core/libs.c with cpp macros Added r_cons_color() wip function for ansi256 consoles RPrint no longer depends on r_cons Sort 'a?' help commands Add support for named print formats with pf$ command Add support for 64 bit string pointers in 'pf' ('S') Add r_print_mute and r_print_format_length functions Bump r2 nodejs bindings version number Merge r_print into r_util
27 lines
852 B
Makefile
27 lines
852 B
Makefile
include ../config.mk
|
|
|
|
NAME=r_core
|
|
|
|
DEPS=r_config r_cons r_io r_cmd r_util r_flags r_asm r_lib r_db
|
|
DEPS+=r_debug r_hash r_bin r_lang r_io r_anal r_parse r_bp r_egg
|
|
DEPS+=r_reg r_search r_syscall r_sign r_diff r_socket r_fs r_magic
|
|
|
|
OBJS=core.o cmd.o file.o config.o visual.o io.o yank.o libs.o hack.o vasm.o
|
|
OBJS+=anal.o project.o gdiff.o asm.o rtr.o vmenus.o disasm.o patch.o bin.o log.o
|
|
|
|
CFLAGS+=-DLIBDIR=\"${LIBDIR}\"
|
|
CFLAGS+=-DPREFIX=\"${PREFIX}\"
|
|
CFLAGS+=-DWWWROOT=\"${WWWROOT}\"
|
|
LDFLAGS+=${DL_LIBS}
|
|
|
|
ifeq ($(shell uname),OpenBSD)
|
|
LDFLAGS+=-lpthread
|
|
endif
|
|
|
|
include $(TOP)/libr/rules.mk
|
|
|
|
cmd.o: cmd_hash.c cmd_debug.c cmd_zign.c cmd_section.c cmd_project.c \
|
|
cmd_open.c cmd_meta.c cmd_macro.c cmd_magic.c cmd_mount.c \
|
|
cmd_seek.c cmd_print.c cmd_help.c cmd_anal.c cmd_search.c \
|
|
cmd_cmp.c cmd_write.c cmd_egg.c cmd_info.c cmd_type.c cmd_flag.c
|