You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
46 lines
960 B
Makefile
46 lines
960 B
Makefile
13 years ago
|
# ==============================================================================
|
||
|
# Name : Icons_scalable_dc.mk
|
||
|
# Part of : Helloworldbasic
|
||
|
# Description : This is file for creating .mif file (scalable icon)
|
||
|
# Version :
|
||
|
#
|
||
|
# Copyright (c) 2002-2006 Nokia Corporation.
|
||
|
# This material, including documentation and any related
|
||
|
# computer programs, is protected by copyright controlled by
|
||
|
# Nokia Corporation.
|
||
|
# ==============================================================================
|
||
|
|
||
|
ZDIR=$(EPOCROOT)epoc32\data\z
|
||
|
|
||
|
TARGETDIR=$(ZDIR)\resource\apps
|
||
|
ICONTARGETFILENAME=$(TARGETDIR)\instead.mif
|
||
|
|
||
|
ICONDIR=.\icon
|
||
|
|
||
|
do_nothing :
|
||
|
@rem do_nothing
|
||
|
|
||
|
MAKMAKE : do_nothing
|
||
|
|
||
|
BLD : do_nothing
|
||
|
|
||
|
CLEAN : do_nothing
|
||
|
|
||
|
LIB : do_nothing
|
||
|
|
||
|
CLEANLIB : do_nothing
|
||
|
|
||
|
RESOURCE :
|
||
|
mifconv $(ICONTARGETFILENAME) \
|
||
|
/c32 $(ICONDIR)\instead-s60.svg
|
||
|
|
||
|
FREEZE : do_nothing
|
||
|
|
||
|
SAVESPACE : do_nothing
|
||
|
|
||
|
RELEASABLES :
|
||
|
@echo $(ICONTARGETFILENAME)
|
||
|
|
||
|
FINAL : do_nothing
|
||
|
|