Blame view

net/9p/Makefile 416 Bytes
81f7e3824   Eric Lee   Initial Release, ...
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
  # 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 \
  	util.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 \