repo: https://github.com/T-head-Semi/linux commit: b1313fe517ca3703119dcc99ef3bbf75ab42bcfb Change-Id: I6cbb35294024ea3a66140e311f4bb705fd7fd626
23 lines
406 B
Makefile
23 lines
406 B
Makefile
# SPDX-License-Identifier: GPL-2.0
|
|
obj-$(CONFIG_NET_9P) := 9pnet.o
|
|
obj-$(CONFIG_NET_9P_XEN) += 9pnet_xen.o
|
|
obj-$(CONFIG_NET_9P_VIRTIO) += 9pnet_virtio.o
|
|
obj-$(CONFIG_NET_9P_RDMA) += 9pnet_rdma.o
|
|
|
|
9pnet-objs := \
|
|
mod.o \
|
|
client.o \
|
|
error.o \
|
|
protocol.o \
|
|
trans_fd.o \
|
|
trans_common.o \
|
|
|
|
9pnet_virtio-objs := \
|
|
trans_virtio.o \
|
|
|
|
9pnet_xen-objs := \
|
|
trans_xen.o \
|
|
|
|
9pnet_rdma-objs := \
|
|
trans_rdma.o \
|