diff options
author | Michael Bien <[email protected]> | 2010-04-26 14:09:41 +0200 |
---|---|---|
committer | Michael Bien <[email protected]> | 2010-04-26 14:09:41 +0200 |
commit | fb92b91ac336d4cf4ae763006947248e0cb729c4 (patch) | |
tree | b75cde0e559433490376046a8668b5d13dc8871a | |
parent | 7cc445f761eae9a881172095b3aa85709f0f1f3a (diff) |
added javadoc target to gluegen buildscript.
-rwxr-xr-x | make/build.xml | 17 |
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> |