equal
deleted
inserted
replaced
|
1 echo "Compilation of CommDB Editor and Utilities" |
|
2 echo "==========================================" |
|
3 |
|
4 echo "Compile /com/symbian/commdb/data/ directory" |
|
5 rm ../com/symbian/commdb/data/*.class |
|
6 javac -g:none -source 1.4 -target 1.4 -O -classpath ../ ../com/symbian/commdb/data/*.java |
|
7 |
|
8 echo "Compile /com/symbian/commdb/convert/ directory" |
|
9 rm ../com/symbian/commdb/convert/*.class |
|
10 javac -g:none -source 1.4 -target 1.4 -O -classpath ../ ../com/symbian/commdb/convert/*.java |
|
11 |
|
12 echo "Compile /com/symbian/commdb/ui/ directory" |
|
13 rm ../com/symbian/commdb/ui/*.class |
|
14 javac -g:none -source 1.4 -target 1.4 -O -classpath ../ ../com/symbian/commdb/ui/*.java |
|
15 |
|
16 echo "Compile /com/symbian/commdb/xml/ directory" |
|
17 rm ../com/symbian/commdb/xml/*.class |
|
18 javac -g:none -source 1.4 -target 1.4 -O -classpath ../ ../com/symbian/commdb/xml/*.java |
|
19 |
|
20 echo "Generate JAR files" |
|
21 rm *.jar |
|
22 cd .. |
|
23 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/* |
|
24 jar cvfm bin/cfg2xml.jar bin/Manifest-cfg2xml.mf com/symbian/commdb/data/*.class com/symbian/commdb/convert/*.class com/symbian/commdb/xml/*.class |
|
25 cd bin |