summaryrefslogtreecommitdiffstats
path: root/BaseTools/GNUmakefile
diff options
context:
space:
mode:
authorLiming Gao <liming.gao@intel.com>2017-11-28 11:18:51 +0800
committerLiming Gao <liming.gao@intel.com>2017-11-30 13:06:49 +0800
commit9e1131b70b4b6002cd1904401946ef0b22cf7d33 (patch)
treed668be579fe9adc71916f46231cb09f641ee0ab9 /BaseTools/GNUmakefile
parenta9f6e0a4dc6d3f4dec53bb2a11b1c0ecee455076 (diff)
downloadedk2-9e1131b70b4b6002cd1904401946ef0b22cf7d33.tar.gz
edk2-9e1131b70b4b6002cd1904401946ef0b22cf7d33.tar.bz2
edk2-9e1131b70b4b6002cd1904401946ef0b22cf7d33.zip
BaseTools: Update BaseTools top GNUMakefile with the clear dependency
https://bugzilla.tianocore.org/show_bug.cgi?id=786 After GNUmakefile dependency is fixed up, it can make with -j N to enable multiple thread build in base tools C source and save build time. In my linux host machine, make -j 4 to compile BaseTools and save ~60% time. Contributed-under: TianoCore Contribution Agreement 1.1 Signed-off-by: Liming Gao <liming.gao@intel.com> Reviewed-by: Yonghong Zhu <yonghong.zhu@intel.com>
Diffstat (limited to 'BaseTools/GNUmakefile')
-rw-r--r--BaseTools/GNUmakefile8
1 files changed, 3 insertions, 5 deletions
diff --git a/BaseTools/GNUmakefile b/BaseTools/GNUmakefile
index 790d33a2f3..6325e409c7 100644
--- a/BaseTools/GNUmakefile
+++ b/BaseTools/GNUmakefile
@@ -1,7 +1,7 @@
## @file
# GNU/Linux makefile for Base Tools project build.
#
-# Copyright (c) 2009 - 2010, Intel Corporation. All rights reserved.<BR>
+# Copyright (c) 2009 - 2017, Intel Corporation. All rights reserved.<BR>
# This program and the accompanying materials
# are licensed and made available under the terms and conditions of the BSD License
# which accompanies this distribution. The full text of the license may be found at
@@ -24,12 +24,10 @@ subdirs: $(SUBDIRS)
$(SUBDIRS):
$(MAKE) -C $@
+Tests: $(SOURCE_SUBDIRS)
+
.PHONY: $(CLEAN_SUBDIRS)
$(CLEAN_SUBDIRS):
-$(MAKE) -C $(@:-clean=) clean
clean: $(CLEAN_SUBDIRS)
-
-test:
- @$(MAKE) -C Tests
-