hide 3 more minor ant targets and tidy descriptions of external targets

cusax-fix
Brian Burch 20 years ago
parent f77cd35bda
commit 0208e0b5f2

@ -82,8 +82,8 @@
</target> </target>
<!-- java compile --> <!-- java compile -->
<target name="compile" depends="init" <target name="compile" depends="init">
description="Runs javac on the project source tree."> <!--internal-target- compiles the entire project source tree -->
<javac classpathref="project.class.path" debug="true" <javac classpathref="project.class.path" debug="true"
deprecation="true" destdir="${dest}" nowarn="false" deprecation="true" destdir="${dest}" nowarn="false"
source="1.4" target="1.4"> source="1.4" target="1.4">
@ -94,7 +94,7 @@
<!-- clean --> <!-- clean -->
<target name="clean" <target name="clean"
description="Remove all generated files and get ready for a clean restart."> description="Remove all generated files and prepare for a clean restart.">
<delete file="${bundles.dest}/configuration.jar"/> <delete file="${bundles.dest}/configuration.jar"/>
<delete file="${bundles.dest}/configuration-slick.jar"/> <delete file="${bundles.dest}/configuration-slick.jar"/>
<delete failonerror="false" includeemptydirs="true"> <delete failonerror="false" includeemptydirs="true">
@ -146,16 +146,16 @@
<!--PACKAGE--> <!--PACKAGE-->
<target name="package" <target name="package"
depends="javadoc,resource" depends="javadoc,resource"/>
description="Create java doc, and copy resource files"/> <!--internal-target- Create java doc, and copy resource files. -->
<!--MAKE--> <!--MAKE-->
<target name="make" depends="compile,package" <target name="make" depends="compile,package"
description="compile and package the project"/> description="Compile and package the project (incrementally)."/>
<!--REBUILD--> <!--REBUILD-->
<target name="rebuild" depends="clean,make" <target name="rebuild" depends="clean,make"
description="clean,re-compile and package the project"/> description="Clean,re-compile and package the project (no bundles or tests)."/>
<!--INIT--> <!--INIT-->
<target name="init"> <target name="init">
@ -175,11 +175,12 @@
</target> </target>
<!-- Verifies whether we have a jmf performance pack for the current
operating system and extracts it in the lib/native directory -->
<target name="extractnativejmf" <target name="extractnativejmf"
if="jmf.performancepack.available" if="jmf.performancepack.available"
unless="jmf.performancepack.extracted"> unless="jmf.performancepack.extracted">
<!--internal-target- Verifies whether we have a jmf performance
pack for the current operating system and extracts it in the
lib/native directory -->
<echo> <echo>
Extracting ${os.name} performance pack native libs Extracting ${os.name} performance pack native libs
from: ${jmf.home}/jmf-native.jar from: ${jmf.home}/jmf-native.jar
@ -229,7 +230,7 @@
<!--RUN-TESTS--> <!--RUN-TESTS-->
<target name="test" depends="init,prepare-single-test,prepare-all-tests" <target name="test" depends="init,prepare-single-test,prepare-all-tests"
description="starts oscar and runs selected Service Impl Compatibility Kits"> description="Starts oscar and runs selected Service Impl Compatibility Kits.">
<java classname="org.ungoverned.oscar.Main" <java classname="org.ungoverned.oscar.Main"
fork="true" fork="true"
@ -256,7 +257,8 @@
</java> </java>
</target> </target>
<target name="cc-buildloop" depends="rebuild,bundles,test"/> <target name="cc-buildloop" depends="rebuild,bundles,test"
description="Comprehensive rebuild and test (used by Cruise Control)."/>
<!-- - - NetBeans Targets for specific files selected via ide-actions - --> <!-- - - NetBeans Targets for specific files selected via ide-actions - -->

Loading…
Cancel
Save