aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSven Gothel <[email protected]>2010-04-26 18:19:35 +0200
committerSven Gothel <[email protected]>2010-04-26 18:19:35 +0200
commit5cd7198759e07c986f6a19bd8f31fd7382749bfa (patch)
treed4dff97d9c1a0e8a3d26fa7251195985166d9263
parent4c5ee8e3e3c5efc345db1520ddf545ce23a85b7f (diff)
parentfb92b91ac336d4cf4ae763006947248e0cb729c4 (diff)
Merge branch 'master' of github.com:mbien/gluegen
-rwxr-xr-xmake/build.xml17
1 files changed, 15 insertions, 2 deletions
diff --git a/make/build.xml b/make/build.xml
index e9333ab..4581d74 100755
--- a/make/build.xml
+++ b/make/build.xml
@@ -47,10 +47,10 @@
<property name="javac.bootclasspath-cdc.jar" value="lib/cdc_fp.jar" />
- <!-- The source directories. -->
+ <!-- The source and build directories. -->
<property name="src.java" value="../src/java" />
<property name="build" location="../${rootrel.build}" />
-
+ <property name="javadoc" location="${build}/javadoc" />
<property name="gluegen.lib.dir" value="${build}/obj"/>
@@ -689,4 +689,17 @@
<ant antfile="build-junit.xml" target="junit.run"/>
</target>
+ <target name="javadoc" depends="init">
+ <!-- Build the general public Javadoc -->
+ <javadoc packagenames="com.jogamp.*"
+ sourcepath="${src.java};${src.generated.java}"
+ destdir="${javadoc}" windowtitle="GlueGen Runtime Documentation"
+ source="1.4"
+ maxmemory="256m" >
+ <classpath path="${classes}"/>
+ <link offline="true" href="${javadoc.link}" packagelistLoc="142-packages" />
+ <excludepackage name="com.jogamp.common.impl"/>
+ </javadoc>
+ </target>
+
</project>