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 (499B)


      1# SPDX-License-Identifier: GPL-2.0
      2#
      3# Makefile for BestComm & co
      4#
      5
      6bestcomm-core-objs	:= bestcomm.o sram.o
      7bestcomm-ata-objs	:= ata.o bcom_ata_task.o
      8bestcomm-fec-objs	:= fec.o bcom_fec_rx_task.o bcom_fec_tx_task.o
      9bestcomm-gen-bd-objs	:= gen_bd.o bcom_gen_bd_rx_task.o bcom_gen_bd_tx_task.o
     10
     11obj-$(CONFIG_PPC_BESTCOMM)		+= bestcomm-core.o
     12obj-$(CONFIG_PPC_BESTCOMM_ATA)		+= bestcomm-ata.o
     13obj-$(CONFIG_PPC_BESTCOMM_FEC)		+= bestcomm-fec.o
     14obj-$(CONFIG_PPC_BESTCOMM_GEN_BD)	+= bestcomm-gen-bd.o
     15