1 ## @file 2 # INF file for building the Container library. 3 # 4 # Various types of containers are implemented within this library. 5 # Types of containers may be Queues (FIFO, LIFO, etc.), hash tables, etc. 6 # 7 # Copyright (c) 2012, Intel Corporation. All rights reserved.<BR> 8 # This program and the accompanying materials are licensed and made available 9 # under the terms and conditions of the BSD License which accompanies this 10 # distribution. The full text of the license may be found at 11 # http://opensource.org/licenses/bsd-license.php 12 # 13 # THIS PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS, 14 # WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED. 15 # 16 ## 17 18 [Defines] 19 INF_VERSION = 0x00010005 20 BASE_NAME = LibContainer 21 FILE_GUID = 92f7436e-7395-4da1-a7be-f352f0bcd79c 22 MODULE_TYPE = UEFI_APPLICATION 23 VERSION_STRING = 1.0 24 LIBRARY_CLASS = LibContainer 25 26 # 27 # The following information is for reference only and not required by the build tools. 28 # 29 # VALID_ARCHITECTURES = IA32 X64 30 # 31 32 [Sources] 33 Queues/Fifo.c 34 Common/ModuloUtil.c 35 36 [LibraryClasses] 37 BaseLib 38 BaseMemoryLib 39 MemoryAllocationLib 40 LibC 41 LibWchar 42 43 [Packages] 44 MdePkg/MdePkg.dec 45 StdLib/StdLib.dec 46 StdLibPrivateInternalFiles/DoNotUse.dec 47