blob: 15aaeece7f90b284ca65ed0206d65e0fd9b1b3d0 (
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 **
#** **
#*************************************************************************
#*************************************************************************
#<AMI_FHDR_START>
#-----------------------------------------------------------------------
#
# Name: RomImage.mak
#
# Description:
#
#-----------------------------------------------------------------------
#<AMI_FHDR_END>
!IFDEF ME_ROM_IMAGE_BUILD_SUPPORT
!IF $(ME_ROM_IMAGE_BUILD_SUPPORT) == 1
END: BUILD_ME
!IF "$(SecureMod_SUPPORT)"=="1"
BUILD_ME: $(FWCAPSULE_FILE_NAME) $(AMI_ROM)
!ELSE
BUILD_ME: $(AMI_ROM)
!ENDIF
@if exist Rom_*.bin @del /q Rom_*.bin
@if exist Rom00_*.bin @del /q Rom00_*.bin
@if exist Rom01_*.bin @del /q Rom01_*.bin
!IFDEF PfatServices_SUPPORT
!IF $(PfatServices_SUPPORT) == 1
@if exist AMIPFAT_*.bin @del /q AMIPFAT_*.bin
$(FITC_BUILD_PFAT_RULES)
!ELSE
$(FITC_BUILD_RULES)
!ENDIF
!ELSE
$(FITC_BUILD_RULES)
!ENDIF
!ENDIF
!ENDIF
#*************************************************************************
#*************************************************************************
#** **
#** (C)Copyright 1985-2011, American Megatrends, Inc. **
#** **
#** All Rights Reserved. **
#** **
#** 5555 Oakbrook Parkway, Suite 200, Norcross, GA 30093 **
#** **
#** Phone: (770)-246-8600 **
#** **
#*************************************************************************
#*************************************************************************
|