diff options
Diffstat (limited to 'tools/perf/config/feature-checks/Makefile')
-rw-r--r-- | tools/perf/config/feature-checks/Makefile | 7 |
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 | ||
2 | FILES=test-hello | 2 | FILES= \ |
3 | test-hello \ | ||
4 | test-libnuma | ||
3 | 5 | ||
4 | CC := $(CC) -MD | 6 | CC := $(CC) -MD |
5 | 7 | ||
@@ -12,6 +14,9 @@ BUILD = $(CC) -o $(OUTPUT)$@ $@.c | |||
12 | test-hello: | 14 | test-hello: |
13 | $(BUILD) | 15 | $(BUILD) |
14 | 16 | ||
17 | test-libnuma: | ||
18 | $(BUILD) -lnuma | ||
19 | |||
15 | -include *.d */*.d | 20 | -include *.d */*.d |
16 | 21 | ||
17 | ############################### | 22 | ############################### |