mirror of
https://github.com/radareorg/radare2.git
synced 2025-01-09 15:00:42 +00:00
ca432e3f04
- Allows to mount filesystems in virtual IO - Only dummy ext2 plugin ATM - Added 'm' command in r2 to manage mountpoints, list directories and retrieve files - Bonus: hacky version of grub/fs code to use it as a standalone API. Plugins will use it - API is quite simple and limited, read-only access
14 lines
425 B
Makefile
14 lines
425 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
|
|
DEPS+=r_debug r_hash r_bin r_lang r_io r_anal r_parse r_print r_bp
|
|
DEPS+=r_reg r_search r_syscall r_sign r_diff r_vm r_socket r_fs
|
|
|
|
OBJ=core.o cmd.o file.o config.o visual.o io.o yank.o libs.o anal.o project.o gdiff.o asm.o rtr.o
|
|
|
|
CFLAGS+=-DLIBDIR=\"${PREFIX}/lib\"
|
|
CFLAGS+=-DPREFIX=\"${PREFIX}\"
|
|
LDFLAGS+=${DL_LIBS}
|
|
|
|
include ../rules.mk
|