17 lines
379 B
Makefile
17 lines
379 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} io.o plugin.o map.o section.o desc.o cache.o undo.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
|