sftemplateswizard/com.nokia.s60tools.templates.tests/data/templates/icons.mk
changeset 0 61163b28edca
equal deleted inserted replaced
-1:000000000000 0:61163b28edca
       
     1 # ============================================================================
       
     2 #  Name        : icons.mk
       
     3 #  Part of     : ?Subsystem_name / ?Module_name       *** Info from the SWAD
       
     4 #  Description : icons makefile for project ?myapp
       
     5 #  Version     : %version: % << Don't touch! Updated by Synergy at check-out.
       
     6 #
       
     7 #  Copyright © ?year-?year Nokia Corporation and/or its subsidiary(-ies). 
       
     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 # ============================================================================
       
    19 # Template version: 4.0.1
       
    20 
       
    21 *** INSTRUCTIONS TO THE TEMPLATE USER:
       
    22 
       
    23 *** REMEMBER TO CHANGE THIS TEMPLATE FILE NAME TO BE UNIQUE WITHIN
       
    24 *** ARCHITECTURE DOMAIN
       
    25 *** DO NOT USE THE DEFAULT NAME
       
    26 
       
    27 *** This template follows the S60 coding conventions
       
    28 *** (S60_Coding_Conventions.doc).  Remove all unneeded declarations
       
    29 *** and definitions before checking the file in!  Also remove the
       
    30 *** template's usage instructions, that is, everything that begins
       
    31 *** with "***".
       
    32 
       
    33 *** The copyright years should be < the year of the file's creation >
       
    34 *** - < the year of the file's latest update >.
       
    35 
       
    36 *** Words that begin with "?" are for you to replace with your own
       
    37 *** identifiers, filenames, or comments.
       
    38 
       
    39 *** Filenames and pathnames must be completely in lowercase.
       
    40 
       
    41 *** Commands must be preceded by exactly one tab character.  Commands
       
    42 *** can continue to the next line if the last character on the line is
       
    43 *** \.
       
    44 
       
    45 
       
    46 ifeq (WINS,$(findstring WINS,$(PLATFORM)))
       
    47 ZDIR=$(EPOCROOT)epoc32\release\$(PLATFORM)\$(CFG)\z
       
    48 else
       
    49 ZDIR=$(EPOCROOT)epoc32\data\z
       
    50 endif
       
    51 
       
    52 TARGETDIR=$(ZDIR)\resource\apps
       
    53 HEADERDIR=$(EPOCROOT)epoc32\include
       
    54 ICONTARGETFILENAME=$(TARGETDIR)\?myapp.mif
       
    55 HEADERFILENAME=$(HEADERDIR)\?myapp.mbg
       
    56 
       
    57 MAKMAKE :
       
    58 	mifconv $(ICONTARGETFILENAME) /h$(HEADERFILENAME) \
       
    59 		/c8,1 qgn_myapp_icon_1 \
       
    60 		/c8,1 qgn_myapp_icon_2
       
    61 
       
    62 BLD : ;
       
    63 
       
    64 CLEAN : ;
       
    65 
       
    66 LIB : ;
       
    67 
       
    68 CLEANLIB : ;
       
    69 
       
    70 RESOURCE : ;
       
    71 
       
    72 FREEZE : ;
       
    73 
       
    74 SAVESPACE : ;
       
    75 
       
    76 RELEASABLES :
       
    77 	@echo $(HEADERFILENAME)&& \
       
    78 	@echo $(ICONTARGETFILENAME)
       
    79 
       
    80 FINAL : ;