mirror of
https://github.com/radareorg/radare2.git
synced 2025-01-09 15:00:42 +00:00
6102da137d
- Split each implementation in different files - Add --without-openssl flag in configure
19 lines
352 B
Makefile
19 lines
352 B
Makefile
include ../config.mk
|
|
|
|
NAME=r_util
|
|
OBJ=mem.o pool.o num.o str.o re.o hex.o file.o alloca.o range.o log.o
|
|
OBJ+=float.o prof.o cache.o sys.o btree.o buf.o list.o flist.o w32-sys.o
|
|
ifeq (${HAVE_LIB_GMP},1)
|
|
OBJ+=big-gmp.o
|
|
else
|
|
ifeq (${HAVE_LIB_OPENSSL},1)
|
|
OBJ+=big-ssl.o
|
|
else
|
|
OBJ+=big.o
|
|
endif
|
|
endif
|
|
|
|
LDFLAGS+=${BN_LIBS}
|
|
|
|
include ../rules.mk
|