|
1 #/* |
|
2 # * Name : LandmarksIcon.mk |
|
3 # * Description : Icon makefile |
|
4 # * Project : This file is part of OpenMAR, an Open Mobile Augmented Reality browser |
|
5 # * Website : http://OpenMAR.org |
|
6 # * |
|
7 # * Copyright (c) 2010 David Caabeiro |
|
8 # * |
|
9 # * All rights reserved. This program and the accompanying materials are made available |
|
10 # * under the terms of the Eclipse Public License v1.0 which accompanies this |
|
11 # * distribution, and is available at http://www.eclipse.org/legal/epl-v10.html |
|
12 # * |
|
13 # */ |
|
14 |
|
15 ifeq (WINS,$(findstring WINS, $(PLATFORM))) |
|
16 ZDIR=$(EPOCROOT)epoc32\release\$(PLATFORM)\$(CFG)\Z |
|
17 else |
|
18 ZDIR=$(EPOCROOT)epoc32\data\z |
|
19 endif |
|
20 |
|
21 TARGETDIR=$(ZDIR)\resource\apps |
|
22 ICONTARGETFILENAME=$(TARGETDIR)\Landmarks_0x2002E1AF.mif |
|
23 |
|
24 HEADERDIR=$(EPOCROOT)epoc32\include |
|
25 HEADERFILENAME=$(HEADERDIR)\Landmarks_0x2002E1AF.mbg |
|
26 |
|
27 ICONDIR=..\renderer\gfx |
|
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: if you have JUSTINTIME enabled for your S60 3rd FP1 or newer SDK |
|
44 # and this command crashes, consider adding "/X" to the command line. |
|
45 # 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> |
|
46 # ---------------------------------------------------------------------------- |
|
47 |
|
48 RESOURCE : $(ICONTARGETFILENAME) |
|
49 |
|
50 $(ICONTARGETFILENAME) : |
|
51 mifconv $(ICONTARGETFILENAME) /h$(HEADERFILENAME) \ |
|
52 /c24,8 $(ICONDIR)\Icon.svg |
|
53 |
|
54 FREEZE : do_nothing |
|
55 |
|
56 SAVESPACE : do_nothing |
|
57 |
|
58 RELEASABLES : |
|
59 @echo $(HEADERFILENAME)&& \ |
|
60 @echo $(ICONTARGETFILENAME) |
|
61 |
|
62 FINAL : do_nothing |
|
63 |