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


      1# SPDX-License-Identifier: GPL-2.0
      2uname_M := $(shell uname -m 2>/dev/null || echo not)
      3ARCH ?= $(shell echo $(uname_M) | sed -e s/i.86/i386/)
      4ifeq ($(ARCH),i386)
      5        ARCH := x86
      6	CFLAGS := -DCONFIG_X86_32 -D__i386__
      7endif
      8ifeq ($(ARCH),x86_64)
      9	ARCH := x86
     10	CFLAGS := -DCONFIG_X86_64 -D__x86_64__
     11endif
     12
     13CFLAGS += -I../../../../usr/include/
     14
     15TEST_GEN_PROGS := msgque
     16
     17include ../lib.mk
     18