|
1 @rem |
|
2 @rem Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies). |
|
3 @rem All rights reserved. |
|
4 @rem This component and the accompanying materials are made available |
|
5 @rem under the terms of "Eclipse Public License v1.0" |
|
6 @rem which accompanies this distribution, and is available |
|
7 @rem at the URL "http://www.eclipse.org/legal/epl-v10.html". |
|
8 @rem |
|
9 @rem Initial Contributors: |
|
10 @rem Nokia Corporation - initial contribution. |
|
11 @rem |
|
12 @rem Contributors: |
|
13 @rem |
|
14 @rem Description: |
|
15 @rem |
|
16 @echo off |
|
17 echo " " |
|
18 echo "Compilation of CommDB Editor and Utilities" |
|
19 echo "==========================================" |
|
20 |
|
21 echo "Compile \com\symbian\commdb\data\ directory" |
|
22 del ..\com\symbian\commdb\data\*.class |
|
23 javac -g:none -source 1.4 -target 1.4 -O -classpath ..\ ..\com\symbian\commdb\data\*.java |
|
24 |
|
25 echo "Compile \com\symbian\commdb\convert\ directory" |
|
26 del ..\com\symbian\commdb\convert\*.class |
|
27 javac -g:none -source 1.4 -target 1.4 -O -classpath ..\ ..\com\symbian\commdb\convert\*.java |
|
28 |
|
29 echo "Compile \com\symbian\commdb\ui\ directory" |
|
30 del ..\com\symbian\commdb\ui\*.class |
|
31 javac -g:none -source 1.4 -target 1.4 -O -classpath ..\ ..\com\symbian\commdb\ui\*.java |
|
32 |
|
33 echo "Compile \com\symbian\commdb\xml\ directory" |
|
34 del ..\com\symbian\commdb\xml\*.class |
|
35 javac -g:none -source 1.4 -target 1.4 -O -classpath ..\ ..\com\symbian\commdb\xml\*.java |
|
36 |
|
37 echo "Generate JAR files" |
|
38 del *.jar |
|
39 cd .. |
|
40 jar cvfm bin\cxmled.jar bin\Manifest-cxmled.mf com\symbian\commdb\data\*.class com\symbian\commdb\ui\*.class com\symbian\commdb\xml\*.class com\symbian\commdb\various\* |
|
41 jar cvfm bin\cfg2xml.jar bin\Manifest-cfg2xml.mf com\symbian\commdb\data\*.class com\symbian\commdb\convert\*.class com\symbian\commdb\xml\*.class |
|
42 cd bin |