1 | ## @file
|
---|
2 | # Program to generate an arith.h for use with the gdtoa binary to decimal and decimal to binary
|
---|
3 | # conversion library.
|
---|
4 | #
|
---|
5 | # Copyright (c) 2014, Intel Corporation. All rights reserved.<BR>
|
---|
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.
|
---|
10 | #
|
---|
11 | # THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
|
---|
12 | # WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
|
---|
13 | ##
|
---|
14 |
|
---|
15 | [Defines]
|
---|
16 | INF_VERSION = 0x00010006
|
---|
17 | BASE_NAME = ArithChk
|
---|
18 | FILE_GUID = B6C0DCB6-434E-4BEC-BDAC-8EE7ED8A4EC8
|
---|
19 | MODULE_TYPE = UEFI_APPLICATION
|
---|
20 | VERSION_STRING = 0.1
|
---|
21 | ENTRY_POINT = ShellCEntryLib
|
---|
22 |
|
---|
23 | #
|
---|
24 | # VALID_ARCHITECTURES = IA32 X64
|
---|
25 | #
|
---|
26 |
|
---|
27 | [Sources]
|
---|
28 | arithchk.c
|
---|
29 |
|
---|
30 | [Packages]
|
---|
31 | StdLib/StdLib.dec
|
---|
32 | MdePkg/MdePkg.dec
|
---|
33 |
|
---|
34 | [LibraryClasses]
|
---|
35 | UefiLib
|
---|
36 | LibC
|
---|
37 | LibStdio
|
---|
38 | LibGdtoa
|
---|
39 |
|
---|
40 | [BuildOptions]
|
---|
41 | GCC:*_*_*_CC_FLAGS = -Wno-format-security
|
---|