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


      1# SPDX-License-Identifier: GPL-2.0
      2CC = gcc
      3CFLAGS = -O2 -Wall -pthread
      4
      5all: trace-agent
      6
      7.c.o:
      8	$(CC) $(CFLAGS) -c $^ -o $@
      9
     10trace-agent: trace-agent.o trace-agent-ctl.o trace-agent-rw.o
     11	$(CC) $(CFLAGS) -o $@ $^
     12
     13clean:
     14	rm -f *.o trace-agent