a80d923e13
This patch abstracts out the interfaces to underlying transports so that new transports can be added as modules. This should also allow kernel configuration of transports without ifdef-hell. Signed-off-by: Eric Van Hensbergen <ericvh@gmail.com>
17 lines
231 B
Makefile
17 lines
231 B
Makefile
obj-$(CONFIG_NET_9P) := 9pnet.o
|
|
obj-$(CONFIG_NET_9P_FD) += 9pnet_fd.o
|
|
|
|
9pnet-objs := \
|
|
mod.o \
|
|
mux.o \
|
|
client.o \
|
|
conv.o \
|
|
error.o \
|
|
fcprint.o \
|
|
util.o \
|
|
|
|
9pnet-$(CONFIG_SYSCTL) += sysctl.o
|
|
|
|
9pnet_fd-objs := \
|
|
trans_fd.o \
|