svgtencoder/svgtenc/standalone/group/copysvgtbinencode.mk
author Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
Tue, 31 Aug 2010 16:13:44 +0300
branchRCL_3
changeset 41 44d14dfed84d
parent 0 f58d6ec98e88
permissions -rw-r--r--
Revision: 201033 Kit: 201035

#
# Copyright (c) 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:
#
# ======================================================================
# Makefile to copy the standalone encoder binary to tools dir
# ======================================================================

SVGBETARGETDIR = \epoc32\tools

ERASE = @erase /f 2>>nul

SVGBESOURCEDIR=..\lib
PROGRAM=SVGTBinEncode.exe
XERCES_DLL=xerces-c_2_6.dll


do_nothing :
	@rem do_nothing

MAKMAKE : do_nothing


SAVESPACE BLD : 
		perl -S emkdir.pl $(SVGBETARGETDIR) && \
		perl -S ecopyfile.pl $(SVGBESOURCEDIR)\$(PROGRAM) $(SVGBETARGETDIR)\$(PROGRAM) && \
		perl -S ecopyfile.pl $(SVGBESOURCEDIR)\$(XERCES_DLL) $(SVGBETARGETDIR)\$(XERCES_DLL)
	

CLEAN : 
	cd $(SVGBETARGETDIR) && \
	$(ERASE) "$(PROGRAM)" && \
	$(ERASE) "$(XERCES_DLL)"
	
LIB : do_nothing

CLEANLIB : do_nothing

RESOURCE : do_nothing

FREEZE : do_nothing

RELEASABLES : 
	if exist $(SVGBETARGETDIR)\$(PROGRAM) echo $(SVGBETARGETDIR)\$(PROGRAM) 
	if exist $(SVGBETARGETDIR)\$(XERCES_DLL) echo $(SVGBETARGETDIR)\$(XERCES_DLL)

FINAL : do_nothing