From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1034360AbdD0Nwu (ORCPT ); Thu, 27 Apr 2017 09:52:50 -0400 Received: from resqmta-po-04v.sys.comcast.net ([96.114.154.163]:46246 "EHLO resqmta-po-04v.sys.comcast.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1034328AbdD0Nwl (ORCPT ); Thu, 27 Apr 2017 09:52:41 -0400 Reply-To: shuah@kernel.org Subject: Re: [PATCH v2] selftests/Makefile: Add missed PHONY targets References: <20170413234703.28749-1-sj38.park@gmail.com> To: SeongJae Park Cc: linux-kselftest@vger.kernel.org, linux-kernel@vger.kernel.org, shuah Khan From: Shuah Khan Message-ID: <4807b194-e990-014f-9cb4-e2d614501805@kernel.org> Date: Thu, 27 Apr 2017 07:52:38 -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: <20170413234703.28749-1-sj38.park@gmail.com> Content-Type: text/plain; charset=windows-1252 Content-Transfer-Encoding: 7bit X-CMAE-Envelope: MS4wfOkIPS2bVGCu+xsDTTpCXFs7xSz9IufwTHkiblcWY7RBFGCYq1YQrzCbuSAIHiQEVpUWEm4en5zUrIG+3yHfU4oFA2TD9w/S/7pONPSuOsXhypbNPYEE NByCPmtKzSE+OfX8uwlN6QsXt+ZCpKhz5c1TqQaa4ny9dj1ora9XLVG63s+slIxRXKtg3WQ5bV9utILKvf1wNnq77yKJqoIgRpEhel3ojRjnnBBUj2gQy3g6 k0h6H7pOr1yrvirlcpsU5IHUWF1pLfKmOvWBMOlUdoNFufIZFGKK7++jPx1HSAVb Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On 04/13/2017 05:47 PM, SeongJae Park wrote: > `selftests/Makefile` is defining only `install` as entire PHONY target > though there are few more PHONY targets including `run_tests`. This > commit defines them as the PHONY targets. > > Signed-off-by: SeongJae Park > --- > tools/testing/selftests/Makefile | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > > diff --git a/tools/testing/selftests/Makefile b/tools/testing/selftests/Makefile > index 395ab296c084..26ce4f7168be 100644 > --- a/tools/testing/selftests/Makefile > +++ b/tools/testing/selftests/Makefile > @@ -133,4 +133,4 @@ clean: > make OUTPUT=$$BUILD_TARGET -C $$TARGET clean;\ > done; > > -.PHONY: install > +.PHONY: all run_tests hotplug run_hotplug clean_hotplug run_pstore_crash install clean > Applied to linux-kselftest next for 4.12-rc1 thanks for the patch. -- Shuah