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


      1# SPDX-License-Identifier: GPL-2.0
      2all:
      3
      4include ../lib.mk
      5
      6.PHONY: all clean
      7
      8BINARIES := uevent_filtering
      9CFLAGS += -Wl,-no-as-needed -Wall
     10
     11uevent_filtering: uevent_filtering.c ../kselftest.h ../kselftest_harness.h
     12	$(CC) $(CFLAGS) $< -o $@
     13
     14TEST_PROGS += $(BINARIES)
     15EXTRA_CLEAN := $(BINARIES)
     16
     17all: $(BINARIES)