|
1 <!-- |
|
2 # |
|
3 # Copyright (c) 2008-2009 Nokia Corporation and/or its subsidiary(-ies). |
|
4 # All rights reserved. |
|
5 # This component and the accompanying materials are made available |
|
6 # under the terms of "Eclipse Public License v1.0" |
|
7 # which accompanies this distribution, and is available |
|
8 # at the URL "http://www.eclipse.org/legal/epl-v10.html". |
|
9 # |
|
10 # Initial Contributors: |
|
11 # Nokia Corporation - initial contribution. |
|
12 # |
|
13 # Contributors: |
|
14 # |
|
15 # Description: |
|
16 # |
|
17 --> |
|
18 |
|
19 <project name="utilities.linux"> |
|
20 |
|
21 <!--Do the finetune.classes - nothing for Linux at the moment --> |
|
22 <target name="finetune.classes"> |
|
23 </target> |
|
24 |
|
25 <!--This target just checks whether there is need to create/update the |
|
26 Jar file --> |
|
27 <target name="init.rommize.classes.properties"> |
|
28 <property name="linux.target.jar" |
|
29 value="${bcp.dest.directory}/${jar.filename}"/> |
|
30 |
|
31 <uptodate property="jar.not.uptodate" |
|
32 targetfile="${linux.target.jar}"> |
|
33 <srcfiles dir= "${classes.collection.dir}" includes="**/*.class"/> |
|
34 </uptodate> |
|
35 |
|
36 </target> |
|
37 |
|
38 <!--Do the rommize.classes. In the Linux we just create the Jar file |
|
39 containing all the classes of the component--> |
|
40 <target name="rommize.classes" depends="init.rommize.classes.properties" |
|
41 unless="jar.not.uptodate"> |
|
42 |
|
43 <jar destfile="${linux.target.jar}" |
|
44 basedir="${classes.collection.dir}"/> |
|
45 </target> |
|
46 |
|
47 <!--Nothing for Linux--> |
|
48 <target name="jni.utils"> |
|
49 </target> |
|
50 |
|
51 <!--Nothing for Linux--> |
|
52 <target name="do.export"> |
|
53 </target> |
|
54 |
|
55 </project> |
|
56 |