1## @file
2#
3# Character Classification library implementing the functionality described
4# by the <ctype.h> header of the C Standard Library, ISO/IEC 9899:1990 with
5# Amendment 1 (C95).
6#
7# Copyright (c) 2010, Intel Corporation. All rights reserved.<BR>
8# This program and the accompanying materials are licensed and made available
9# under the terms and conditions of the BSD License which accompanies this
10# distribution. The full text of the license may be found at
11# http://opensource.org/licenses/bsd-license.php
12#
13# THIS PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
14# WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
15#
16#
17##
18
19[Defines]
20  INF_VERSION                    = 0x00010005
21  BASE_NAME                      = LibCtype
22  FILE_GUID                      = dcc64575-fa7d-4b7b-b1ad-48427c97c74d
23  MODULE_TYPE                    = UEFI_APPLICATION
24  VERSION_STRING                 = 1.0
25  LIBRARY_CLASS                  = LibCtype
26
27#
28# The following information is for reference only and not required by the build tools.
29#
30#  VALID_ARCHITECTURES           = IA32 X64 IPF
31#
32
33[Sources]
34  iCtype.c
35  CClass.c
36  CConv.c
37
38[Packages]
39  StdLib/StdLib.dec
40  StdLibPrivateInternalFiles/DoNotUse.dec
41  MdePkg/MdePkg.dec
42
43################################################################
44#
45# The Build Options, below, are only used when building the C library.
46# DO NOT use them when building your application!
47# Nasty things could happen if you do.
48#
49[BuildOptions]
50  MSFT:*_*_*_CC_FLAGS    = /GL-
51