mirror of
https://github.com/radareorg/radare2.git
synced 2024-12-05 03:56:46 +00:00
48 lines
1.1 KiB
Makefile
48 lines
1.1 KiB
Makefile
include ../config.mk
|
|
|
|
NAME=r_util
|
|
DEPS=
|
|
|
|
OBJS=mem.o pool.o num.o str.o hex.o file.o range.o
|
|
OBJS+=prof.o cache.o sys.o buf.o w32-sys.o base64.o base85.o
|
|
OBJS+=list.o flist.o ht.o ht64.o mixed.o btree.o chmod.o graph.o
|
|
OBJS+=regex/regcomp.o regex/regerror.o regex/regexec.o uleb128.o
|
|
OBJS+=sandbox.o calc.o thread.o thread_lock.o thread_msg.o
|
|
OBJS+=strpool.o bitmap.o strht.o p_date.o p_format.o print.o
|
|
OBJS+=p_seven.o slist.o randomart.o log.o zip.o debruijn.o
|
|
OBJS+=utf8.o strbuf.o lib.o name.o spaces.o
|
|
OBJS+=diff.o bdiff.o stack.o queue.o tree.o des.o
|
|
|
|
# DO NOT BUILD r_big api (not yet used and its buggy)
|
|
ifeq (1,0)
|
|
ifeq (${HAVE_LIB_GMP},1)
|
|
OBJS+=big-gmp.o
|
|
else
|
|
ifeq (${HAVE_LIB_SSL},1)
|
|
OBJS+=big-ssl.o
|
|
else
|
|
OBJS+=big.o
|
|
endif
|
|
endif
|
|
endif
|
|
|
|
include $(SHLR)/zip/deps.mk
|
|
|
|
LDFLAGS+=${BN_LIBS}
|
|
LDFLAGS+=${TH_LIBS}
|
|
LDFLAGS+=${DL_LIBS}
|
|
|
|
# NetBSD 7.0 ships with backtrace(3) in -lexecinfo
|
|
ifeq (${BUILD_OS},netbsd)
|
|
ifneq ($(shell expr "`uname -r`" : '[0-6]\.'), 2)
|
|
LDFLAGS+=-lexecinfo
|
|
endif
|
|
endif
|
|
|
|
include ../rules.mk
|
|
|
|
sync-regex regex-sync:
|
|
-rm -rf src/
|
|
cvs -qd anoncvs@anoncvs.ca.openbsd.org:/cvs get -P src/lib/libc/regex
|
|
cp src/lib/libc/regex/* regex
|