diff options
author | Ammar Faizi <ammarfaizi2@gnuweeb.org> | 2022-04-23 03:35:39 +0700 |
---|---|---|
committer | Jens Axboe <axboe@kernel.dk> | 2022-04-22 15:15:23 -0600 |
commit | 0664b331b30842d1576748604bfa4193f470cd67 (patch) | |
tree | d809253c3bc0fa2d52a06bad8404cba12ddfa473 | |
parent | c36cd51eef30c81a0ce3398057672f3c03498b86 (diff) | |
download | liburing-0664b331b30842d1576748604bfa4193f470cd67.tar.gz liburing-0664b331b30842d1576748604bfa4193f470cd67.tar.bz2 |
test/Makefile: Remove `.PHONY` variable
What we want is a .PHONY build target that depends on runtests-parallel,
not a .PHONY variable. This variable doesn't do anything. Remove it.
Signed-off-by: Ammar Faizi <ammarfaizi2@gnuweeb.org>
Signed-off-by: Jens Axboe <axboe@kernel.dk>
-rw-r--r-- | test/Makefile | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/test/Makefile b/test/Makefile index fe35ff9..444c749 100644 --- a/test/Makefile +++ b/test/Makefile @@ -237,4 +237,3 @@ runtests-parallel: $(run_test_targets) @echo "All tests passed" .PHONY: all install clean runtests runtests-loop runtests-parallel -.PHONY += $(run_test_targets) |