aboutsummaryrefslogtreecommitdiffstats
path: root/tools/perf/config/feature-checks/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'tools/perf/config/feature-checks/Makefile')
-rw-r--r--tools/perf/config/feature-checks/Makefile7
1 files changed, 6 insertions, 1 deletions
diff --git a/tools/perf/config/feature-checks/Makefile b/tools/perf/config/feature-checks/Makefile
index 4708ccadfc54..6a42ad24d64f 100644
--- a/tools/perf/config/feature-checks/Makefile
+++ b/tools/perf/config/feature-checks/Makefile
@@ -1,5 +1,7 @@
1 1
2FILES=test-hello 2FILES= \
3 test-hello \
4 test-libnuma
3 5
4CC := $(CC) -MD 6CC := $(CC) -MD
5 7
@@ -12,6 +14,9 @@ BUILD = $(CC) -o $(OUTPUT)$@ $@.c
12test-hello: 14test-hello:
13 $(BUILD) 15 $(BUILD)
14 16
17test-libnuma:
18 $(BUILD) -lnuma
19
15-include *.d */*.d 20-include *.d */*.d
16 21
17############################### 22###############################