0
|
1 |
# ============================================================================
|
|
2 |
# Name : icons_menu.mk
|
|
3 |
# Part of : ?Subsystem_name / ?Module_name
|
|
4 |
# Description : menu icons makefile for project ?myapp
|
|
5 |
# Version : %version: %
|
|
6 |
#
|
|
7 |
# Copyright © ?year-?year ?Company_copyright.
|
|
8 |
# All rights reserved.
|
|
9 |
# This component and the accompanying materials are made available
|
|
10 |
# under the terms of the License "?License"
|
|
11 |
# which accompanies this distribution, and is available
|
|
12 |
# at the URL "?LicenseUrl".
|
|
13 |
#
|
|
14 |
# Initial Contributors:
|
|
15 |
# ?Company_name - initial contribution.
|
|
16 |
#
|
|
17 |
# Contributors:
|
|
18 |
# ?Company_name
|
|
19 |
# ============================================================================
|
|
20 |
# Template version: 4.1.1
|
|
21 |
|
|
22 |
|
|
23 |
ifeq (WINS,$(findstring WINS, $(PLATFORM)))
|
|
24 |
ZDIR=$(EPOCROOT)epoc32\release\$(PLATFORM)\$(CFG)\z
|
|
25 |
else
|
|
26 |
ZDIR=$(EPOCROOT)epoc32\data\z
|
|
27 |
endif
|
|
28 |
|
|
29 |
TARGETDIR=$(ZDIR)\resource\apps
|
|
30 |
ICONTARGETFILENAME=$(TARGETDIR)\?smallmyapp_aif.mif
|
|
31 |
|
|
32 |
|
|
33 |
do_nothing :
|
|
34 |
@rem do_nothing
|
|
35 |
|
|
36 |
MAKMAKE : do_nothing
|
|
37 |
|
|
38 |
BLD : do_nothing
|
|
39 |
|
|
40 |
CLEAN :
|
|
41 |
@if exist $(ICONTARGETFILENAME) erase $(ICONTARGETFILENAME)
|
|
42 |
|
|
43 |
LIB : do_nothing
|
|
44 |
|
|
45 |
CLEANLIB : do_nothing
|
|
46 |
|
|
47 |
RESOURCE : $(ICONTARGETFILENAME)
|
|
48 |
|
|
49 |
$(ICONTARGETFILENAME) : qgn_menu_?smallmyapp.svg
|
|
50 |
mifconv $(ICONTARGETFILENAME) \
|
|
51 |
/c8,8 qgn_menu_?smallmyapp.svg
|
|
52 |
|
|
53 |
FREEZE : do_nothing
|
|
54 |
|
|
55 |
SAVESPACE : do_nothing
|
|
56 |
|
|
57 |
RELEASABLES :
|
|
58 |
@echo $(ICONTARGETFILENAME)
|
|
59 |
|
|
60 |
FINAL : do_nothing |