8a0dc95fd9
This merges the mux.c (including the connection interface) with trans_fd in preparation for transport API changes. Ultimately, trans_fd will need to be rewritten to clean it up and simplify the implementation, but this reorganization is viewed as the first step. Signed-off-by: Eric Van Hensbergen <ericvh@gmail.com>
18 lines
274 B
Makefile
18 lines
274 B
Makefile
obj-$(CONFIG_NET_9P) := 9pnet.o
|
|
obj-$(CONFIG_NET_9P_FD) += 9pnet_fd.o
|
|
obj-$(CONFIG_NET_9P_VIRTIO) += 9pnet_virtio.o
|
|
|
|
9pnet-objs := \
|
|
mod.o \
|
|
client.o \
|
|
conv.o \
|
|
error.o \
|
|
fcprint.o \
|
|
util.o \
|
|
|
|
9pnet_fd-objs := \
|
|
trans_fd.o \
|
|
|
|
9pnet_virtio-objs := \
|
|
trans_virtio.o \
|