From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mga03.intel.com (mga03.intel.com [134.134.136.65]) (using TLSv1 with cipher CAMELLIA256-SHA (256/256 bits)) (No client certificate requested) by ml01.01.org (Postfix) with ESMTPS id 35F0B1A1E0F for ; Mon, 26 Sep 2016 19:44:58 -0700 (PDT) Received: from fmsmga005.fm.intel.com ([10.253.24.32]) by orsmga103.jf.intel.com with ESMTP; 26 Sep 2016 19:44:57 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.30,402,1470726000"; d="scan'208";a="13563419" Received: from shwdeopenpsi014.ccr.corp.intel.com ([10.239.9.34]) by fmsmga005.fm.intel.com with ESMTP; 26 Sep 2016 19:44:56 -0700 From: Hao Wu To: edk2-devel@lists.01.org Cc: Hao Wu , Yonghong Zhu , Liming Gao Date: Tue, 27 Sep 2016 10:44:53 +0800 Message-Id: <1474944293-81836-1-git-send-email-hao.a.wu@intel.com> X-Mailer: git-send-email 1.9.5.msysgit.0 Subject: [PATCH] BaseTools: List missing source python files for Ecc tool in Makefile X-BeenThere: edk2-devel@lists.01.org X-Mailman-Version: 2.1.21 Precedence: list List-Id: EDK II Development List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 27 Sep 2016 02:44:58 -0000 Add missing python sources files that are dependent for Ecc tool in Makefile. Cc: Yonghong Zhu Cc: Liming Gao Contributed-under: TianoCore Contribution Agreement 1.0 Signed-off-by: Hao Wu --- 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