summaryrefslogtreecommitdiff
path: root/EdkCompatibilityPkg/Sample/LocalTools.env
diff options
context:
space:
mode:
authorqwang12 <qwang12@6f19259b-4bc3-4df7-8a09-765794883524>2007-06-28 07:00:39 +0000
committerqwang12 <qwang12@6f19259b-4bc3-4df7-8a09-765794883524>2007-06-28 07:00:39 +0000
commit3eb9473ea9a949badfe06ae61d2d3fcfa53651c7 (patch)
treee9d8c368dbb1e58794b2c00acefe4bbad270f8c4 /EdkCompatibilityPkg/Sample/LocalTools.env
parent30d4a0c7ec19938196b1308006b990e0945150da (diff)
downloadedk2-platforms-3eb9473ea9a949badfe06ae61d2d3fcfa53651c7.tar.xz
Add in the 1st version of ECP.
git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@2832 6f19259b-4bc3-4df7-8a09-765794883524
Diffstat (limited to 'EdkCompatibilityPkg/Sample/LocalTools.env')
-rw-r--r--EdkCompatibilityPkg/Sample/LocalTools.env95
1 files changed, 95 insertions, 0 deletions
diff --git a/EdkCompatibilityPkg/Sample/LocalTools.env b/EdkCompatibilityPkg/Sample/LocalTools.env
new file mode 100644
index 0000000000..e5fe750388
--- /dev/null
+++ b/EdkCompatibilityPkg/Sample/LocalTools.env
@@ -0,0 +1,95 @@
+#/*++
+#
+# Copyright (c) 2004 - 2007, Intel Corporation
+# All rights reserved. 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
+# http://opensource.org/licenses/bsd-license.php
+#
+# THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
+# WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
+#
+# Module Name:
+#
+# LocalTools.env
+#
+# Abstract:
+#
+# This file is included by CommonTools.env, which is included by
+# makefiles when building.
+#
+# It can be customized to identify the locations of the tools
+# necessary to build the EFI source code for different systems.
+#
+#--*/
+
+#
+# Customize to define the base path to MASM for IA32
+#
+!IFNDEF MASMPATH
+MASMPATH = c:\masm611
+!ENDIF
+
+#
+# Customize to define the base path to iASL
+#
+!IFNDEF ASLPATH
+ASLPATH = c:\Asl
+!ENDIF
+
+#
+# Customize to define the base path to the tools for IPF
+#
+!IFNDEF EFI_IA64TOOLPATH
+!IF "$(USE_NEWDDK)" == "YES"
+EFI_IA64TOOLPATH = C:\WINDDK\3790.1830\bin\win64\x86
+!ELSE
+EFI_IA64TOOLPATH = C:\DDK3790
+!ENDIF
+!ENDIF
+
+!IFNDEF EFI_IA64ASMPATH
+!IF "$(USE_NEWDDK)" == "YES"
+EFI_IA64ASMPATH = C:\WINDDK\3790.1830\bin\win64\x86
+!ELSE
+EFI_IA64ASMPATH = C:\DDK3790
+!ENDIF
+!ENDIF
+
+#
+# Customize to define the base path to the EBC tools
+#
+!IFNDEF EBC_TOOLS_PATH
+EBC_TOOLS_PATH = c:\progra~1\intel\ebc
+!ENDIF
+
+#
+# Customize to define the base path to WINDDK for X64
+#
+!IFNDEF WIN_DDK_PATH
+WIN_DDK_X64_PATH = C:\WINDDK\3790.1830\bin\win64\x86\amd64
+!ELSE
+WIN_DDK_X64_PATH = $(WIN_DDK_PATH)\bin\win64\x86\amd64
+!ENDIF
+
+#
+# Customize to define the base path to VC8 for X64
+#
+!IF "$(USE_VC8_X64)" == "YES"
+!IFNDEF VCINSTALLDIR
+VC8_X64_PATH = c:\Program Files\Microsoft Visual Studio 8\VC\bin\x86_amd64
+!ELSE
+VC8_X64_PATH = $(VCINSTALLDIR)\bin\x86_amd64
+!ENDIF
+!ENDIF
+
+#
+# Customize to define the base path to VC8 for IPF
+#
+!IF "$(USE_VC8_IPF)" == "YES"
+!IFNDEF VCINSTALLDIR
+VC8_IPF_PATH = c:\Program Files\Microsoft Visual Studio 8\VC\bin\x86_ia64
+!ELSE
+VC8_IPF_PATH = $(VCINSTALLDIR)\bin\x86_ia64
+!ENDIF
+!ENDIF