mirror of
https://github.com/torvalds/linux.git
synced 2024-12-13 22:53:20 +00:00
39c1331962
The clean target in the makefile conflicts with the generic kselftests lib.mk, and fails to properly remove the compiled test programs. Remove the redundant rule, the TEST_GEN_FILES will be already removed by the CLEAN macro in lib.mk. Signed-off-by: Deepa Dinamani <deepa.kernel@gmail.com> Acked-by: Shuah Khan <shuah@kernel.org> Signed-off-by: David S. Miller <davem@davemloft.net>
12 lines
268 B
Makefile
12 lines
268 B
Makefile
# SPDX-License-Identifier: GPL-2.0
|
|
CFLAGS += -I../../../../../usr/include
|
|
|
|
TEST_GEN_FILES := hwtstamp_config rxtimestamp timestamping txtimestamp
|
|
TEST_PROGS := txtimestamp.sh
|
|
|
|
all: $(TEST_PROGS)
|
|
|
|
top_srcdir = ../../../../..
|
|
KSFT_KHDR_INSTALL := 1
|
|
include ../../lib.mk
|