blob: 5ebac0adef24f6180f2d8244969edf4dbfb4dcfb (
plain)
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
|
--- build.xml.orig 2005-01-19 20:14:35.648341416 +0100
+++ build.xml 2005-01-19 20:25:17.164816088 +0100
@@ -585,4 +585,24 @@
<copy file="${unix.native.jni.dir}/libtray.so" todir="${dist.dir}" />
</target>
+
+ <target name="sourcezip">
+ <zip destfile="../jdictrayapi-src.zip">
+ <zipfileset dir="src" />
+ </zip>
+ </target>
+
+
+ <!-- generate javadocs -->
+ <target name="docs" depends="init">
+ <mkdir dir="../docs" />
+ <javadoc sourcepath="src/unix/classes"
+ packagenames="org.*"
+ destdir="../docs"
+ author="true"
+ version="true"
+ use="true"
+ source="1.4"
+ windowtitle="${ant.project.name} API" />
+ </target>
</project>
|