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


      1# SPDX-License-Identifier: ISC
      2obj-$(CONFIG_ATH10K) += ath10k_core.o
      3ath10k_core-y += mac.o \
      4		 debug.o \
      5		 core.o \
      6		 htc.o \
      7		 htt.o \
      8		 htt_rx.o \
      9		 htt_tx.o \
     10		 txrx.o \
     11		 wmi.o \
     12		 wmi-tlv.o \
     13		 bmi.o \
     14		 hw.o \
     15		 p2p.o \
     16		 swap.o
     17
     18ath10k_core-$(CONFIG_ATH10K_SPECTRAL) += spectral.o
     19ath10k_core-$(CONFIG_NL80211_TESTMODE) += testmode.o
     20ath10k_core-$(CONFIG_ATH10K_TRACING) += trace.o
     21ath10k_core-$(CONFIG_THERMAL) += thermal.o
     22ath10k_core-$(CONFIG_MAC80211_DEBUGFS) += debugfs_sta.o
     23ath10k_core-$(CONFIG_PM) += wow.o
     24ath10k_core-$(CONFIG_DEV_COREDUMP) += coredump.o
     25ath10k_core-$(CONFIG_ATH10K_CE) += ce.o
     26
     27obj-$(CONFIG_ATH10K_PCI) += ath10k_pci.o
     28ath10k_pci-y += pci.o
     29
     30ath10k_pci-$(CONFIG_ATH10K_AHB) += ahb.o
     31
     32obj-$(CONFIG_ATH10K_SDIO) += ath10k_sdio.o
     33ath10k_sdio-y += sdio.o
     34
     35obj-$(CONFIG_ATH10K_USB) += ath10k_usb.o
     36ath10k_usb-y += usb.o
     37
     38obj-$(CONFIG_ATH10K_SNOC) += ath10k_snoc.o
     39ath10k_snoc-y += qmi.o \
     40		 qmi_wlfw_v01.o \
     41		 snoc.o
     42
     43# for tracing framework to find trace.h
     44CFLAGS_trace.o := -I$(src)