diff options
author | Lars Persson | 2007-05-31 18:29:38 +0000 |
---|---|---|
committer | Lars Persson | 2007-05-31 18:29:38 +0000 |
commit | 56869c21a3d29a247d197a9a08544a9c60e6007a (patch) | |
tree | a932acf023693c59207602147ff6d46732f91ed1 /backends/platform/symbian | |
parent | 280d2533d2728e37c9b89c33d764453932e5be30 (diff) | |
download | scummvm-rg350-56869c21a3d29a247d197a9a08544a9c60e6007a.tar.gz scummvm-rg350-56869c21a3d29a247d197a9a08544a9c60e6007a.tar.bz2 scummvm-rg350-56869c21a3d29a247d197a9a08544a9c60e6007a.zip |
ADded makefile for SVG icon
svn-id: r27028
Diffstat (limited to 'backends/platform/symbian')
-rw-r--r-- | backends/platform/symbian/S60v3/icons.mk | 34 |
1 files changed, 34 insertions, 0 deletions
diff --git a/backends/platform/symbian/S60v3/icons.mk b/backends/platform/symbian/S60v3/icons.mk new file mode 100644 index 0000000000..5f17dd7b8b --- /dev/null +++ b/backends/platform/symbian/S60v3/icons.mk @@ -0,0 +1,34 @@ +ifeq (WINS,$(findstring WINS, $(PLATFORM)))
+ZDIR=$(EPOCROOT)epoc32\release\$(PLATFORM)\$(CFG)\Z
+else
+ZDIR=$(EPOCROOT)epoc32\data\z
+endif
+
+TARGETDIR=$(ZDIR)\RESOURCE\APPS
+ICONTARGETFILENAME=$(TARGETDIR)\scummvm.mif
+
+do_nothing :
+ @rem do_nothing
+
+MAKMAKE : do_nothing
+
+BLD : do_nothing
+
+CLEAN : do_nothing
+
+LIB : do_nothing
+
+CLEANLIB : do_nothing
+
+RESOURCE :
+ mifconv $(ICONTARGETFILENAME) \
+ /c32 ..\res\scummvm.svg
+
+FREEZE : do_nothing
+
+SAVESPACE : do_nothing
+
+RELEASABLES :
+ @echo $(ICONTARGETFILENAME)
+
+FINAL : do_nothing
\ No newline at end of file |