sftemplateswizard/com.nokia.s60tools.templates.tests/data/templates/icons.mk
changeset 0 61163b28edca
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/sftemplateswizard/com.nokia.s60tools.templates.tests/data/templates/icons.mk	Tue Jan 12 13:17:53 2010 -0600
@@ -0,0 +1,80 @@
+# ============================================================================
+#  Name        : icons.mk
+#  Part of     : ?Subsystem_name / ?Module_name       *** Info from the SWAD
+#  Description : icons makefile for project ?myapp
+#  Version     : %version: % << Don't touch! Updated by Synergy at check-out.
+#
+#  Copyright © ?year-?year Nokia Corporation and/or its subsidiary(-ies). 
+#  All rights reserved.
+#  This component and the accompanying materials are made available
+#  under the terms of the License "?License"
+#  which accompanies this distribution, and is available
+#  at the URL "?LicenseUrl".
+#
+#  Initial Contributors:
+#  ?Company_name - initial contribution.
+#
+#  Contributors:
+# ============================================================================
+# Template version: 4.0.1
+
+*** INSTRUCTIONS TO THE TEMPLATE USER:
+
+*** REMEMBER TO CHANGE THIS TEMPLATE FILE NAME TO BE UNIQUE WITHIN
+*** ARCHITECTURE DOMAIN
+*** DO NOT USE THE DEFAULT NAME
+
+*** This template follows the S60 coding conventions
+*** (S60_Coding_Conventions.doc).  Remove all unneeded declarations
+*** and definitions before checking the file in!  Also remove the
+*** template's usage instructions, that is, everything that begins
+*** with "***".
+
+*** The copyright years should be < the year of the file's creation >
+*** - < the year of the file's latest update >.
+
+*** Words that begin with "?" are for you to replace with your own
+*** identifiers, filenames, or comments.
+
+*** Filenames and pathnames must be completely in lowercase.
+
+*** Commands must be preceded by exactly one tab character.  Commands
+*** can continue to the next line if the last character on the line is
+*** \.
+
+
+ifeq (WINS,$(findstring WINS,$(PLATFORM)))
+ZDIR=$(EPOCROOT)epoc32\release\$(PLATFORM)\$(CFG)\z
+else
+ZDIR=$(EPOCROOT)epoc32\data\z
+endif
+
+TARGETDIR=$(ZDIR)\resource\apps
+HEADERDIR=$(EPOCROOT)epoc32\include
+ICONTARGETFILENAME=$(TARGETDIR)\?myapp.mif
+HEADERFILENAME=$(HEADERDIR)\?myapp.mbg
+
+MAKMAKE :
+	mifconv $(ICONTARGETFILENAME) /h$(HEADERFILENAME) \
+		/c8,1 qgn_myapp_icon_1 \
+		/c8,1 qgn_myapp_icon_2
+
+BLD : ;
+
+CLEAN : ;
+
+LIB : ;
+
+CLEANLIB : ;
+
+RESOURCE : ;
+
+FREEZE : ;
+
+SAVESPACE : ;
+
+RELEASABLES :
+	@echo $(HEADERFILENAME)&& \
+	@echo $(ICONTARGETFILENAME)
+
+FINAL : ;