mirror of
https://github.com/radareorg/radare2.git
synced 2024-12-11 15:04:23 +00:00
fdb25ffa03
* handle eval cuando escribes una y otra vez * add support for [bracket] comma-separated list for controversial - add api to push-back states * Added uleb128 api in r_util
38 lines
827 B
Makefile
38 lines
827 B
Makefile
include ../config.mk
|
|
|
|
NAME=r_util
|
|
OBJ=mem.o pool.o num.o str.o hex.o file.o alloca.o range.o log.o
|
|
OBJ+=prof.o cache.o sys.o buf.o w32-sys.o base64.o name.o calc.o
|
|
OBJ+=list.o flist.o ht.o ht64.o mixed.o btree.o chmod.o graph.o
|
|
OBJ+=uleb128.o
|
|
|
|
OBJ+=regex/regcomp.o regex/regerror.o regex/regexec.o
|
|
|
|
# DO NOT BUILD r_big api (not yet used and its buggy)
|
|
ifeq (1,0)
|
|
ifeq (${HAVE_LIB_GMP},1)
|
|
OBJ+=big-gmp.o
|
|
else
|
|
ifeq (${HAVE_LIB_SSL},1)
|
|
OBJ+=big-ssl.o
|
|
else
|
|
OBJ+=big.o
|
|
endif
|
|
endif
|
|
endif
|
|
|
|
LDFLAGS+=${BN_LIBS}
|
|
|
|
include ../rules.mk
|
|
|
|
ht64:
|
|
cat ht.c | sed -e s,hashtable,hashtable64,g -e s,HashTable,HashTable64,g -e s,ut32,ut64,g > ht64.c
|
|
#cat ht.c ht64.c | sed -e 's,) {,);,'
|
|
m:
|
|
gcc mixed.c -I ../include/ -DTEST=1 -lr_util -g
|
|
#valgrind ./a.out
|
|
|
|
h:
|
|
gcc ht.c -I ../include/ -DTEST=1 -lr_util -g
|
|
#valgrind ./a.out
|