diff options
author | Hao Wu <hao.a.wu@intel.com> | 2016-09-27 10:07:18 +0800 |
---|---|---|
committer | Hao Wu <hao.a.wu@intel.com> | 2016-09-27 16:26:13 +0800 |
commit | 7807dea57fba6a019bb8641572e0159ffa03ad9e (patch) | |
tree | bcc51e75265273dd1c14561a7fa593be010c3255 | |
parent | 324dd9b468fc53c1b162035334620e47a0637b41 (diff) | |
download | edk2-platforms-7807dea57fba6a019bb8641572e0159ffa03ad9e.tar.xz |
BaseTools: List missing source python files for Ecc tool in Makefile
Add missing python sources files that are dependent for Ecc tool in
Makefile.
Cc: Yonghong Zhu <yonghong.zhu@intel.com>
Cc: Liming Gao <liming.gao@intel.com>
Contributed-under: TianoCore Contribution Agreement 1.0
Signed-off-by: Hao Wu <hao.a.wu@intel.com>
Reviewed-by: Liming Gao <liming.gao@intel.com>
Reviewed-by: Yonghong Zhu <yonghong.zhu@intel.com>
-rw-r--r-- | BaseTools/Source/Python/Makefile | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/BaseTools/Source/Python/Makefile b/BaseTools/Source/Python/Makefile index e7755cdbf8..7ffe2114e5 100644 --- a/BaseTools/Source/Python/Makefile +++ b/BaseTools/Source/Python/Makefile @@ -237,6 +237,26 @@ CMD_UPT=$(BASE_TOOLS_PATH)\Source\Python\UPT\Core\DependencyRules.py \ $(BASE_TOOLS_PATH)\Source\Python\UPT\Xml\XmlParser.py \
$(BASE_TOOLS_PATH)\Source\Python\UPT\Xml\XmlParserMisc.py
+CMD_ECC=$(BASE_TOOLS_PATH)\Source\Python\Ecc\c.py \
+ $(BASE_TOOLS_PATH)\Source\Python\Ecc\Check.py \
+ $(BASE_TOOLS_PATH)\Source\Python\Ecc\CLexer.py \
+ $(BASE_TOOLS_PATH)\Source\Python\Ecc\CodeFragment.py \
+ $(BASE_TOOLS_PATH)\Source\Python\Ecc\CodeFragmentCollector.py \
+ $(BASE_TOOLS_PATH)\Source\Python\Ecc\Configuration.py \
+ $(BASE_TOOLS_PATH)\Source\Python\Ecc\CParser.py \
+ $(BASE_TOOLS_PATH)\Source\Python\Ecc\Database.py \
+ $(BASE_TOOLS_PATH)\Source\Python\Ecc\Ecc.py \
+ $(BASE_TOOLS_PATH)\Source\Python\Ecc\EccGlobalData.py \
+ $(BASE_TOOLS_PATH)\Source\Python\Ecc\EccToolError.py \
+ $(BASE_TOOLS_PATH)\Source\Python\Ecc\Exception.py \
+ $(BASE_TOOLS_PATH)\Source\Python\Ecc\FileProfile.py \
+ $(BASE_TOOLS_PATH)\Source\Python\Ecc\MetaDataParser.py \
+ $(BASE_TOOLS_PATH)\Source\Python\Ecc\ParserWarning.py \
+ $(BASE_TOOLS_PATH)\Source\Python\Ecc\MetaFileWorkspace\MetaDataTable.py \
+ $(BASE_TOOLS_PATH)\Source\Python\Ecc\MetaFileWorkspace\MetaFileParser.py \
+ $(BASE_TOOLS_PATH)\Source\Python\Ecc\MetaFileWorkspace\MetaFileTable.py \
+ $(BASE_TOOLS_PATH)\Source\Python\Ecc\Xml\XmlRoutines.py
+
!IFDEF PYTHON_FREEZER_PATH
all: SetPythonPath $(APPLICATIONS)
!ELSE
|