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


      1# SPDX-License-Identifier: GPL-2.0
      2cw1200_core-y := \
      3		fwio.o \
      4		txrx.o \
      5		main.o \
      6		queue.o \
      7		hwio.o \
      8		bh.o \
      9		wsm.o \
     10		sta.o \
     11		scan.o \
     12		debug.o
     13cw1200_core-$(CONFIG_PM)	+= pm.o
     14
     15# CFLAGS_sta.o += -DDEBUG
     16
     17cw1200_wlan_sdio-y := cw1200_sdio.o
     18cw1200_wlan_spi-y := cw1200_spi.o
     19
     20obj-$(CONFIG_CW1200) += cw1200_core.o
     21obj-$(CONFIG_CW1200_WLAN_SDIO) += cw1200_wlan_sdio.o
     22obj-$(CONFIG_CW1200_WLAN_SPI) += cw1200_wlan_spi.o