mirror of
https://github.com/radareorg/radare2.git
synced 2025-01-20 20:55:32 +00:00
60a951e9b1
Implement io.buffer for fast IO (work in progress) Rewrite util/cache.c and use it form io/buffer.c Refactor util/ht.c and util/ht64.c to reuse code Various minor fixes in RIO api cache.c must be rewritten into r_buf for
19 lines
395 B
Makefile
19 lines
395 B
Makefile
include ../config.mk
|
|
|
|
NAME=r_io
|
|
DEPS=r_lib r_util r_socket r_cons
|
|
STATIC_OBJS=$(subst ..,p/..,$(subst io_,p/io_,$(STATIC_OBJ)))
|
|
OBJS=${STATIC_OBJS}
|
|
OBJS+=io.o plugin.o map.o section.o desc.o cache.o undo.o buffer.o
|
|
|
|
CFLAGS+=-Wall -DCORELIB
|
|
|
|
include ../socket/deps.mk
|
|
|
|
.PHONY: pre
|
|
pre: libr_io.${EXT_SO} libr_io.${EXT_AR}
|
|
@${MAKE} -C p
|
|
|
|
include ${STATIC_IO_PLUGINS}
|
|
include $(TOP)/libr/rules.mk
|