From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1752545AbaAPBxF (ORCPT ); Wed, 15 Jan 2014 20:53:05 -0500 Received: from lgeamrelo02.lge.com ([156.147.1.126]:62639 "EHLO LGEAMRELO02.lge.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1750941AbaAPBxE (ORCPT ); Wed, 15 Jan 2014 20:53:04 -0500 X-AuditID: 9c93017e-b7b63ae000000e6a-2c-52d73b7e1c41 From: Namhyung Kim To: Arnaldo Carvalho de Melo Cc: Peter Zijlstra , Paul Mackerras , Ingo Molnar , Namhyung Kim , LKML , Jiri Olsa Subject: [PATCH] perf tools: Add 'build-test' make target Date: Thu, 16 Jan 2014 10:52:53 +0900 Message-Id: <1389837173-3632-1-git-send-email-namhyung@kernel.org> X-Mailer: git-send-email 1.7.11.7 X-Brightmail-Tracker: AAAAAA== Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Currently various build test was done with a Makefile named tests/make so one needs to remember and specify it with -f option on command line. Add the 'build-test' target in the main Makefile as a shortcut. Cc: Jiri Olsa Signed-off-by: Namhyung Kim --- tools/perf/Makefile | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/tools/perf/Makefile b/tools/perf/Makefile index eefb9fb0c02f..cb2e5868c8e8 100644 --- a/tools/perf/Makefile +++ b/tools/perf/Makefile @@ -75,6 +75,12 @@ clean: $(make) # +# The build-test target is not really parallel, don't print the jobs info: +# +build-test: + @$(MAKE) -f tests/make --no-print-directory + +# # All other targets get passed through: # %: -- 1.7.11.7