From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1756447Ab3KZMBB (ORCPT ); Tue, 26 Nov 2013 07:01:01 -0500 Received: from mail-bk0-f51.google.com ([209.85.214.51]:42550 "EHLO mail-bk0-f51.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1755126Ab3KZMA7 (ORCPT ); Tue, 26 Nov 2013 07:00:59 -0500 Date: Tue, 26 Nov 2013 13:00:55 +0100 From: Ingo Molnar To: Jiri Olsa Cc: linux-kernel@vger.kernel.org, Frederic Weisbecker , Peter Zijlstra , Namhyung Kim , Mike Galbraith , Stephane Eranian , David Ahern , Adrian Hunter , Arnaldo Carvalho de Melo Subject: Re: [PATCH] perf tools: Fix tags target rebuilding Message-ID: <20131126120055.GA6103@gmail.com> References: <1385464890-19876-1-git-send-email-jolsa@redhat.com> <20131126113108.GE2410@gmail.com> <20131126115043.GG1267@krava.brq.redhat.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20131126115043.GG1267@krava.brq.redhat.com> User-Agent: Mutt/1.5.21 (2010-09-15) Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org * Jiri Olsa wrote: > On Tue, Nov 26, 2013 at 12:31:08PM +0100, Ingo Molnar wrote: > > > > * Jiri Olsa wrote: > > > > > Once the tags file is generated it's never rebuilt > > > until it's removed by hand. > > > > > > The reason is that the Makefile does not treat tags > > > as a target but as a file to be rebuilt. > > > > > > Adding tags as PHONY target into the Makefile. > > > > > > Signed-off-by: Jiri Olsa > > > Cc: Ingo Molnar > > > Cc: Frederic Weisbecker > > > Cc: Peter Zijlstra > > > Cc: Namhyung Kim > > > Cc: Mike Galbraith > > > Cc: Stephane Eranian > > > Cc: David Ahern > > > Cc: Adrian Hunter > > > Cc: Arnaldo Carvalho de Melo > > > --- > > > tools/perf/Makefile | 4 +++- > > > 1 file changed, 3 insertions(+), 1 deletion(-) > > > > > > diff --git a/tools/perf/Makefile b/tools/perf/Makefile > > > index 4835618..95f5792 100644 > > > --- a/tools/perf/Makefile > > > +++ b/tools/perf/Makefile > > > @@ -61,7 +61,7 @@ endef > > > # > > > # Needed if no target specified: > > > # > > > -all: > > > +all tags: > > > > Obviously the change invalidates the comment above. > > ugh, haven't noticed that comment ;-) > > > > > > $(print_msg) > > > $(make) > > > > > > @@ -77,3 +77,5 @@ clean: > > > %: > > > $(print_msg) > > > $(make) > > > + > > > +.PHONY: tags > > > > Note that there's also a TAGS file that uses etags - which probably > > needs similar treatment. > > yes > > > > > Also note that we have duplicate code for this in Makefile.perf > > already. Would it be possible to pass through this there and keep the > > main Makefile is just a thin, minimal wrapper that adds default > > parallelism, etc? > > well, thats what I actually tried to do.. pass the > processing to the Makefile.perf otherwise it stops > in Makefile > > I guess you want some generic way of doing that If it's just these two phony targets that need to be in the main makefile then I guess your approach is the simplest one and we should do it like that instead of complicating the interface. If it gets messier in the future we can reconsider? Thanks, Ingo