radare2/libr/core/Makefile
pancake 23936cfbe5 * Add an REgg instance into the RCore class
- Make r2 -P use the r_egg api instead of the oldie rarc2
2011-10-04 10:10:00 +02:00

19 lines
517 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 r_egg
DEPS+=r_reg r_search r_syscall r_sign r_diff r_socket r_fs r_magic
OBJ=core.o cmd.o file.o config.o visual.o io.o yank.o libs.o
OBJ+=anal.o project.o gdiff.o asm.o rtr.o vmenus.o disasm.o patch.o
CFLAGS+=-DLIBDIR=\"${LIBDIR}\"
CFLAGS+=-DPREFIX=\"${PREFIX}\"
LDFLAGS+=${DL_LIBS}
ifeq ($(shell uname),OpenBSD)
LDFLAGS+=-lpthread
endif
include ../rules.mk