1## @file
2#  Instance of Cache Maintenance Library using Base Library services.
3#
4#  Cache Maintenance Library that uses Base Library services to maintain caches.
5#  This library assumes there are no chipset dependencies required to maintain caches.
6#
7#  Copyright (c) 2007 - 2015, Intel Corporation. All rights reserved.<BR>
8#  Portions copyright (c) 2008 - 2009, Apple Inc. All rights reserved.<BR>
9#
10#  This program and the accompanying materials
11#  are licensed and made available under the terms and conditions of the BSD License
12#  which accompanies this distribution. The full text of the license may be found at
13#  http://opensource.org/licenses/bsd-license.php.
14#  THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
15#  WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
16#
17#
18##
19
20[Defines]
21  INF_VERSION                    = 0x00010005
22  BASE_NAME                      = BaseCacheMaintenanceLib
23  MODULE_UNI_FILE                = BaseCacheMaintenanceLib.uni
24  FILE_GUID                      = 123dd843-57c9-4158-8418-ce68b3944ce7
25  MODULE_TYPE                    = BASE
26  VERSION_STRING                 = 1.1
27  LIBRARY_CLASS                  = CacheMaintenanceLib
28
29
30#
31#  VALID_ARCHITECTURES           = IA32 X64 IPF EBC ARM AARCH64
32#
33
34[Sources.IA32]
35  X86Cache.c
36
37[Sources.X64]
38  X86Cache.c
39
40[Sources.IPF]
41  IpfCache.c
42
43[Sources.EBC]
44  EbcCache.c
45
46[Sources.ARM]
47  ArmCache.c
48
49[Sources.AARCH64]
50  ArmCache.c
51
52[Packages]
53  MdePkg/MdePkg.dec
54
55[LibraryClasses]
56  BaseLib
57  DebugLib
58
59[LibraryClasses.Ipf]
60  PalLib
61
62