]> git.proxmox.com Git - mirror_ubuntu-bionic-kernel.git/blob - net/9p/Makefile
License cleanup: add SPDX GPL-2.0 license identifier to files with no license
[mirror_ubuntu-bionic-kernel.git] / net / 9p / Makefile
1 # SPDX-License-Identifier: GPL-2.0
2 obj-$(CONFIG_NET_9P) := 9pnet.o
3 obj-$(CONFIG_NET_9P_XEN) += 9pnet_xen.o
4 obj-$(CONFIG_NET_9P_VIRTIO) += 9pnet_virtio.o
5 obj-$(CONFIG_NET_9P_RDMA) += 9pnet_rdma.o
6
7 9pnet-objs := \
8 mod.o \
9 client.o \
10 error.o \
11 util.o \
12 protocol.o \
13 trans_fd.o \
14 trans_common.o \
15
16 9pnet_virtio-objs := \
17 trans_virtio.o \
18
19 9pnet_xen-objs := \
20 trans_xen.o \
21
22 9pnet_rdma-objs := \
23 trans_rdma.o \