|
1 # |
|
2 # Copyright (c) 2004 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: Makefile to generate icon file for Video |
|
15 # Telephone application. |
|
16 # |
|
17 |
|
18 ifeq (WINS,$(findstring WINS, $(PLATFORM))) |
|
19 ZDIR=\epoc32\release\$(PLATFORM)\$(CFG)\z |
|
20 else |
|
21 ZDIR=\epoc32\data\z |
|
22 endif |
|
23 |
|
24 TARGETDIR=$(ZDIR)\system\apps\videotelui |
|
25 HEADERDIR=\epoc32\include |
|
26 ICONTARGETFILENAME=$(TARGETDIR)\videotelui.mif |
|
27 HEADERFILENAME=$(HEADERDIR)\videotelui.mbg |
|
28 |
|
29 do_nothing : |
|
30 @rem do_nothing |
|
31 |
|
32 MAKMAKE : do_nothing |
|
33 |
|
34 BLD : do_nothing |
|
35 |
|
36 CLEAN : do_nothing |
|
37 |
|
38 LIB : do_nothing |
|
39 |
|
40 CLEANLIB : do_nothing |
|
41 |
|
42 # ---------------------------------------------------------------------------- |
|
43 # NOTE 1: DO NOT DEFINE MASK FILE NAMES! They are included automatically by |
|
44 # MifConv if the mask detph is defined. |
|
45 # |
|
46 # NOTE 2: Usually, source paths should not be included in the bitmap |
|
47 # definitions. MifConv searches for the icons in all icon directories in a |
|
48 # predefined order, which is currently \s60\icons, \s60\bitmaps2. |
|
49 # The directory \s60\icons is included in the search only if the feature flag |
|
50 # __SCALABLE_ICONS is defined. |
|
51 # ---------------------------------------------------------------------------- |
|
52 |
|
53 RESOURCE : |
|
54 mifconv $(ICONTARGETFILENAME) /h$(HEADERFILENAME) \ |
|
55 /c8,8 qgn_graf_call_video_out_bg.bmp \ |
|
56 /c8 qgn_indi_call_video_blind_in.bmp \ |
|
57 /c8 qgn_indi_call_video_blind_out.bmp \ |
|
58 /1 qgn_graf_zoom_area.bmp \ |
|
59 /c8,1 qgn_indi_zoom_dir.bmp \ |
|
60 /c8 qgn_indi_zoom_min.bmp \ |
|
61 /c8 qgn_indi_zoom_max.bmp \ |
|
62 /8 qgn_indi_call_video_blind_in_mask_icon.bmp \ |
|
63 /8 qgn_indi_call_video_blind_out_mask_icon.bmp \ |
|
64 /c8 qgn_indi_tb_camera_main.bmp \ |
|
65 /c8 qgn_indi_tb_camera_secondary.bmp \ |
|
66 /c8 qgn_indi_tb_gallery.bmp \ |
|
67 /c8 qgn_indi_tb_microphone_mute.bmp \ |
|
68 /c8 qgn_indi_tb_microphone_unmute.bmp \ |
|
69 /c8 qgn_indi_tb_swap_images.bmp \ |
|
70 /c8 qgn_indi_tb_video.bmp \ |
|
71 /c8 qgn_indi_tb_video_disable.bmp \ |
|
72 /c8 qgn_indi_tb_zoom.bmp \ |
|
73 /c8 qgn_indi_cams_tb_capture.bmp \ |
|
74 /c8 qgn_indi_tb_ihf_on.bmp \ |
|
75 /c8 qgn_indi_tb_handset.bmp \ |
|
76 /c8 qgn_indi_tb_bthf.bmp |
|
77 |
|
78 |
|
79 FREEZE : do_nothing |
|
80 |
|
81 SAVESPACE : do_nothing |
|
82 |
|
83 RELEASABLES : |
|
84 @echo $(HEADERFILENAME)&& \ |
|
85 @echo $(ICONTARGETFILENAME) |
|
86 |
|
87 FINAL : do_nothing |
|
88 |
|
89 # End of File |