os/textandloc/fontservices/fontstore/group/fonts_c.mk
author sl
Tue, 10 Jun 2014 14:32:02 +0200
changeset 1 260cb5ec6c19
permissions -rw-r--r--
Update contrib.
     1 #
     2 # Copyright (c) 2000-2009 Nokia Corporation and/or its subsidiary(-ies).
     3 # All rights reserved.
     4 # This component and the accompanying materials are made available
     5 # under the terms of "Eclipse Public License v1.0"
     6 # which accompanies this distribution, and is available
     7 # at the URL "http://www.eclipse.org/legal/epl-v10.html".
     8 #
     9 # Initial Contributors:
    10 # Nokia Corporation - initial contribution.
    11 #
    12 # Contributors:
    13 #
    14 # Description:
    15 #
    16 # Build font files
    17 #
    18 
    19 !if "$(PLATFORM)"=="WINS" || "$(PLATFORM)"=="WINSCW"
    20 TARGETDIR=$(EPOCROOT)EPOC32\RELEASE\$(PLATFORM)\$(CFG)\Z\Test
    21 !else
    22 TARGETDIR=$(EPOCROOT)EPOC32\DATA\Z\System\Test
    23 !endif
    24 
    25 
    26 $(TARGETDIR) :
    27 	@perl -S emkdir.pl "$(TARGETDIR)"
    28 
    29 FONTS=$(TARGETDIR)\TSECTION.GDR 
    30 FONTSRC=..\tfs
    31 TSECTION_BDF=$(FONTSRC)\TSECTION.BDF
    32 TSECTION_GD=$(FONTSRC)\TSECTION.GD
    33 
    34 $(TARGETDIR)\TSECTION.GDR : $(TSECTION_BDF) $(TSECTION_GD)
    35 	fnttran $(TSECTION_BDF) $(TSECTION_GD) $@
    36 
    37 
    38 do_nothing :
    39 	rem do_nothing
    40 
    41 #
    42 # The targets invoked by bld...
    43 #
    44 
    45 MAKMAKE : do_nothing
    46 
    47 BLD : $(TARGETDIR) $(FONTS)
    48 
    49 SAVESPACE : BLD
    50 
    51 RESOURCE : BLD
    52 
    53 CLEAN : 
    54 	-erase $(FONTS)
    55 
    56 FREEZE : do_nothing
    57 
    58 LIB : do_nothing
    59 
    60 CLEANLIB : do_nothing
    61 
    62 FINAL : do_nothing
    63 
    64 RELEASABLES : 
    65 	@echo $(FONTS)
    66