svgtencoder/svgtenc/standalone/group/copysvgtbinencode.mk
changeset 0 f58d6ec98e88
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/svgtencoder/svgtenc/standalone/group/copysvgtbinencode.mk	Thu Dec 17 09:14:18 2009 +0200
@@ -0,0 +1,59 @@
+#
+# 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
+