summaryrefslogtreecommitdiff
path: root/EdkCompatibilityPkg/Sample/LocalTools.env
blob: f325c88368ce644a2af4c3d141c19b5afa99f126 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
#/*++
#   
#  Copyright (c) 2004 - 2007, Intel Corporation. All rights reserved.<BR>
#  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