1## @file
2# acpidump.inf
3#
4#  Copyright (c) 2016, Intel Corporation. All rights reserved.
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##
15
16[Defines]
17  INF_VERSION                    = 0x00010005
18  BASE_NAME                      = acpidump
19  FILE_GUID                      = bf942c9a-2942-11e6-9a64-0024e8c6d30e
20  MODULE_TYPE                    = UEFI_APPLICATION
21  VERSION_STRING                 = 1.0
22  ENTRY_POINT                    = UefiMain
23
24[Sources]
25  tools/acpidump/apdump.c
26  tools/acpidump/apfiles.c
27  tools/acpidump/apmain.c
28  common/cmfsize.c
29  common/getopt.c
30  os_specific/efi/oseficlib.c
31  os_specific/efi/osefitbl.c
32  os_specific/efi/osefixf.c
33  components/tables/tbprint.c
34  components/tables/tbxfroot.c
35  components/utilities/utascii.c
36  components/utilities/utbuffer.c
37  components/utilities/utclib.c
38  components/utilities/utdebug.c
39  components/utilities/utexcep.c
40  components/utilities/utglobal.c
41  components/utilities/uthex.c
42  components/utilities/utmath.c
43  components/utilities/utnonansi.c
44  components/utilities/utprint.c
45  components/utilities/utstring.c
46  components/utilities/utstrsuppt.c
47  components/utilities/utstrtoul64.c
48  components/utilities/utxferror.c
49
50[Packages]
51  AcpiPkg/AcpiPkg.dec
52  MdePkg/MdePkg.dec
53
54[LibraryClasses]
55  UefiApplicationEntryPoint
56  BaseLib
57
58[BuildOptions]
59  MSFT:*_*_IA32_CC_FLAGS = /GL- /D_EDK2_EFI /DUSE_MS_ABI /D__i386__ /DACPI_DUMP_APP
60  MSFT:*_*_X64_CC_FLAGS  = /GL- /D_EDK2_EFI /DUSE_MS_ABI /D__x86_64__ /DACPI_DUMP_APP
61  GCC:*_*_IA32_CC_FLAGS  = -U__linux__ -U_LINUX -D_EDK2_EFI -DACPI_DUMP_APP -fno-builtin -iwithprefix include
62  GCC:*_*_X64_CC_FLAGS   = -U__linux__ -U_LINUX -D_EDK2_EFI -DACPI_DUMP_APP -fno-builtin -iwithprefix include
63