diff options
Diffstat (limited to 'tools')
-rw-r--r-- | tools/testing/selftests/powerpc/ptrace/Makefile | 13 |
1 files changed, 4 insertions, 9 deletions
diff --git a/tools/testing/selftests/powerpc/ptrace/Makefile b/tools/testing/selftests/powerpc/ptrace/Makefile index 9b35ca8e8f13..8d3f006c98cc 100644 --- a/tools/testing/selftests/powerpc/ptrace/Makefile +++ b/tools/testing/selftests/powerpc/ptrace/Makefile | |||
@@ -1,5 +1,5 @@ | |||
1 | # SPDX-License-Identifier: GPL-2.0 | 1 | # SPDX-License-Identifier: GPL-2.0 |
2 | TEST_PROGS := ptrace-gpr ptrace-tm-gpr ptrace-tm-spd-gpr \ | 2 | TEST_GEN_PROGS := ptrace-gpr ptrace-tm-gpr ptrace-tm-spd-gpr \ |
3 | ptrace-tar ptrace-tm-tar ptrace-tm-spd-tar ptrace-vsx ptrace-tm-vsx \ | 3 | ptrace-tar ptrace-tm-tar ptrace-tm-spd-tar ptrace-vsx ptrace-tm-vsx \ |
4 | ptrace-tm-spd-vsx ptrace-tm-spr ptrace-hwbreak ptrace-pkey core-pkey \ | 4 | ptrace-tm-spd-vsx ptrace-tm-spr ptrace-hwbreak ptrace-pkey core-pkey \ |
5 | perf-hwbreak ptrace-syscall | 5 | perf-hwbreak ptrace-syscall |
@@ -7,14 +7,9 @@ TEST_PROGS := ptrace-gpr ptrace-tm-gpr ptrace-tm-spd-gpr \ | |||
7 | top_srcdir = ../../../../.. | 7 | top_srcdir = ../../../../.. |
8 | include ../../lib.mk | 8 | include ../../lib.mk |
9 | 9 | ||
10 | all: $(TEST_PROGS) | ||
11 | |||
12 | CFLAGS += -m64 -I../../../../../usr/include -I../tm -mhtm -fno-pie | 10 | CFLAGS += -m64 -I../../../../../usr/include -I../tm -mhtm -fno-pie |
13 | 11 | ||
14 | ptrace-pkey core-pkey: child.h | 12 | $(OUTPUT)/ptrace-pkey $(OUTPUT)/core-pkey: child.h |
15 | ptrace-pkey core-pkey: LDLIBS += -pthread | 13 | $(OUTPUT)/ptrace-pkey $(OUTPUT)/core-pkey: LDLIBS += -pthread |
16 | |||
17 | $(TEST_PROGS): ../harness.c ../utils.c ../lib/reg.S ptrace.h | ||
18 | 14 | ||
19 | clean: | 15 | $(TEST_GEN_PROGS): ../harness.c ../utils.c ../lib/reg.S ptrace.h |
20 | rm -f $(TEST_PROGS) *.o | ||