]>
Commit | Line | Data |
---|---|---|
c9f4d483 | 1 | ## @file\r |
2 | # Program to generate an arith.h for use with the gdtoa binary to decimal and decimal to binary\r | |
3 | # conversion library.\r | |
4 | #\r | |
5 | # Copyright (c) 2014, Intel Corporation. All rights reserved.<BR>\r | |
6 | # This program and the accompanying materials\r | |
7 | # are licensed and made available under the terms and conditions of the BSD License\r | |
8 | # which accompanies this distribution. The full text of the license may be found at\r | |
9 | # http://opensource.org/licenses/bsd-license.\r | |
10 | #\r | |
11 | # THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,\r | |
12 | # WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.\r | |
13 | ##\r | |
14 | \r | |
15 | [Defines]\r | |
16 | INF_VERSION = 0x00010006\r | |
17 | BASE_NAME = ArithChk\r | |
18 | FILE_GUID = B6C0DCB6-434E-4BEC-BDAC-8EE7ED8A4EC8\r | |
19 | MODULE_TYPE = UEFI_APPLICATION\r | |
20 | VERSION_STRING = 0.1\r | |
21 | ENTRY_POINT = ShellCEntryLib\r | |
22 | \r | |
23 | #\r | |
24 | # VALID_ARCHITECTURES = IA32 X64\r | |
25 | #\r | |
26 | \r | |
27 | [Sources]\r | |
28 | arithchk.c\r | |
29 | \r | |
30 | [Packages]\r | |
31 | StdLib/StdLib.dec\r | |
32 | MdePkg/MdePkg.dec\r | |
33 | \r | |
34 | [LibraryClasses]\r | |
35 | UefiLib\r | |
36 | LibC\r | |
37 | LibStdio\r | |
38 | LibGdtoa\r | |
39 | \r | |
40 | [BuildOptions]\r | |
41 | GCC:*_*_*_CC_FLAGS = -Wno-format-security\r |