mirror of
https://github.com/radareorg/radare2.git
synced 2024-12-02 18:27:18 +00:00
23 lines
454 B
Makefile
23 lines
454 B
Makefile
include ../config.mk
|
|
|
|
NAME=r_io
|
|
DEPS=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
|
|
|
|
OBJS+=vio.o
|
|
|
|
CFLAGS+=-Wall -DCORELIB
|
|
|
|
include ../socket/deps.mk
|
|
include $(SHLR)/zip/deps.mk
|
|
include $(SHLR)/gdb/deps.mk
|
|
|
|
.PHONY: pre
|
|
pre: libr_io.${EXT_SO} libr_io.${EXT_AR}
|
|
@${MAKE} -C p
|
|
|
|
include ${STATIC_IO_PLUGINS}
|
|
include $(LTOP)/rules.mk
|