equal
deleted
inserted
replaced
|
1 # |
|
2 # Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies). |
|
3 # All rights reserved. |
|
4 # This component and the accompanying materials are made available |
|
5 # under the terms of the License "Eclipse Public License v1.0" |
|
6 # which accompanies this distribution, and is available |
|
7 # at the URL "http://www.eclipse.org/legal/epl-v10.html". |
|
8 # |
|
9 # Initial Contributors: |
|
10 # Nokia Corporation - initial contribution. |
|
11 # |
|
12 # Contributors: |
|
13 # |
|
14 # Description: |
|
15 # |
|
16 |
|
17 |
|
18 do_nothing : |
|
19 @echo --- |
|
20 @echo Do nothing |
|
21 @echo --- |
|
22 |
|
23 ifeq (WINSCW,$(findstring WINSCW, $(PLATFORM))) |
|
24 MAKMAKE : do_nothing |
|
25 |
|
26 else |
|
27 MAKMAKE : |
|
28 @echo --- |
|
29 @echo ARMV5 |
|
30 @echo --- |
|
31 endif |
|
32 |
|
33 ifeq (WINSCW,$(findstring WINSCW, $(PLATFORM))) |
|
34 BLD : do_nothing |
|
35 else |
|
36 ifeq (UREL,$(findstring UREL, $(CFG))) |
|
37 BLD : |
|
38 @echo --- |
|
39 $(EPOCROOT)epoc32\tools\makesis -v cenrep_rel6.pkg cenrep.sis |
|
40 $(EPOCROOT)epoc32\tools\signsis cenrep.sis cenrep.sisx Nokia_RnDCert_02.der Nokia_RnDCert_02.key |
|
41 |
|
42 $(EPOCROOT)epoc32\tools\makesis -v Videocenter_Rel6.pkg Videocenter_Rel6.sis |
|
43 $(EPOCROOT)epoc32\tools\signsis Videocenter_Rel6.sis videocenter.sisx Nokia_RnDCert_02.der Nokia_RnDCert_02.key |
|
44 |
|
45 if exist Videocenter_Rel6.sis erase Videocenter_Rel6.sis |
|
46 if exist cenrep.sis erase cenrep.sis |
|
47 |
|
48 @echo --- |
|
49 else |
|
50 BLD : |
|
51 @echo --- |
|
52 @echo armv5 udeb |
|
53 @echo --- |
|
54 endif |
|
55 endif |
|
56 |
|
57 CLEAN : |
|
58 if exist Videocenter_Rel6.sis erase Videocenter_Rel6.sis |
|
59 if exist videocenter.sisx erase videocenter.sisx |
|
60 |
|
61 FINAL FREEZE LIB CLEANLIB RESOURCE RELEASABLES SAVESPACE : do_nothing |