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


      1# SPDX-License-Identifier: GPL-2.0
      2#
      3# Makefile for the Broadcom network device drivers.
      4#
      5
      6obj-$(CONFIG_B44) += b44.o
      7obj-$(CONFIG_BCM4908_ENET) += bcm4908_enet.o
      8obj-$(CONFIG_BCM63XX_ENET) += bcm63xx_enet.o
      9obj-$(CONFIG_BCMGENET) += genet/
     10obj-$(CONFIG_BNX2) += bnx2.o
     11obj-$(CONFIG_CNIC) += cnic.o
     12obj-$(CONFIG_BNX2X) += bnx2x/
     13obj-$(CONFIG_SB1250_MAC) += sb1250-mac.o
     14obj-$(CONFIG_TIGON3) += tg3.o
     15obj-$(CONFIG_BGMAC) += bgmac.o
     16obj-$(CONFIG_BGMAC_BCMA) += bgmac-bcma.o bgmac-bcma-mdio.o
     17obj-$(CONFIG_BGMAC_PLATFORM) += bgmac-platform.o
     18obj-$(CONFIG_SYSTEMPORT) += bcmsysport.o
     19obj-$(CONFIG_BNXT) += bnxt/
     20
     21# FIXME: temporarily silence -Warray-bounds on non W=1+ builds
     22ifndef KBUILD_EXTRA_WARN
     23CFLAGS_tg3.o += -Wno-array-bounds
     24endif