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


      1# SPDX-License-Identifier: GPL-2.0
      2obj-m	:=
      3
      4KDIR	:= /lib/modules/$(shell uname -r)/build
      5KMISC   := /lib/modules/$(shell uname -r)/cpufrequtils/
      6
      7ifeq ("$(CONFIG_X86_TSC)", "y")
      8  obj-m	 += cpufreq-test_tsc.o
      9endif
     10
     11default:
     12	$(MAKE) -C $(KDIR) M=$(CURDIR)
     13
     14clean:
     15	- rm -rf *.o *.ko .*.cmd .*.mod.* *.mod.c
     16	- rm -rf Module.symvers modules.order
     17
     18install: default
     19	install -d $(KMISC)
     20	install -m 644 -c *.ko $(KMISC)
     21	/sbin/depmod -a
     22
     23all:	default