1## @file 2# Standard C library: UEFI "system calls". 3# 4# Copyright (c) 2010 - 2014, Intel Corporation. All rights reserved.<BR> 5# 6# This program and the accompanying materials 7# are licensed and made available under the terms and conditions of the BSD License 8# which accompanies this distribution. The full text of the license may be found at 9# http://opensource.org/licenses/bsd-license.php. 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[Defines] 15 INF_VERSION = 0x00010005 16 BASE_NAME = LibUefi 17 FILE_GUID = 1dcff17c-aa53-4b78-b234-864027555035 18 MODULE_TYPE = UEFI_APPLICATION 19 VERSION_STRING = 1.05 20 LIBRARY_CLASS = LibUefi 21 LIBRARY_DESTRUCTOR = DestructMePlease 22 23# 24# VALID_ARCHITECTURES = IA32 X64 25# 26 27[Sources] 28 select.c 29 SysCalls.c 30 writev.c 31 Xform.c 32 compat.c 33 StubFunctions.c 34 35[Packages] 36 StdLib/StdLib.dec 37 StdLibPrivateInternalFiles/DoNotUse.dec 38 MdePkg/MdePkg.dec 39 ShellPkg/ShellPkg.dec 40 41[LibraryClasses] 42 UefiLib 43 BaseLib 44 BaseMemoryLib 45 MemoryAllocationLib 46 UefiBootServicesTableLib 47 ShellLib 48 LibC 49 LibLocale 50 LibString 51 LibTime 52 LibGen 53 DevUtility 54