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


      1# SPDX-License-Identifier: GPL-2.0
      2# Makefile for debugging tools
      3
      4PREFIX ?= /usr
      5BINDIR ?= bin
      6INSTALL ?= install
      7
      8TARGET = kernel-chktaint
      9
     10all: $(TARGET)
     11
     12clean:
     13
     14install: kernel-chktaint
     15	$(INSTALL) -D -m 755 $(TARGET) $(DESTDIR)$(PREFIX)/$(BINDIR)/$(TARGET)
     16