Some of our Makefiles don't do the right thing when building the selftests with O=, fix them up. Signed-off-by: Michael Ellerman <mpe@ellerman.id.au>
10 lines
184 B
Makefile
10 lines
184 B
Makefile
# SPDX-License-Identifier: GPL-2.0
|
|
TEST_PROGS := cache_shape
|
|
|
|
$(TEST_PROGS): ../harness.c ../utils.c
|
|
|
|
top_srcdir = ../../../../..
|
|
include ../../lib.mk
|
|
|
|
clean:
|
|
rm -f $(TEST_PROGS) *.o
|