diff -r 000000000000 -r bde4ae8d615e os/textandloc/fontservices/fontstore/group/fonts_c.mk --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/os/textandloc/fontservices/fontstore/group/fonts_c.mk Fri Jun 15 03:10:57 2012 +0200 @@ -0,0 +1,66 @@ +# +# Copyright (c) 2000-2009 Nokia Corporation and/or its subsidiary(-ies). +# All rights reserved. +# This component and the accompanying materials are made available +# under the terms of "Eclipse Public License v1.0" +# which accompanies this distribution, and is available +# at the URL "http://www.eclipse.org/legal/epl-v10.html". +# +# Initial Contributors: +# Nokia Corporation - initial contribution. +# +# Contributors: +# +# Description: +# +# Build font files +# + +!if "$(PLATFORM)"=="WINS" || "$(PLATFORM)"=="WINSCW" +TARGETDIR=$(EPOCROOT)EPOC32\RELEASE\$(PLATFORM)\$(CFG)\Z\Test +!else +TARGETDIR=$(EPOCROOT)EPOC32\DATA\Z\System\Test +!endif + + +$(TARGETDIR) : + @perl -S emkdir.pl "$(TARGETDIR)" + +FONTS=$(TARGETDIR)\TSECTION.GDR +FONTSRC=..\tfs +TSECTION_BDF=$(FONTSRC)\TSECTION.BDF +TSECTION_GD=$(FONTSRC)\TSECTION.GD + +$(TARGETDIR)\TSECTION.GDR : $(TSECTION_BDF) $(TSECTION_GD) + fnttran $(TSECTION_BDF) $(TSECTION_GD) $@ + + +do_nothing : + rem do_nothing + +# +# The targets invoked by bld... +# + +MAKMAKE : do_nothing + +BLD : $(TARGETDIR) $(FONTS) + +SAVESPACE : BLD + +RESOURCE : BLD + +CLEAN : + -erase $(FONTS) + +FREEZE : do_nothing + +LIB : do_nothing + +CLEANLIB : do_nothing + +FINAL : do_nothing + +RELEASABLES : + @echo $(FONTS) +