Fix https://issues.apache.org/bugzilla/show_bug.cgi?id=47567
authormarkt <markt@13f79535-47bb-0310-9956-ffa450edef68>
Thu, 30 Jul 2009 06:29:50 +0000 (06:29 +0000)
committermarkt <markt@13f79535-47bb-0310-9956-ffa450edef68>
Thu, 30 Jul 2009 06:29:50 +0000 (06:29 +0000)
Add some descriptions to the build file.

git-svn-id: https://svn.apache.org/repos/asf/tomcat/trunk@799180 13f79535-47bb-0310-9956-ffa450edef68

build.xml

index 78951e6..66102c4 100644 (file)
--- a/build.xml
+++ b/build.xml
     </xslt>
   </target>
  
-  <target name="deploy" depends="build-only,build-docs">
+  <target name="deploy" depends="build-only,build-docs"
+          description="Default. Builds a working Tomcat instance">
 
     <copy tofile="${tomcat.build}/bin/tomcat-native.tar.gz"
             file="${tomcat-native.tar.gz}" />
     </javac>
   </target>
 
-  <target name="test" description="JUnit test cases"
+  <target name="test" description="Runs the JUnit test cases"
     depends="compile,test-compile" >
        
        <junit printsummary="yes" fork="yes">
   </target>
 
   <target name="clean-depend"
-         description="Clean depend src components">
+          description="Deletes the dependencies that are built from source">
      <delete dir="${tomcat-dbcp.home}"/>
      <delete dir="${jasper-jdt.home}"/>
   </target>
 
-  <target name="clean">
+  <target name="clean"
+             description="Delete the default output folders">
     <delete dir="${tomcat.classes}" />
     <delete dir="${tomcat.build}" />
   </target>
   </target>
 
   <target name="download"
-          description="Builds and download dependent components">
+          description="Download (and build as necessary) dependent components">
 
     <antcall target="downloadfile">
       <param name="sourcefile" value="${tomcat-native.loc}"/>