sl@0
|
1 |
@rem
|
sl@0
|
2 |
@rem Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
|
sl@0
|
3 |
@rem All rights reserved.
|
sl@0
|
4 |
@rem This component and the accompanying materials are made available
|
sl@0
|
5 |
@rem under the terms of "Eclipse Public License v1.0"
|
sl@0
|
6 |
@rem which accompanies this distribution, and is available
|
sl@0
|
7 |
@rem at the URL "http://www.eclipse.org/legal/epl-v10.html".
|
sl@0
|
8 |
@rem
|
sl@0
|
9 |
@rem Initial Contributors:
|
sl@0
|
10 |
@rem Nokia Corporation - initial contribution.
|
sl@0
|
11 |
@rem
|
sl@0
|
12 |
@rem Contributors:
|
sl@0
|
13 |
@rem
|
sl@0
|
14 |
@rem Description:
|
sl@0
|
15 |
@rem
|
sl@0
|
16 |
@echo off
|
sl@0
|
17 |
if "%1"=="" goto err
|
sl@0
|
18 |
if "%2"=="" goto err
|
sl@0
|
19 |
if "%2"=="rel" goto err
|
sl@0
|
20 |
if "%2"=="REL" goto err
|
sl@0
|
21 |
if "%2"=="deb" goto err
|
sl@0
|
22 |
if "%2"=="DEB" goto err
|
sl@0
|
23 |
|
sl@0
|
24 |
if "%1"=="wins" set _destdir=\epoc32\release\wins\%2\z\system\templates\word\
|
sl@0
|
25 |
if "%1"=="WINS" set _destdir=\epoc32\release\wins\%2\z\system\templates\word\
|
sl@0
|
26 |
if "%1"=="marm" set _destdir=\epoc32\release\marm\%2\
|
sl@0
|
27 |
if "%1"=="MARM" set _destdir=\epoc32\release\marm\%2\
|
sl@0
|
28 |
set _lang=%3
|
sl@0
|
29 |
if "%3"=="" set _lang=uk
|
sl@0
|
30 |
|
sl@0
|
31 |
goto %1
|
sl@0
|
32 |
|
sl@0
|
33 |
:wins
|
sl@0
|
34 |
copy blank.uk %_destdir%"Blank document"
|
sl@0
|
35 |
goto home
|
sl@0
|
36 |
|
sl@0
|
37 |
:marm
|
sl@0
|
38 |
copy *.%_lang% %_destdir%*.%_lang%
|
sl@0
|
39 |
goto home
|
sl@0
|
40 |
|
sl@0
|
41 |
:err
|
sl@0
|
42 |
echo Usage: bld [plat] [var] [lang]
|
sl@0
|
43 |
echo var should be udeb/urel
|
sl@0
|
44 |
goto end
|
sl@0
|
45 |
|
sl@0
|
46 |
:home
|
sl@0
|
47 |
echo Templates copied to %_destdir%
|
sl@0
|
48 |
|
sl@0
|
49 |
:end
|
sl@0
|
50 |
set _destdir=
|
sl@0
|
51 |
set _lang=
|