• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1## @file
2# LuaLib.inf
3#
4#  Copyright (c) 2014, Emulex Corporation  3333 Susan Street, Costa Mesa, CA 92626
5#  Permission is hereby granted, free of charge, to any person obtaining a copy
6#  of this software and associated documentation files (the "Software"), to deal
7#  in the Software without restriction, including without limitation the rights
8#  to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9#  copies of the Software, and to permit persons to whom the Software is
10#  furnished to do so, subject to the following conditions:
11#
12#  The above copyright notice and this permission notice shall be included in
13#  all copies or substantial portions of the Software.
14#
15#  THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16#  IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17#  FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18#  AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19#  LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20#  OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
21#  THE SOFTWARE.
22#
23##
24
25[Defines]
26  INF_VERSION       = 0x00010006
27  BASE_NAME         = LuaLib
28  FILE_GUID         = 4e38555c-4f92-20c5-a563-fe907585662d
29  MODULE_TYPE       = UEFI_APPLICATION
30  VERSION_STRING    = 0.1
31  LIBRARY_CLASS     = LuaLib
32
33[Sources]
34  src/lapi.c
35  src/lauxlib.c
36  src/lbaselib.c
37  src/lbitlib.c
38  src/lcode.c
39  src/lcorolib.c
40  src/lctype.c
41  src/ldblib.c
42  src/ldebug.c
43  src/ldo.c
44  src/ldump.c
45  src/lfunc.c
46  src/lgc.c
47  src/linit.c
48  src/liolib.c
49  src/llex.c
50  src/lmathlib.c
51  src/lmem.c
52  src/loadlib.c
53  src/lobject.c
54  src/lopcodes.c
55  src/loslib.c
56  src/lparser.c
57  src/lstate.c
58  src/lstring.c
59  src/lstrlib.c
60  src/ltable.c
61  src/ltablib.c
62  src/ltm.c
63  src/lundump.c
64  src/lvm.c
65  src/lzio.c
66
67[Packages]
68  StdLib/StdLib.dec
69  MdePkg/MdePkg.dec
70
71[BuildOptions]
72    MSFT:*_*_*_CC_FLAGS   = /Oi- /wd4702
73