From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1758330Ab3DXJin (ORCPT ); Wed, 24 Apr 2013 05:38:43 -0400 Received: from mx1.redhat.com ([209.132.183.28]:3076 "EHLO mx1.redhat.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1758312Ab3DXJij (ORCPT ); Wed, 24 Apr 2013 05:38:39 -0400 From: Jiri Olsa To: linux-kernel@vger.kernel.org Cc: Jiri Olsa , Arnaldo Carvalho de Melo , Peter Zijlstra , Ingo Molnar , Paul Mackerras , Corey Ashford , Frederic Weisbecker , Namhyung Kim , Borislav Petkov , Stephane Eranian , Sam Ravnborg , David Ahern Subject: [PATCHv2 00/26] perf tools: Makefile changes Date: Wed, 24 Apr 2013 11:37:27 +0200 Message-Id: <1366796273-4780-1-git-send-email-jolsa@redhat.com> Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org hi, this patchset mostly consists of moving the config 'CHK' stuff into config/Makefile which will be also used for kbuild afterwards. I'm sending now just the Makefile changes separated from the kbuild stuff, which will come later. The original RFC is here: http://marc.info/?l=linux-kernel&m=136484403415600&w=2 The patchset is tested via automated make test by running: $ make -f tests/make v2 changes: - adding make clean all support (and test) - de-CAPSizing the test/make test - several line breaking changes, ommiting usage of '\' - '?=' operator removal for STRIP - tabs to spaces conversion for Makefile non-commands lines Changes could be reached in here: git://git.kernel.org/pub/scm/linux/kernel/git/jolsa/perf.git perf/core_make thanks for comments, jirka Signed-off-by: Jiri Olsa Cc: Arnaldo Carvalho de Melo Cc: Peter Zijlstra Cc: Ingo Molnar Cc: Paul Mackerras Cc: Corey Ashford Cc: Frederic Weisbecker Cc: Namhyung Kim Cc: Borislav Petkov Cc: Stephane Eranian Cc: Sam Ravnborg Cc: David Ahern --- Jiri Olsa (26): perf tools: Add automated make test suite perf tools: Fix tab vs spaces issue in Makefile ifdef/endif perf tools: Move arch check into config/Makefile perf tools: Move programs check into config/Makefile perf tools: Move compiler and linker flags check into config/Makefile perf tools: Move libelf check config into config/Makefile perf tools: Move libdw check config into config/Makefile perf tools: Move libunwind check config into config/Makefile perf tools: Move libaudit check config into config/Makefile perf tools: Move slang check config into config/Makefile perf tools: Move gtk2 check config into config/Makefile perf tools: Move libperl check config into config/Makefile perf tools: Move libpython check config into config/Makefile perf tools: Move libbfd check config into config/Makefile perf tools: Move stdlib check config into config/Makefile perf tools: Move libnuma check config into config/Makefile perf tools: Move paths config into config/Makefile perf tools: Final touches for CHK config move perf tools: Merge all *CFLAGS* make variable into CFLAGS perf tools: Merge all *LDFLAGS* make variable into LDFLAGS perf tools: Switch to full patch C include directories perf tools: Add NO_BIONIC variable to confiure bionic setup perf tools: Replace tabs with spaces for all non-commands statements perf tools: Replace multiple line assignment with multiple statements perf tools: Remove '?=' Makefile STRIP assignment perf tools: Add missing liblk.a dependency for python/perf.so tools/perf/Makefile | 630 ++++++++++++++--------------------------------------------------------------- tools/perf/config/Makefile | 477 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ tools/perf/tests/make | 141 ++++++++++++++++++ tools/perf/util/setup.py | 5 +- 4 files changed, 732 insertions(+), 521 deletions(-) create mode 100644 tools/perf/config/Makefile create mode 100644 tools/perf/tests/make