mirror of
https://github.com/radareorg/radare2.git
synced 2024-12-11 23:16:05 +00:00
75 lines
1.8 KiB
Makefile
75 lines
1.8 KiB
Makefile
include ../config.mk
|
|
|
|
NAME=r_util
|
|
CFLAGS+=-DR2_PLUGIN_INCORE -I$(TOP)/shlr
|
|
PCLIBS=@LIBZIP@ @DL_LIBS@
|
|
|
|
ifneq ($(OSTYPE),darwin)
|
|
ifneq ($(OSTYPE),haiku)
|
|
LDFLAGS+=-lm
|
|
LINK=-lm
|
|
endif
|
|
endif
|
|
|
|
OBJS=binheap.o mem.o unum.o str.o hex.o file.o range.o tinyrange.o
|
|
OBJS+=prof.o cache.o sys.o buf.o w32-sys.o ubase64.o base85.o base91.o
|
|
OBJS+=list.o flist.o chmod.o graph.o event.o alloc.o
|
|
OBJS+=regex/regcomp.o regex/regerror.o regex/regexec.o uleb128.o
|
|
OBJS+=sandbox.o calc.o thread.o thread_sem.o thread_lock.o thread_cond.o
|
|
OBJS+=strpool.o bitmap.o date.o format.o pie.o print.o ctype.o
|
|
OBJS+=seven.o randomart.o zip.o debruijn.o log.o getopt.o
|
|
OBJS+=utf8.o utf16.o utf32.o strbuf.o lib.o name.o spaces.o signal.o syscmd.o
|
|
OBJS+=diff.o bdiff.o stack.o queue.o tree.o idpool.o assert.o
|
|
OBJS+=punycode.o pkcs7.o x509.o asn1.o astr.o json_indent.o skiplist.o pj.o
|
|
OBJS+=rbtree.o qrcode.o vector.o str_trim.o ascii_table.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 deps.mk
|
|
|
|
LDFLAGS+=${BN_LIBS}
|
|
LDFLAGS+=${TH_LIBS}
|
|
LDFLAGS+=${DL_LIBS}
|
|
LDFLAGS+=-lm
|
|
|
|
# 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
|
|
|
|
# FreeBSD 10.0 ships with backtrace(3) in -lexecinfo
|
|
ifeq (${BUILD_OS},freebsd)
|
|
ifneq ($(shell expr "`uname -r`" : '[0-9]\.'), 2)
|
|
LDFLAGS+=-lexecinfo
|
|
endif
|
|
endif
|
|
|
|
ifeq (${BUILD_OS},dragonfly)
|
|
LDFLAGS+=-lexecinfo
|
|
endif
|
|
|
|
EXTRA_PRE+=sdb_version
|
|
EXTRA_PRE+=spp_config
|
|
|
|
include ../rules.mk
|
|
include sdb.mk
|
|
include spp.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
|