radare2/libr/io/Makefile
pancake 60a951e9b1 New io.buffer cache system and refactorized RHashTable
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
2013-01-12 04:29:45 +01:00

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