Home | History | Annotate | Download | only in Sample
      1 #/*++
      2 #   
      3 #  Copyright (c) 2004 - 2007, Intel Corporation. All rights reserved.<BR>
      4 #  This program and the accompanying materials                          
      5 #  are licensed and made available under the terms and conditions of the BSD License         
      6 #  which accompanies this distribution.  The full text of the license may be found at        
      7 #  http://opensource.org/licenses/bsd-license.php                                            
      8 #                                                                                            
      9 #  THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,                     
     10 #  WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.             
     11 #  
     12 #  Module Name:
     13 #
     14 #    LocalTools.env
     15 #   
     16 #  Abstract:
     17 #   
     18 #    This file is included by CommonTools.env, which is included by 
     19 #    makefiles when building.
     20 #   
     21 #    It can be customized to identify the locations of the tools 
     22 #    necessary to build the EFI source code for different systems. 
     23 #   
     24 #--*/
     25 
     26 # 
     27 # Customize to define the base path to MASM for IA32
     28 #
     29 !IFNDEF MASMPATH
     30 MASMPATH   = c:\masm611
     31 !ENDIF
     32 
     33 # 
     34 # Customize to define the base path to iASL
     35 #
     36 !IFNDEF ASLPATH
     37 ASLPATH   = c:\Asl
     38 !ENDIF
     39 
     40 #
     41 # Customize to define the base path to the tools for IPF
     42 #
     43 !IFNDEF EFI_IA64TOOLPATH
     44 !IF "$(USE_NEWDDK)" == "YES"
     45 EFI_IA64TOOLPATH  = C:\WINDDK\3790.1830\bin\win64\x86
     46 !ELSE
     47 EFI_IA64TOOLPATH  = C:\DDK3790
     48 !ENDIF
     49 !ENDIF
     50 
     51 !IFNDEF EFI_IA64ASMPATH
     52 !IF "$(USE_NEWDDK)" == "YES"
     53 EFI_IA64ASMPATH   = C:\WINDDK\3790.1830\bin\win64\x86
     54 !ELSE
     55 EFI_IA64ASMPATH   = C:\DDK3790
     56 !ENDIF
     57 !ENDIF
     58 
     59 # 
     60 # Customize to define the base path to the EBC tools
     61 #
     62 !IFNDEF EBC_TOOLS_PATH
     63 EBC_TOOLS_PATH  = c:\progra~1\intel\ebc
     64 !ENDIF
     65 
     66 #
     67 # Customize to define the base path to WINDDK for X64
     68 #
     69 !IFNDEF WIN_DDK_PATH
     70 WIN_DDK_X64_PATH = C:\WINDDK\3790.1830\bin\win64\x86\amd64
     71 !ELSE
     72 WIN_DDK_X64_PATH = $(WIN_DDK_PATH)\bin\win64\x86\amd64
     73 !ENDIF
     74 
     75 #
     76 # Customize to define the base path to VC8 for X64
     77 #
     78 !IF "$(USE_VC8_X64)" == "YES"
     79 !IFNDEF VCINSTALLDIR
     80 VC8_X64_PATH = c:\Program Files\Microsoft Visual Studio 8\VC\bin\x86_amd64
     81 !ELSE
     82 VC8_X64_PATH = $(VCINSTALLDIR)\bin\x86_amd64
     83 !ENDIF
     84 !ENDIF
     85 
     86 #
     87 # Customize to define the base path to VC8 for IPF
     88 #
     89 !IF "$(USE_VC8_IPF)" == "YES"
     90 !IFNDEF VCINSTALLDIR
     91 VC8_IPF_PATH = c:\Program Files\Microsoft Visual Studio 8\VC\bin\x86_ia64
     92 !ELSE
     93 VC8_IPF_PATH = $(VCINSTALLDIR)\bin\x86_ia64
     94 !ENDIF
     95 !ENDIF
     96