cachepc-linux

Fork of AMDESE/linux with modifications for CachePC side-channel attack
git clone https://git.sinitax.com/sinitax/cachepc-linux
Log | Files | Refs | README | LICENSE | sfeed.txt

Makefile (464B)


      1# SPDX-License-Identifier: GPL-2.0
      2obj-$(CONFIG_NET_9P) := 9pnet.o
      3obj-$(CONFIG_NET_9P_FD) += 9pnet_fd.o
      4obj-$(CONFIG_NET_9P_XEN) += 9pnet_xen.o
      5obj-$(CONFIG_NET_9P_VIRTIO) += 9pnet_virtio.o
      6obj-$(CONFIG_NET_9P_RDMA) += 9pnet_rdma.o
      7
      89pnet-objs := \
      9	mod.o \
     10	client.o \
     11	error.o \
     12	protocol.o \
     13	trans_common.o \
     14
     159pnet_fd-objs := \
     16	trans_fd.o \
     17
     189pnet_virtio-objs := \
     19	trans_virtio.o \
     20
     219pnet_xen-objs := \
     22	trans_xen.o \
     23
     249pnet_rdma-objs := \
     25	trans_rdma.o \