-
Notifications
You must be signed in to change notification settings - Fork 1
/
jdk12.xml
57 lines (45 loc) · 1.41 KB
/
jdk12.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
<!DOCTYPE project [
<!ENTITY Common SYSTEM "common.xml">
%Common;
]>
<!--
Bouncy Castle Build Configuration (midp)
This is the JDK 1.2 specific build file.
$RCSfile: jdk12.xml,v $
$Author: bouncy $
$Date: 2005-07-06 13:02:52 $
$Revision: 1.1 $
-->
<project name="jdk12" default="init" basedir=".">
<property environment="env" />
<property file="${env.CRYPTO_PROP}" />
<!-- Public callable targets -->
<target name="clean" depends="common-clean" />
<target name="test" depends="common-test" />
<target name="dist" depends="common-dist" />
<target name="package" depends="common-package" />
<target name="compile" depends="init, local-compile" />
<target name="jdoc" depends="common-jdoc" />
<!-- extra targets used in this file -->
<target name="local-compile" depends="llw-compile, ljce-compile" />
<target name="llw-compile" if="is.lw" >
<javac srcdir="${master.home}/jdk1.2"
destdir="${master.classes}" >
</javac>
<antcall target="lw-compile" />
</target>
<target name="ljce-compile" if="is.jce" >
<javac srcdir="${master.home}/jdk1.2"
destdir="${master.classes}" >
</javac>
<antcall target="jce-compile" />
</target>
<!-- include common targets, properties -->
<property name="master.jdk" value="jdk12" />
&Common;
<!-- ** Private properties -->
<path id="compile.cp">
<pathelement location="${master.classes}" />
</path>
<!-- *** Private Targets *** -->
</project>