Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1948711AbdDYPDg (ORCPT ); Tue, 25 Apr 2017 11:03:36 -0400 Received: from ec2-52-27-115-49.us-west-2.compute.amazonaws.com ([52.27.115.49]:52421 "EHLO osg.samsung.com" rhost-flags-OK-OK-OK-FAIL) by vger.kernel.org with ESMTP id S1948614AbdDYPD1 (ORCPT ); Tue, 25 Apr 2017 11:03:27 -0400 Subject: Re: [PATCH 7/8] selftests: sync: override clean in lib.mk to fix warnings To: Michael Ellerman , shuah@kernel.org, bamvor.zhangjian@linaro.org, benh@kernel.crashing.org, paulus@samba.org, dvhart@infradead.org References: <87r30lyp75.fsf@concordia.ellerman.id.au> Cc: viro@zeniv.linux.org.uk, emilio.lopez@collabora.co.uk, mingo@kernel.org, luto@kernel.org, dave.hansen@linux.intel.com, dsafonov@virtuozzo.com, rkrcmar@redhat.com, linux-kselftest@vger.kernel.org, linux-kernel@vger.kernel.org, linux-gpio@vger.kernel.org, linuxppc-dev@lists.ozlabs.org, shuah Khan From: Shuah Khan Message-ID: <476527ab-aedc-c0b4-debb-2843ce1345d6@osg.samsung.com> Date: Tue, 25 Apr 2017 09:03:24 -0600 User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:45.0) Gecko/20100101 Thunderbird/45.8.0 MIME-Version: 1.0 In-Reply-To: <87r30lyp75.fsf@concordia.ellerman.id.au> Content-Type: text/plain; charset=windows-1252 Content-Transfer-Encoding: 7bit Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 976 Lines: 33 On 04/21/2017 11:41 PM, Michael Ellerman wrote: > Shuah Khan writes: > >> Add override for lib.mk clean to fix the following warnings from clean >> target run. >> >> Makefile:24: warning: overriding recipe for target 'clean' >> ../lib.mk:55: warning: ignoring old recipe for target 'clean' >> >> Signed-off-by: Shuah Khan >> --- >> tools/testing/selftests/sync/Makefile | 3 ++- >> 1 file changed, 2 insertions(+), 1 deletion(-) >> >> diff --git a/tools/testing/selftests/sync/Makefile b/tools/testing/selftests/sync/Makefile >> index 87ac400..f7d250d 100644 >> --- a/tools/testing/selftests/sync/Makefile >> +++ b/tools/testing/selftests/sync/Makefile >> @@ -20,5 +20,6 @@ TESTS += sync_stress_merge.o >> >> sync_test: $(OBJS) $(TESTS) >> >> -clean: >> +override define CLEAN >> $(RM) sync_test $(OBJS) $(TESTS) >> +endef > > EXTRA_CLEAN := sync_test $(OBJS) $(TESTS) > Will send v2 with this change. -- Shuah