* [PATCH] BaseTools: List missing source python files for Ecc tool in Makefile
@ 2016-09-27 2:44 Hao Wu
2016-09-27 2:57 ` Gao, Liming
2016-09-27 5:38 ` Zhu, Yonghong
0 siblings, 2 replies; 3+ messages in thread
From: Hao Wu @ 2016-09-27 2:44 UTC (permalink / raw)
To: edk2-devel; +Cc: Hao Wu, Yonghong Zhu, Liming Gao
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>
---
BaseTools/Source/Python/Makefile | 20 ++++++++++++++++++++
1 file changed, 20 insertions(+)
diff --git a/BaseTools/Source/Python/Makefile b/BaseTools/Source/Python/Makefile
index e7755cd..7ffe211 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
--
1.9.5.msysgit.0
^ permalink raw reply related [flat|nested] 3+ messages in thread
* Re: [PATCH] BaseTools: List missing source python files for Ecc tool in Makefile
2016-09-27 2:44 [PATCH] BaseTools: List missing source python files for Ecc tool in Makefile Hao Wu
@ 2016-09-27 2:57 ` Gao, Liming
2016-09-27 5:38 ` Zhu, Yonghong
1 sibling, 0 replies; 3+ messages in thread
From: Gao, Liming @ 2016-09-27 2:57 UTC (permalink / raw)
To: Wu, Hao A, edk2-devel@lists.01.org
Reviewed-by: Liming Gao <liming.gao@intel.com>
> -----Original Message-----
> From: Wu, Hao A
> Sent: Tuesday, September 27, 2016 10:45 AM
> To: edk2-devel@lists.01.org
> Cc: Wu, Hao A <hao.a.wu@intel.com>; Zhu, Yonghong
> <yonghong.zhu@intel.com>; Gao, Liming <liming.gao@intel.com>
> Subject: [PATCH] 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>
> ---
> BaseTools/Source/Python/Makefile | 20 ++++++++++++++++++++
> 1 file changed, 20 insertions(+)
>
> diff --git a/BaseTools/Source/Python/Makefile
> b/BaseTools/Source/Python/Makefile
> index e7755cd..7ffe211 100644
> --- a/BaseTools/Source/Python/Makefile
> +++ b/BaseTools/Source/Python/Makefile
> @@ -237,6 +237,26 @@
> CMD_UPT=$(BASE_TOOLS_PATH)\Source\Python\UPT\Core\DependencyR
> ules.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\MetaDataTa
> ble.py \
> +
> $(BASE_TOOLS_PATH)\Source\Python\Ecc\MetaFileWorkspace\MetaFilePar
> ser.py \
> +
> $(BASE_TOOLS_PATH)\Source\Python\Ecc\MetaFileWorkspace\MetaFileTab
> le.py \
> + $(BASE_TOOLS_PATH)\Source\Python\Ecc\Xml\XmlRoutines.py
> +
> !IFDEF PYTHON_FREEZER_PATH
> all: SetPythonPath $(APPLICATIONS)
> !ELSE
> --
> 1.9.5.msysgit.0
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: [PATCH] BaseTools: List missing source python files for Ecc tool in Makefile
2016-09-27 2:44 [PATCH] BaseTools: List missing source python files for Ecc tool in Makefile Hao Wu
2016-09-27 2:57 ` Gao, Liming
@ 2016-09-27 5:38 ` Zhu, Yonghong
1 sibling, 0 replies; 3+ messages in thread
From: Zhu, Yonghong @ 2016-09-27 5:38 UTC (permalink / raw)
To: Wu, Hao A, edk2-devel@lists.01.org; +Cc: Gao, Liming, Zhu, Yonghong
Reviewed-by: Yonghong Zhu <yonghong.zhu@intel.com>
Best Regards,
Zhu Yonghong
-----Original Message-----
From: Wu, Hao A
Sent: Tuesday, September 27, 2016 10:45 AM
To: edk2-devel@lists.01.org
Cc: Wu, Hao A <hao.a.wu@intel.com>; Zhu, Yonghong <yonghong.zhu@intel.com>; Gao, Liming <liming.gao@intel.com>
Subject: [PATCH] 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>
---
BaseTools/Source/Python/Makefile | 20 ++++++++++++++++++++
1 file changed, 20 insertions(+)
diff --git a/BaseTools/Source/Python/Makefile b/BaseTools/Source/Python/Makefile
index e7755cd..7ffe211 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
--
1.9.5.msysgit.0
^ permalink raw reply related [flat|nested] 3+ messages in thread
end of thread, other threads:[~2016-09-27 5:38 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2016-09-27 2:44 [PATCH] BaseTools: List missing source python files for Ecc tool in Makefile Hao Wu
2016-09-27 2:57 ` Gao, Liming
2016-09-27 5:38 ` Zhu, Yonghong
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox