Re: [PATCH net] selftests: fix timestamping Makefile

2019-02-14 Thread David Miller
From: Deepa Dinamani Date: Wed, 13 Feb 2019 09:09:13 -0800 > 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

Re: [PATCH net] selftests: fix timestamping Makefile

2019-02-13 Thread shuah
On 2/13/19 10:09 AM, Deepa Dinamani wrote: 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: D

[PATCH net] selftests: fix timestamping Makefile

2019-02-13 Thread Deepa Dinamani
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 --- * Changes since v1: as pe