1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859 |
- /*++
- Copyright (c) 2014 Minoca Corp.
- This file is licensed under the terms of the GNU General Public License
- version 3. Alternative licensing terms are available. Contact
- info@minocacorp.com for details. See the LICENSE file at the root of this
- project for complete licensing information.
- Module Name:
- PL-110 Video
- Abstract:
- This library contains the ARM PL-110 Video Controller device support.
- Author:
- Evan Green 7-Apr-2014
- Environment:
- Firmware
- --*/
- from menv import staticLibrary;
- function build() {
- var entries;
- var includes;
- var lib;
- var sources;
- var sourcesConfig;
- sources = [
- "pl110.c"
- ];
- includes = [
- "$S/uefi/include"
- ];
- sourcesConfig = {
- "CFLAGS": ["-fshort-wchar"],
- };
- lib = {
- "label": "pl110",
- "inputs": sources,
- "sources_config": sourcesConfig,
- "includes": includes
- };
- entries = staticLibrary(lib);
- return entries;
- }
|