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


      1include ../../../../../build/Build.include
      2
      3UNAME_M := $(shell uname -m)
      4
      5ifneq ($(UNAME_M),s390x)
      6nothing:
      7.PHONY: all clean run_tests install
      8.SILENT:
      9else
     10
     11TEST_GEN_PROGS := test_uvdevice
     12
     13top_srcdir ?= ../../../../../..
     14KSFT_KHDR_INSTALL := 1
     15khdr_dir = $(top_srcdir)/usr/include
     16LINUX_TOOL_ARCH_INCLUDE = $(top_srcdir)/tools/arch/$(ARCH)/include
     17
     18CFLAGS += -Wall -Werror -static -I$(khdr_dir) -I$(LINUX_TOOL_ARCH_INCLUDE)
     19
     20include ../../../lib.mk
     21
     22endif