2010-02-24 01:21:16 +01:00
|
|
|
## @file
|
2009-06-25 10:40:49 +02:00
|
|
|
# LzmaCustomDecompressLib produces LZMA custom decompression algorithm.
|
2009-05-01 02:28:19 +02:00
|
|
|
#
|
2009-06-25 10:40:49 +02:00
|
|
|
# It is based on the LZMA SDK 4.65.
|
|
|
|
# LZMA SDK 4.65 was placed in the public domain on 2009-02-03.
|
|
|
|
# It was released on the http://www.7-zip.org/sdk.html website.
|
|
|
|
#
|
2010-02-24 01:21:16 +01:00
|
|
|
# Copyright (c) 2009 - 2010, Intel Corporation.
|
2009-05-01 02:28:19 +02:00
|
|
|
#
|
|
|
|
# All rights reserved. This program and the accompanying materials
|
|
|
|
# are licensed and made available under the terms and conditions of the BSD License
|
|
|
|
# which accompanies this distribution. The full text of the license may be found at
|
|
|
|
# http://opensource.org/licenses/bsd-license.php
|
|
|
|
# THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
|
|
|
|
# WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
|
|
|
|
#
|
|
|
|
#
|
2010-02-24 01:21:16 +01:00
|
|
|
##
|
2009-05-01 02:28:19 +02:00
|
|
|
|
|
|
|
[Defines]
|
|
|
|
INF_VERSION = 0x00010005
|
2009-05-04 22:00:04 +02:00
|
|
|
BASE_NAME = LzmaDecompressLib
|
2009-05-01 02:28:19 +02:00
|
|
|
FILE_GUID = 35194660-7421-44ad-9636-e44885f092d1
|
|
|
|
MODULE_TYPE = BASE
|
|
|
|
VERSION_STRING = 1.0
|
2009-12-07 05:48:29 +01:00
|
|
|
LIBRARY_CLASS = NULL
|
2009-05-01 02:28:19 +02:00
|
|
|
CONSTRUCTOR = LzmaDecompressLibConstructor
|
|
|
|
|
|
|
|
#
|
|
|
|
# The following information is for reference only and not required by the build tools.
|
|
|
|
#
|
|
|
|
# VALID_ARCHITECTURES = IA32 X64 IPF EBC
|
|
|
|
#
|
|
|
|
|
2010-02-24 01:21:16 +01:00
|
|
|
[Sources]
|
2009-05-04 22:00:04 +02:00
|
|
|
LzmaDecompress.c
|
|
|
|
Sdk/C/LzFind.c
|
|
|
|
Sdk/C/LzmaDec.c
|
|
|
|
GuidedSectionExtraction.c
|
2009-06-25 10:40:49 +02:00
|
|
|
UefiLzma.h
|
|
|
|
LzmaDecompressLibInternal.h
|
2009-05-01 02:28:19 +02:00
|
|
|
|
|
|
|
[Packages]
|
|
|
|
MdePkg/MdePkg.dec
|
|
|
|
IntelFrameworkModulePkg/IntelFrameworkModulePkg.dec
|
|
|
|
|
|
|
|
[Guids]
|
2009-06-25 10:40:49 +02:00
|
|
|
gLzmaCustomDecompressGuid ## PRODUCED ## GUID specifies LZMA custom decompress algorithm.
|
2009-05-01 02:28:19 +02:00
|
|
|
|
|
|
|
[LibraryClasses]
|
|
|
|
BaseLib
|
|
|
|
DebugLib
|
|
|
|
BaseMemoryLib
|
|
|
|
ExtractGuidedSectionLib
|
|
|
|
|