/
usr
/
src
/
linux-headers-5.15.0-91-generic
/
tools
/
testing
/
selftests
/
resctrl
/
up file
home
CC = $(CROSS_COMPILE)gcc CFLAGS = -g -Wall -O2 -D_FORTIFY_SOURCE=2 SRCS=$(wildcard *.c) OBJS=$(SRCS:.c=.o) all: resctrl_tests $(OBJS): $(SRCS) $(CC) $(CFLAGS) -c $(SRCS) resctrl_tests: $(OBJS) $(CC) $(CFLAGS) -o $@ $^ .PHONY: clean clean: $(RM) $(OBJS) resctrl_tests