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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
|
#*************************************************************************
#*************************************************************************
#** **
#** (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/Modules/SMM/PowerButton/PowerButton.mak 5 9/20/11 3:12p Markw $
#
# $Revision: 5 $
#
# $Date: 9/20/11 3:12p $
#**********************************************************************
# Revision History
# ----------------
# $Log: /Alaska/SOURCE/Modules/SMM/PowerButton/PowerButton.mak $
#
# 5 9/20/11 3:12p Markw
# [TAG] EIP67890
# [Category] Spec Update
# [Severity] Normal
# [Description] Support power button handler in PI 1.1
#
# [Files] PowerButton.c, PowerButton.mak, PowerButton. dxs
#
# 4 7/08/09 8:24p Markw
# Update header.
#
# 3 5/30/07 5:29p Markw
# Use library function to shutdown.
#
# 2 12/02/05 11:48a Felixp
#
# 1 1/28/05 4:33p Sivagarn
# Power Button SMM Component - Initial check in
#
#
#**********************************************************************
#<AMI_FHDR_START>
#---------------------------------------------------------------------------
#
# Name: PowerButton.MAK
#
# Description: Make file for the SMM power button handler code
#
#---------------------------------------------------------------------------
#<AMI_FHDR_END>
!IFNDEF PI_SPECIFICATION_VERSION
PI_SPECIFICATION_VERSION=0
!ENDIF
all : PowerButton
PowerButton : $(BUILD_DIR)\PowerButton.mak PowerButtonBin
$(BUILD_DIR)\PowerButton.mak : $(POWER_BUTTON_DIR)\PowerButton.cif $(POWER_BUTTON_DIR)\$(@B).mak $(BUILD_RULES)
$(CIF2MAK) $(POWER_BUTTON_DIR)\PowerButton.cif $(CIF2MAK_DEFAULTS)
PowerButtonBin : $(AMIDXELIB) $(AMICSPLib)
$(MAKE) /$(MAKEFLAGS) $(BUILD_DEFAULTS)\
/f $(BUILD_DIR)\PowerButton.mak all\
GUID=E566B097-4378-485f-91D0-1C097C190CE2\
ENTRY_POINT=InitPowerButton\
!IF $(PI_SPECIFICATION_VERSION) < 0x1000A
TYPE=BS_DRIVER\
!ELSE
TYPE=SMM_DRIVER\
!ENDIF
COMPRESS=1
#*************************************************************************
#*************************************************************************
#** **
#** (C)Copyright 1985-2011, American Megatrends, Inc. **
#** **
#** All Rights Reserved. **
#** **
#** 5555 Oakbrook Parkway, Suite 200, Norcross, GA 30093 **
#** **
#** Phone: (770)-246-8600 **
#** **
#*************************************************************************
#*************************************************************************
|