27 lines
1.1 KiB
Diff
27 lines
1.1 KiB
Diff
diff -urN eclipse.orig/build.xml eclipse/build.xml
|
|
--- eclipse.orig/build.xml 2003-11-03 14:29:23.000000000 +0100
|
|
+++ eclipse/build.xml 2004-01-14 20:27:03.777314290 +0100
|
|
@@ -8,6 +8,13 @@
|
|
|
|
<!-- sourcepath setting for rt.jar in javadoc scripts in org.eclipse.platform.doc.isv and org.eclipse.jdt.doc.isv -->
|
|
<property name="rt" value="${bootclasspath}" />
|
|
+
|
|
+ <!-- target for making a set of distribution zipfiles -->
|
|
+ <target name="distribute" depends="init">
|
|
+ <antcall target="allElements">
|
|
+ <param name="target" value="zip.distribution"/>
|
|
+ </antcall>
|
|
+ </target>
|
|
|
|
<!-- default target that runs complete build -->
|
|
<target name="run" depends="compile,buildDoc,install" />
|
|
@@ -28,7 +35,7 @@
|
|
Compiles jars for all sdk plugins, and generates javadoc.
|
|
Deletes previously compiled jars first.
|
|
-->
|
|
- <target name="compile" depends="init,clean">
|
|
+ <target name="compile" depends="init">
|
|
<record name="compilelog.txt" action="start" />
|
|
<antcall target="compileSwt" />
|
|
<antcall target="allElements">
|