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


      1# SPDX-License-Identifier: GPL-2.0+
      2#
      3# Makefile for the HISILICON network device drivers.
      4#
      5
      6ccflags-y += -I$(srctree)/$(src)
      7ccflags-y += -I$(srctree)/drivers/net/ethernet/hisilicon/hns3/hns3pf
      8ccflags-y += -I$(srctree)/drivers/net/ethernet/hisilicon/hns3/hns3vf
      9ccflags-y += -I$(srctree)/drivers/net/ethernet/hisilicon/hns3/hns3_common
     10
     11obj-$(CONFIG_HNS3) += hnae3.o
     12
     13obj-$(CONFIG_HNS3_ENET) += hns3.o
     14hns3-objs = hns3_enet.o hns3_ethtool.o hns3_debugfs.o
     15
     16hns3-$(CONFIG_HNS3_DCB) += hns3_dcbnl.o
     17
     18obj-$(CONFIG_HNS3_HCLGEVF) += hclgevf.o
     19
     20hclgevf-objs = hns3vf/hclgevf_main.o hns3vf/hclgevf_mbx.o  hns3vf/hclgevf_devlink.o \
     21		hns3_common/hclge_comm_cmd.o hns3_common/hclge_comm_rss.o hns3_common/hclge_comm_tqp_stats.o
     22
     23obj-$(CONFIG_HNS3_HCLGE) += hclge.o
     24hclge-objs = hns3pf/hclge_main.o hns3pf/hclge_mdio.o hns3pf/hclge_tm.o \
     25		hns3pf/hclge_mbx.o hns3pf/hclge_err.o  hns3pf/hclge_debugfs.o hns3pf/hclge_ptp.o hns3pf/hclge_devlink.o \
     26		hns3_common/hclge_comm_cmd.o hns3_common/hclge_comm_rss.o hns3_common/hclge_comm_tqp_stats.o
     27
     28
     29hclge-$(CONFIG_HNS3_DCB) += hns3pf/hclge_dcb.o