diff options
author | John Hubbard <jhubbard@nvidia.com> | 2024-05-31 13:07:53 -0700 |
---|---|---|
committer | Shuah Khan <skhan@linuxfoundation.org> | 2024-05-31 14:37:04 -0600 |
commit | 32c75ad4a79259609ee19f749832bc2d99bbdd13 (patch) | |
tree | 55aa2f8f0082b819ae85360fd54c8e65923bf321 /tools | |
parent | 0f42bdf59b4e428485aa922bef871bfa6cc505e0 (diff) | |
download | linux-stable-32c75ad4a79259609ee19f749832bc2d99bbdd13.tar.gz linux-stable-32c75ad4a79259609ee19f749832bc2d99bbdd13.tar.bz2 linux-stable-32c75ad4a79259609ee19f749832bc2d99bbdd13.zip |
selftests/futex: don't redefine .PHONY targets (all, clean)
The .PHONY targets "all" and "clean" are both already defined in the
file that is included in the very next line:
../lib.mk.
Remove this duplicate code.
Reviewed-by: Davidlohr Bueso <dave@stgolabs.net>
Signed-off-by: John Hubbard <jhubbard@nvidia.com>
Signed-off-by: Shuah Khan <skhan@linuxfoundation.org>
Diffstat (limited to 'tools')
-rw-r--r-- | tools/testing/selftests/futex/Makefile | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/tools/testing/selftests/futex/Makefile b/tools/testing/selftests/futex/Makefile index 11e157d7533b..78ab2cd111f6 100644 --- a/tools/testing/selftests/futex/Makefile +++ b/tools/testing/selftests/futex/Makefile @@ -3,8 +3,6 @@ SUBDIRS := functional TEST_PROGS := run.sh -.PHONY: all clean - include ../lib.mk all: |