1## @file 2# DataSource 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 = DataSource 19 FILE_GUID = 30EB0F26-FC0A-4fd2-B9C9-751EA2BB1980 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 DataSource.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 EfiSocketLib 49 DebugLib 50 LibC 51 ShellCEntryLib 52 UefiBootServicesTableLib 53 UefiLib 54# UseSocketDxe 55 56[Protocols] 57 gEfiTcp4ProtocolGuid 58 gEfiTcp4ServiceBindingProtocolGuid 59 60[BuildOptions] 61 INTEL:*_*_*_CC_FLAGS = /Qdiag-disable:181,186 62 MSFT:*_*_*_CC_FLAGS = /Od 63 GCC:*_*_*_CC_FLAGS = -O0 -Wno-unused-variable 64 65