0
|
1 |
#
|
|
2 |
# Copyright (c) 2010 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 "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: This is file for creating .mif file (scalable icon)
|
|
15 |
#
|
|
16 |
# ============================================================================
|
|
17 |
# Name : Icons_scalable_dc.mk
|
|
18 |
# Part of : UserEmulator
|
|
19 |
#
|
|
20 |
# Description: This is file for creating .mif file (scalable icon)
|
|
21 |
#
|
|
22 |
# ============================================================================
|
|
23 |
|
|
24 |
|
|
25 |
ifeq (WINS,$(findstring WINS, $(PLATFORM)))
|
|
26 |
ZDIR=$(EPOCROOT)epoc32\release\$(PLATFORM)\$(CFG)\Z
|
|
27 |
else
|
|
28 |
ZDIR=$(EPOCROOT)epoc32\data\z
|
|
29 |
endif
|
|
30 |
|
|
31 |
TARGETDIR=$(ZDIR)\resource\apps
|
|
32 |
ICONTARGETFILENAME=$(TARGETDIR)\UserEmulator_0x2001C3AF.mif
|
|
33 |
|
|
34 |
ICONDIR=..\gfx
|
|
35 |
|
|
36 |
do_nothing :
|
|
37 |
@rem do_nothing
|
|
38 |
|
|
39 |
MAKMAKE : do_nothing
|
|
40 |
|
|
41 |
BLD : do_nothing
|
|
42 |
|
|
43 |
CLEAN : do_nothing
|
|
44 |
|
|
45 |
LIB : do_nothing
|
|
46 |
|
|
47 |
CLEANLIB : do_nothing
|
|
48 |
|
|
49 |
# ----------------------------------------------------------------------------
|
|
50 |
# NOTE: if you have JUSTINTIME enabled for your S60 3rd FP1 or newer SDK
|
|
51 |
# and this command crashes, consider adding "/X" to the command line.
|
|
52 |
# See <http://forum.nokia.com/document/Forum_Nokia_Technical_Library_v1_35/contents/FNTL/Build_process_fails_at_mif_file_creation_in_S60_3rd_Ed_FP1_SDK.htm>
|
|
53 |
# ----------------------------------------------------------------------------
|
|
54 |
|
|
55 |
RESOURCE : $(ICONTARGETFILENAME)
|
|
56 |
|
|
57 |
$(ICONTARGETFILENAME) : $(ICONDIR)\qgn_menu_UserEmulator.svg
|
|
58 |
mifconv $(ICONTARGETFILENAME) \
|
|
59 |
/c32 $(ICONDIR)\qgn_menu_UserEmulator.svg
|
|
60 |
|
|
61 |
FREEZE : do_nothing
|
|
62 |
|
|
63 |
SAVESPACE : do_nothing
|
|
64 |
|
|
65 |
RELEASABLES :
|
|
66 |
@echo $(ICONTARGETFILENAME)
|
|
67 |
|
|
68 |
FINAL : do_nothing
|
|
69 |
|