1 ## @file 2 # GetNetByName Application 3 # 4 # Copyright (c) 2011-2012, Intel Corporation 5 # All rights reserved. This program and the accompanying materials 6 # are licensed and made available under the terms and conditions of the BSD License 7 # which accompanies this distribution. The full text of the license may be found at 8 # http://opensource.org/licenses/bsd-license.php 9 # 10 # THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS, 11 # WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED. 12 # 13 ## 14 15 16 [Defines] 17 INF_VERSION = 0x00010005 18 BASE_NAME = GetNetByName 19 FILE_GUID = DAF7B0E6-32DE-4619-B63A-2B9173A75B14 20 MODULE_TYPE = UEFI_APPLICATION 21 VERSION_STRING = 1.0 22 ENTRY_POINT = ShellCEntryLib 23 24 # 25 # The following information is for reference only and not required by the build tools. 26 # 27 # VALID_ARCHITECTURES = IA32 X64 IPF EBC 28 # 29 30 [Sources] 31 GetNetByName.c 32 33 34 [Packages] 35 MdePkg/MdePkg.dec 36 ShellPkg/ShellPkg.dec 37 StdLib/StdLib.dec 38 39 40 [LibraryClasses] 41 BaseMemoryLib 42 BsdSocketLib 43 DebugLib 44 DevMedia 45 EfiSocketLib 46 LibC 47 LibMath 48 LibNetUtil 49 ShellCEntryLib 50 UefiBootServicesTableLib 51 UefiLib 52 # UseSocketDxe 53 54 [BuildOptions] 55 INTEL:*_*_*_CC_FLAGS = /Qdiag-disable:181,186 56 MSFT:*_*_*_CC_FLAGS = /Od 57 GCC:*_*_*_CC_FLAGS = -O0 -Wno-unused-variable 58 59