svgtencoder/svgtenc/standalone/group/copysvgtbinencode.mk
changeset 0 f58d6ec98e88
equal deleted inserted replaced
-1:000000000000 0:f58d6ec98e88
       
     1 #
       
     2 # Copyright (c) 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 # ======================================================================
       
    17 # Makefile to copy the standalone encoder binary to tools dir
       
    18 # ======================================================================
       
    19 
       
    20 SVGBETARGETDIR = \epoc32\tools
       
    21 
       
    22 ERASE = @erase /f 2>>nul
       
    23 
       
    24 SVGBESOURCEDIR=..\lib
       
    25 PROGRAM=SVGTBinEncode.exe
       
    26 XERCES_DLL=xerces-c_2_6.dll
       
    27 
       
    28 
       
    29 do_nothing :
       
    30 	@rem do_nothing
       
    31 
       
    32 MAKMAKE : do_nothing
       
    33 
       
    34 
       
    35 SAVESPACE BLD : 
       
    36 		perl -S emkdir.pl $(SVGBETARGETDIR) && \
       
    37 		perl -S ecopyfile.pl $(SVGBESOURCEDIR)\$(PROGRAM) $(SVGBETARGETDIR)\$(PROGRAM) && \
       
    38 		perl -S ecopyfile.pl $(SVGBESOURCEDIR)\$(XERCES_DLL) $(SVGBETARGETDIR)\$(XERCES_DLL)
       
    39 	
       
    40 
       
    41 CLEAN : 
       
    42 	cd $(SVGBETARGETDIR) && \
       
    43 	$(ERASE) "$(PROGRAM)" && \
       
    44 	$(ERASE) "$(XERCES_DLL)"
       
    45 	
       
    46 LIB : do_nothing
       
    47 
       
    48 CLEANLIB : do_nothing
       
    49 
       
    50 RESOURCE : do_nothing
       
    51 
       
    52 FREEZE : do_nothing
       
    53 
       
    54 RELEASABLES : 
       
    55 	if exist $(SVGBETARGETDIR)\$(PROGRAM) echo $(SVGBETARGETDIR)\$(PROGRAM) 
       
    56 	if exist $(SVGBETARGETDIR)\$(XERCES_DLL) echo $(SVGBETARGETDIR)\$(XERCES_DLL)
       
    57 
       
    58 FINAL : do_nothing
       
    59