omaprovisioning/provisioning/ProvisioningBC/Bif/ProvisioningBif.mk
branchRCL_3
changeset 26 19bba8228ff0
parent 0 b497e44ab2fc
equal deleted inserted replaced
25:b183ec05bd8c 26:19bba8228ff0
       
     1 #
       
     2 # Copyright (c) 2002 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 #    Makefile for building bif resource 
       
    16 #
       
    17 #
       
    18 
       
    19 PROJECT=provisioningbc
       
    20 SOURCEDIR=..\bif
       
    21 LANGUAGE=sc
       
    22 
       
    23 
       
    24 ifeq (WINS,$(findstring WINS, $(PLATFORM)))
       
    25 TARGETDIR=\Epoc32\Release\$(PLATFORM)\$(CFG)\z\system\bif
       
    26 else
       
    27 TARGETDIR=\Epoc32\release\$(PLATFORM)\$(CFG)
       
    28 endif
       
    29 
       
    30 $(TARGETDIR) :
       
    31 	@perl \epoc32\tools\emkdir.pl $(TARGETDIR)
       
    32 
       
    33 
       
    34 SOURCERESOURCE=$(SOURCEDIR)\provisioningbif.rss
       
    35 TEMPRESOURCE=$(TARGETDIR)\provisioningbif.rss
       
    36 TARGETRESOURCE=$(TARGETDIR)\prov.r$(LANGUAGE)
       
    37 
       
    38 $(TARGETRESOURCE) : $(TARGETDIR) $(SOURCERESOURCE)
       
    39 	@copy $(SOURCERESOURCE) $(TEMPRESOURCE)
       
    40 	@epocrc.bat -u -I. -I\epoc32\include -I$(SOURCEDIR)\..\..\Group $(TEMPRESOURCE) -o$(TARGETRESOURCE)
       
    41 	@del $(TEMPRESOURCE)
       
    42 
       
    43 do_nothing:
       
    44 	rem do nothing
       
    45 
       
    46 
       
    47 MAKMAKE : do_nothing
       
    48 
       
    49 RESOURCE : $(TARGETRESOURCE)
       
    50 
       
    51 SAVESPACE : BLD
       
    52 
       
    53 BLD : do_nothing
       
    54 
       
    55 FREEZE : do_nothing
       
    56 
       
    57 LIB : do_nothing
       
    58 
       
    59 CLEANLIB : do_nothing
       
    60 
       
    61 FINAL : do_nothing
       
    62 
       
    63 CLEAN : 
       
    64 	@erase $(TARGETRESOURCE)
       
    65 
       
    66 RELEASABLES : 
       
    67 	@echo $(TARGETRESOURCE)
       
    68 
       
    69 # End of file