blob: 1b747a1d7fdf636988ba1575f0892896ed1870be (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
|
#**********************************************************************
#**********************************************************************
#** **
#** (C)Copyright 1985-2011, American Megatrends, Inc. **
#** **
#** All Rights Reserved. **
#** **
#** 5555 Oakbrook Parkway, Suite 200, Norcross, GA 30093 **
#** **
#** Phone: (770)-246-8600 **
#** **
#**********************************************************************
#**********************************************************************
#**********************************************************************
# $Header: /Alaska/SOURCE/Core/Modules/HashService/HashService.mak 1 5/24/12 3:33p Artems $
#
# $Revision: 1 $
#
# $Date: 5/24/12 3:33p $
#**********************************************************************
# Revision History
# ----------------
# $Log: /Alaska/SOURCE/Core/Modules/HashService/HashService.mak $
#
# 1 5/24/12 3:33p Artems
# [TAG] EIP N/A
# [Category] New Feature
# [Description] Added HashService protocol infrastructure
# [Files] HashService.cif
# HashService.sdl
# HashService.mak
# HashService.c
#
#
#**********************************************************************
#<AMI_FHDR_START>
#
# Name: HashService.mak
#
# Description: Make file to create Hash Service Binding Driver
#
#<AMI_FHDR_END>
#**********************************************************************
CORE_DXEBin : $(BUILD_DIR)\HashService.obj
$(BUILD_DIR)\HashService.obj : $(HashService_DIR)\HashService.c
{$(HashService_DIR)}.c{$(BUILD_DIR)}.obj::
$(CC) $(CFLAGS) /Fo$(BUILD_DIR)\ $<
#**********************************************************************
#**********************************************************************
#** **
#** (C)Copyright 1985-2011, American Megatrends, Inc. **
#** **
#** All Rights Reserved. **
#** **
#** 5555 Oakbrook Parkway, Suite 200, Norcross, GA 30093 **
#** **
#** Phone: (770)-246-8600 **
#** **
#**********************************************************************
#**********************************************************************
|