mirror of
https://github.com/hardkernel/linux.git
synced 2026-06-07 03:15:31 +09:00
selftests/powerpc/cache_shape: Fix out-of-tree build
[ Upstream commit 69f8117f17 ]
Use TEST_GEN_PROGS and don't redefine all, this makes the out-of-tree
build work. We need to move the extra dependencies below the include
of lib.mk, because it adds the $(OUTPUT) prefix if it's defined.
We can also drop the clean rule, lib.mk does it for us.
Signed-off-by: Michael Ellerman <mpe@ellerman.id.au>
Signed-off-by: Sasha Levin <sashal@kernel.org>
This commit is contained in:
committed by
Greg Kroah-Hartman
parent
024cd793bb
commit
a125df22d1
@@ -1,12 +1,7 @@
|
||||
# SPDX-License-Identifier: GPL-2.0
|
||||
TEST_PROGS := cache_shape
|
||||
|
||||
all: $(TEST_PROGS)
|
||||
|
||||
$(TEST_PROGS): ../harness.c ../utils.c
|
||||
TEST_GEN_PROGS := cache_shape
|
||||
|
||||
top_srcdir = ../../../../..
|
||||
include ../../lib.mk
|
||||
|
||||
clean:
|
||||
rm -f $(TEST_PROGS) *.o
|
||||
$(TEST_GEN_PROGS): ../harness.c ../utils.c
|
||||
|
||||
Reference in New Issue
Block a user