1## @file 2# DataSink Application 3# 4# Copyright (c) 2011-2012, Intel Corporation 5# All rights reserved. This program and the accompanying materials 6# are licensed and made available under the terms and conditions of the BSD License 7# which accompanies this distribution. The full text of the license may be found at 8# http://opensource.org/licenses/bsd-license.php 9# 10# THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS, 11# WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED. 12# 13## 14 15 16[Defines] 17 INF_VERSION = 0x00010005 18 BASE_NAME = DataSink 19 FILE_GUID = A85DCA1B-198F-4e14-A673-874264687E85 20 MODULE_TYPE = UEFI_APPLICATION 21 VERSION_STRING = 1.0 22 ENTRY_POINT = ShellCEntryLib 23 24# 25# The following information is for reference only and not required by the build tools. 26# 27# VALID_ARCHITECTURES = IA32 X64 IPF EBC 28# 29 30[Sources] 31 DataSink.c 32 33 34[Pcd] 35 gAppPkgTokenSpaceGuid.DataSource_Port 36 37 38[Packages] 39 AppPkg/AppPkg.dec 40 MdePkg/MdePkg.dec 41 ShellPkg/ShellPkg.dec 42 StdLib/StdLib.dec 43 44 45[LibraryClasses] 46 BaseMemoryLib 47 BsdSocketLib 48 DebugLib 49 EfiSocketLib 50 LibC 51 LibMath 52 ShellCEntryLib 53 UefiBootServicesTableLib 54 UefiLib 55# UseSocketDxe 56 57[BuildOptions] 58 INTEL:*_*_*_CC_FLAGS = /Qdiag-disable:181,186 59 MSFT:*_*_*_CC_FLAGS = /Od 60 GCC:*_*_*_CC_FLAGS = -O0 -Wno-unused-variable 61 62