</fileset>
<pathelement location="appletlib/${jmolJar}" />
</path>
+ <!-- default location for outputting javadoc -->
+ <property name="javadocDir" value="${packageDir}/javadoc"/>
</target>
<target name="clean" depends="init">
<!-- not efficient yet. -->
- <delete dir="${outputDir}" />
+ <delete dir="${outputDir}" includes="*,**/*"/>
</target>
<target name="distclean" depends="init, clean">
</copy>
</target>
+ <target name="sourcedoc" description="Create jalview source documentation pages" depends="init">
+ <javadoc destdir="${javadocDir}">
+ <packageset dir="${sourceDir}" includes="jalview/*,MCView/*">
+ </packageset>
+ </javadoc>
+ </target>
+
</project>