From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received-SPF: Pass (sender SPF authorized) identity=mailfrom; client-ip=192.55.52.43; helo=mga05.intel.com; envelope-from=liming.gao@intel.com; receiver=edk2-devel@lists.01.org Received: from mga05.intel.com (mga05.intel.com [192.55.52.43]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by ml01.01.org (Postfix) with ESMTPS id B9FF7220C1C3D for ; Thu, 23 Nov 2017 08:02:07 -0800 (PST) Received: from fmsmga002.fm.intel.com ([10.253.24.26]) by fmsmga105.fm.intel.com with ESMTP/TLS/DHE-RSA-AES256-GCM-SHA384; 23 Nov 2017 08:06:25 -0800 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.44,441,1505804400"; d="scan'208";a="1247693038" Received: from liuyue1-mobl.ccr.corp.intel.com (HELO lgao4-MOBL1.ccr.corp.intel.com) ([10.255.25.216]) by fmsmga002.fm.intel.com with ESMTP; 23 Nov 2017 08:06:24 -0800 From: Liming Gao To: edk2-devel@lists.01.org Date: Fri, 24 Nov 2017 00:06:14 +0800 Message-Id: <20171123160614.8200-3-liming.gao@intel.com> X-Mailer: git-send-email 2.11.0.windows.1 In-Reply-To: <20171123160614.8200-1-liming.gao@intel.com> References: <20171123160614.8200-1-liming.gao@intel.com> Subject: [Patch 2/2] BaseTools: Update C tools top GNUMakefile to adjust tool order X-BeenThere: edk2-devel@lists.01.org X-Mailman-Version: 2.1.22 Precedence: list List-Id: EDK II Development List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 23 Nov 2017 16:02:07 -0000 Place the tool that takes much build time at the first. This can improve build performance when make -j N used. Contributed-under: TianoCore Contribution Agreement 1.1 Signed-off-by: Liming Gao --- BaseTools/Source/C/GNUmakefile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/BaseTools/Source/C/GNUmakefile b/BaseTools/Source/C/GNUmakefile index d067c87081..d275779c2b 100644 --- a/BaseTools/Source/C/GNUmakefile +++ b/BaseTools/Source/C/GNUmakefile @@ -51,9 +51,10 @@ LIBRARIES = Common VFRAUTOGEN = VfrCompile/VfrLexer.h # NON_BUILDABLE_APPLICATIONS = GenBootSector BootSectImage APPLICATIONS = \ + BrotliCompress \ + VfrCompile \ GnuGenBootSector \ BootSectImage \ - BrotliCompress \ EfiLdrImage \ EfiRom \ GenFfs \ @@ -66,8 +67,7 @@ APPLICATIONS = \ LzmaCompress \ Split \ TianoCompress \ - VolInfo \ - VfrCompile + VolInfo SUBDIRS := $(LIBRARIES) $(APPLICATIONS) -- 2.11.0.windows.1