mirror of
https://github.com/radareorg/radare2.git
synced 2025-01-01 02:33:50 +00:00
0357ddf18e
- Remove r_core deps from rabin2 - Accessible via 'wp' * Fix build check of test program in r_db * Pass CFLAGS/LDFLAGS to sdb build * Add rax2 -k to not change base
19 lines
342 B
Makefile
19 lines
342 B
Makefile
BIN=rabin2
|
|
BINDEPS=r_bin r_cons r_lib r_flags r_util r_db
|
|
|
|
include ../binr.mk
|
|
|
|
ifeq ($(WITHNONPIC),1)
|
|
LDFLAGS+=${DL_LIBS} -lm
|
|
LDFLAGS+=../../libr/fs/p/grub/libgrubfs.a
|
|
LDFLAGS+=../../libr/db/sdb/src/libsdb.a
|
|
ifeq ($(HAVE_LIB_MAGIC),1)
|
|
LDFLAGS+=-lmagic
|
|
endif
|
|
endif
|
|
|
|
ifeq (${HAVE_LIB_SSL},1)
|
|
CFLAGS+=${SSL_CFLAGS}
|
|
LDFLAGS+=${SSL_LDFLAGS}
|
|
endif
|