summaryrefslogtreecommitdiff
path: root/tools/testing/selftests/resctrl/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'tools/testing/selftests/resctrl/Makefile')
-rw-r--r--tools/testing/selftests/resctrl/Makefile7
1 files changed, 6 insertions, 1 deletions
diff --git a/tools/testing/selftests/resctrl/Makefile b/tools/testing/selftests/resctrl/Makefile
index 76bbd6d3e4a8..d585cc1948cc 100644
--- a/tools/testing/selftests/resctrl/Makefile
+++ b/tools/testing/selftests/resctrl/Makefile
@@ -3,10 +3,15 @@ CFLAGS = -g -Wall
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)
+ $(RM) $(OBJS) resctrl_tests