From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1755790AbbBRSjp (ORCPT ); Wed, 18 Feb 2015 13:39:45 -0500 Received: from terminus.zytor.com ([198.137.202.10]:41612 "EHLO terminus.zytor.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1754336AbbBRSjm (ORCPT ); Wed, 18 Feb 2015 13:39:42 -0500 Date: Wed, 18 Feb 2015 10:38:52 -0800 From: tip-bot for Jiri Olsa Message-ID: Cc: fweisbec@gmail.com, namhyung@kernel.org, dsahern@gmail.com, alexis.berlemont@gmail.com, peterz@infradead.org, jolsa@kernel.org, acme@redhat.com, eranian@google.com, bp@alien8.de, paulus@samba.org, will.deacon@arm.com, sukadev@linux.vnet.ibm.com, linux-kernel@vger.kernel.org, hpa@zytor.com, mingo@kernel.org, cjashfor@linux.vnet.ibm.com, tglx@linutronix.de Reply-To: eranian@google.com, bp@alien8.de, paulus@samba.org, will.deacon@arm.com, sukadev@linux.vnet.ibm.com, linux-kernel@vger.kernel.org, hpa@zytor.com, mingo@kernel.org, cjashfor@linux.vnet.ibm.com, tglx@linutronix.de, dsahern@gmail.com, namhyung@kernel.org, fweisbec@gmail.com, peterz@infradead.org, alexis.berlemont@gmail.com, jolsa@kernel.org, acme@redhat.com To: linux-tip-commits@vger.kernel.org Subject: [tip:perf/core] perf build: Remove directory dependency rules Git-Commit-ID: 64f72f3b7316793ba03bc38f5c3cfc627068afe4 X-Mailer: tip-git-log-daemon Robot-ID: Robot-Unsubscribe: Contact to get blacklisted from these emails MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset=UTF-8 Content-Disposition: inline Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Commit-ID: 64f72f3b7316793ba03bc38f5c3cfc627068afe4 Gitweb: http://git.kernel.org/tip/64f72f3b7316793ba03bc38f5c3cfc627068afe4 Author: Jiri Olsa AuthorDate: Tue, 30 Dec 2014 16:48:54 +0100 Committer: Arnaldo Carvalho de Melo CommitDate: Thu, 12 Feb 2015 17:32:43 -0300 perf build: Remove directory dependency rules Removing subdirectories creation support from Makefile.perf as it's no longer needed, since it's properly handled by new build system. Signed-off-by: Jiri Olsa Tested-by: Sukadev Bhattiprolu Tested-by: Will Deacon Cc: Alexis Berlemont Cc: Borislav Petkov Cc: Corey Ashford Cc: David Ahern Cc: Frederic Weisbecker Cc: Namhyung Kim Cc: Paul Mackerras Cc: Peter Zijlstra Cc: Stephane Eranian Link: http://lkml.kernel.org/n/tip-2i8x5hdllpm6cyhfh1cr88hv@git.kernel.org Signed-off-by: Arnaldo Carvalho de Melo --- tools/perf/Makefile.perf | 15 --------------- 1 file changed, 15 deletions(-) diff --git a/tools/perf/Makefile.perf b/tools/perf/Makefile.perf index ef637e9..b282cbc 100644 --- a/tools/perf/Makefile.perf +++ b/tools/perf/Makefile.perf @@ -465,21 +465,6 @@ endif $(LIB_OBJS) $(BUILTIN_OBJS): $(LIB_H) $(patsubst perf-%,%.o,$(PROGRAMS)): $(LIB_H) $(wildcard */*.h) -# we compile into subdirectories. if the target directory is not the source directory, they might not exists. So -# we depend the various files onto their directories. -DIRECTORY_DEPS = $(LIB_OBJS) $(BUILTIN_OBJS) $(GTK_OBJS) -DIRECTORY_DEPS += $(OUTPUT)PERF-VERSION-FILE $(OUTPUT)common-cmds.h -# no need to add flex objects, because they depend on bison ones -DIRECTORY_DEPS += $(OUTPUT)util/parse-events-bison.c -DIRECTORY_DEPS += $(OUTPUT)util/pmu-bison.c - -OUTPUT_DIRECTORIES := $(sort $(dir $(DIRECTORY_DEPS))) - -$(DIRECTORY_DEPS): | $(OUTPUT_DIRECTORIES) -# In the second step, we make a rule to actually create these directories -$(OUTPUT_DIRECTORIES): - $(QUIET_MKDIR)$(MKDIR) -p $@ 2>/dev/null - LIBPERF_IN := $(OUTPUT)libperf-in.o $(LIBPERF_IN): FORCE