From 81fa5ad02821dc53fffc9e91e40f31bb4e6e34d3 Mon Sep 17 00:00:00 2001 From: Liming Gao Date: Tue, 28 Nov 2017 11:18:52 +0800 Subject: [PATCH] BaseTools: Update C tools top GNUMakefile to adjust tool order 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 Reviewed-by: Yonghong Zhu --- 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 50b675900f..0dc748267d 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.39.2