From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received-SPF: Pass (sender SPF authorized) identity=mailfrom; client-ip=134.134.136.100; helo=mga07.intel.com; envelope-from=liming.gao@intel.com; receiver=edk2-devel@lists.01.org Received: from mga07.intel.com (mga07.intel.com [134.134.136.100]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by ml01.01.org (Postfix) with ESMTPS id 99AA62034B409 for ; Tue, 26 Dec 2017 07:09:41 -0800 (PST) X-Amp-Result: SKIPPED(no attachment in message) X-Amp-File-Uploaded: False Received: from orsmga005.jf.intel.com ([10.7.209.41]) by orsmga105.jf.intel.com with ESMTP/TLS/DHE-RSA-AES256-GCM-SHA384; 26 Dec 2017 07:14:35 -0800 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.45,460,1508828400"; d="scan'208";a="187175938" Received: from shwde7172.ccr.corp.intel.com ([10.239.9.15]) by orsmga005.jf.intel.com with ESMTP; 26 Dec 2017 07:14:34 -0800 From: Liming Gao To: edk2-devel@lists.01.org Date: Tue, 26 Dec 2017 23:14:19 +0800 Message-Id: <1514301259-9764-1-git-send-email-liming.gao@intel.com> X-Mailer: git-send-email 2.8.0.windows.1 Subject: [Patch] BaseTools: Update Python Makefile to include the new added python files X-BeenThere: edk2-devel@lists.01.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: EDK II Development List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 26 Dec 2017 15:09:42 -0000 Contributed-under: TianoCore Contribution Agreement 1.1 Signed-off-by: Liming Gao Cc: Yonghong Zhu Cc: Bob Feng --- BaseTools/Source/Python/Makefile | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/BaseTools/Source/Python/Makefile b/BaseTools/Source/Python/Makefile index 7ffe211..ce5541b 100644 --- a/BaseTools/Source/Python/Makefile +++ b/BaseTools/Source/Python/Makefile @@ -88,6 +88,9 @@ COMMON_PYTHON=$(BASE_TOOLS_PATH)\Source\Python\Common\BuildToolError.py \ $(BASE_TOOLS_PATH)\Source\Python\Workspace\MetaFileTable.py \ $(BASE_TOOLS_PATH)\Source\Python\Workspace\WorkspaceCommon.py \ $(BASE_TOOLS_PATH)\Source\Python\Workspace\WorkspaceDatabase.py \ + $(BASE_TOOLS_PATH)\Source\Python\Workspace\DecBuildData.py \ + $(BASE_TOOLS_PATH)\Source\Python\Workspace\DscBuildData.py \ + $(BASE_TOOLS_PATH)\Source\Python\Workspace\InfBuildData.py \ $(BASE_TOOLS_PATH)\Source\Python\AutoGen\AutoGen.py \ $(BASE_TOOLS_PATH)\Source\Python\AutoGen\BuildEngine.py \ $(BASE_TOOLS_PATH)\Source\Python\AutoGen\GenC.py \ @@ -98,6 +101,7 @@ COMMON_PYTHON=$(BASE_TOOLS_PATH)\Source\Python\Common\BuildToolError.py \ $(BASE_TOOLS_PATH)\Source\Python\AutoGen\StrGather.py \ $(BASE_TOOLS_PATH)\Source\Python\AutoGen\UniClassObject.py \ $(BASE_TOOLS_PATH)\Source\Python\AutoGen\ValidCheckingInfoObject.py \ + $(BASE_TOOLS_PATH)\Source\Python\AutoGen\GenVar.py \ $(BASE_TOOLS_PATH)\Source\Python\Common\RangeExpression.py \ $(BASE_TOOLS_PATH)\Source\Python\Common\VariableAttributes.py -- 2.8.0.windows.1